dotcodegen 0.1.1 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +18 -5
- data/dotcodegen.gemspec +1 -3
- data/exe/{run → codegen} +1 -1
- data/lib/dotcodegen/format_output.rb +9 -0
- data/lib/dotcodegen/test_code_generator.rb +4 -5
- data/lib/dotcodegen/version.rb +1 -1
- metadata +5 -37
- data/.codegen/instructions/ruby.md +0 -145
- data/.rspec +0 -3
- data/.rubocop.yml +0 -13
- data/.simplecov +0 -6
- data/Rakefile +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2617e3b970e9e982ba60cb5a45b686cf11d86ddf12457e289a2801d8387fe7d
|
4
|
+
data.tar.gz: 316db28cbcbfb0abb8230c080df86b065daf7361fc63e099d7615df5d0643f7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bb6faa3e1944f372103946d31286143dc36ef47d5e2c4e4894fa51505ac26e0e9da3bef4bca38a2ba6497acc324466bcd3db9749f1179c6edb1df181023130a
|
7
|
+
data.tar.gz: 4e9b53b2665b436da1f65c28976333e863cbb03c18159151ae43409dd481bac188cfd0dade7921b9c14da035412e9ab7218387aeb5623a46c2ff9386ef30adca
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [0.1.4] - 2024-03-11
|
4
|
+
|
5
|
+
- Strip the leading and trailing ``` from the output of the codegen command.
|
6
|
+
- Remove the organization from the OpenAI initialization code.
|
7
|
+
|
8
|
+
# [0.1.3] - 2024-03-10
|
9
|
+
|
10
|
+
- Move the execution to a /exe/codegen file. exe/run was removed.
|
11
|
+
|
3
12
|
## [0.1.1] - 2024-03-10
|
4
13
|
|
5
14
|
- Fix bug where the gemspec was excluding the `lib` directory from the gem. ([#1](https://github.com/ferrucc-io/dotcodegen/pull/1))
|
data/README.md
CHANGED
@@ -1,25 +1,38 @@
|
|
1
|
-
# Automatic test generation for
|
1
|
+
# .codegen - Automatic test generation for your projects
|
2
|
+
[](https://badge.fury.io/rb/dotcodegen) [](https://codeclimate.com/github/ferrucc-io/dotcodegen/test_coverage)
|
3
|
+
|
2
4
|
|
3
5
|
Never write a test from scratch again. Automatically generate tests for any file you open in your codebase.
|
4
6
|
|
5
7
|
Keep your team up to date with the latest best practices and conventions you adopt. Customize the templates to fit your team's needs.
|
6
8
|
|
7
|
-
We'
|
9
|
+
We've built this tool internally to speed up writing tests for our monolith at [June](https://june.so). The main idea is that across your codebase, you can have a set of instructions that are used to generate tests. These templates are configurable so no matter what framework or language your current file is in, you can generate tests that fit your team's needs.
|
10
|
+
|
11
|
+
Now we're open-sourcing it so you can use it too.
|
12
|
+
|
13
|
+
https://github.com/ferrucc-io/dotcodegen/assets/8315559/aca74a87-5123-4305-88ff-cc3be3f34a9f
|
14
|
+
|
8
15
|
|
9
16
|
## Get started
|
10
17
|
|
11
18
|
|
12
|
-
1. Install our CLI
|
19
|
+
1. Install our CLI via Homebrew:
|
13
20
|
|
14
21
|
```bash
|
15
|
-
brew tap ferrucc-io/dotcodegen
|
22
|
+
brew tap ferrucc-io/dotcodegen-tap
|
16
23
|
brew install dotcodegen
|
17
24
|
```
|
18
25
|
|
26
|
+
Or via RubyGems, this requires Ruby 3.3.0:
|
27
|
+
|
28
|
+
```bash
|
29
|
+
gem install dotcodegen
|
30
|
+
```
|
31
|
+
|
19
32
|
2. Initialise the `.codegen` directory in your codebase:
|
20
33
|
|
21
34
|
```bash
|
22
|
-
codegen init
|
35
|
+
codegen --init
|
23
36
|
```
|
24
37
|
|
25
38
|
3. Configure the templates to fit your team's needs. See the [configuration](./docs/configuration.md) section for more details.
|
data/dotcodegen.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.files = Dir.chdir(__dir__) do
|
24
24
|
`git ls-files -z`.split("\x0").reject do |f|
|
25
25
|
(File.expand_path(f) == __FILE__) ||
|
26
|
-
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
|
26
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github .codegen .rspec .rubocop.yml .simplecov appveyor Gemfile Rakefile])
|
27
27
|
end
|
28
28
|
end
|
29
29
|
spec.bindir = 'exe'
|
@@ -32,8 +32,6 @@ Gem::Specification.new do |spec|
|
|
32
32
|
|
33
33
|
spec.add_dependency 'dotenv'
|
34
34
|
spec.add_dependency 'front_matter_parser'
|
35
|
-
spec.add_dependency 'optparse'
|
36
|
-
spec.add_dependency 'ostruct'
|
37
35
|
spec.add_dependency 'ruby-openai'
|
38
36
|
|
39
37
|
# For more information and examples about making a new gem, check out our
|
data/exe/{run → codegen}
RENAMED
@@ -2,7 +2,7 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
# The program gets in as an argument the full file path and the matchers config file
|
5
|
-
# Usage:
|
5
|
+
# Usage: exe/codegen client/app/components/feature.tsx --openai_key sk42424242
|
6
6
|
|
7
7
|
require_relative '../lib/dotcodegen/cli'
|
8
8
|
|
@@ -1,6 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require 'openai'
|
4
|
+
require_relative 'format_output'
|
5
|
+
|
4
6
|
module Dotcodegen
|
5
7
|
class TestCodeGenerator
|
6
8
|
attr_reader :config, :file_to_test_path, :openai_key
|
@@ -19,7 +21,7 @@ module Dotcodegen
|
|
19
21
|
temperature: 0.7
|
20
22
|
}
|
21
23
|
)
|
22
|
-
response.dig('choices', 0, 'message', 'content')
|
24
|
+
FormatOutput.format(response.dig('choices', 0, 'message', 'content'))
|
23
25
|
end
|
24
26
|
|
25
27
|
def test_prompt_text
|
@@ -53,10 +55,7 @@ module Dotcodegen
|
|
53
55
|
end
|
54
56
|
|
55
57
|
def openai_client
|
56
|
-
@openai_client ||= OpenAI::Client.new(
|
57
|
-
access_token: openai_key,
|
58
|
-
organization_id: 'org-4nA9FJ8NajsLJ2fbHRAw7MLI'
|
59
|
-
)
|
58
|
+
@openai_client ||= OpenAI::Client.new(access_token: openai_key)
|
60
59
|
end
|
61
60
|
end
|
62
61
|
end
|
data/lib/dotcodegen/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dotcodegen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ferruccio Balestreri
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dotenv
|
@@ -38,34 +38,6 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: optparse
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :runtime
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: ostruct
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :runtime
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
41
|
- !ruby/object:Gem::Dependency
|
70
42
|
name: ruby-openai
|
71
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,26 +60,22 @@ description: Generate tests for your code using LLMs. This gem is a CLI tool tha
|
|
88
60
|
email:
|
89
61
|
- ferruccio.balestreri@gmail.com
|
90
62
|
executables:
|
91
|
-
-
|
63
|
+
- codegen
|
92
64
|
extensions: []
|
93
65
|
extra_rdoc_files: []
|
94
66
|
files:
|
95
|
-
- ".codegen/instructions/ruby.md"
|
96
67
|
- ".env.example"
|
97
|
-
- ".rspec"
|
98
|
-
- ".rubocop.yml"
|
99
|
-
- ".simplecov"
|
100
68
|
- CHANGELOG.md
|
101
69
|
- LICENSE.txt
|
102
70
|
- README.md
|
103
|
-
- Rakefile
|
104
71
|
- config/default/.codegen/instructions/react-vitest.md
|
105
72
|
- config/default/.codegen/instructions/rspec-rails.md
|
106
73
|
- docs/configuration.md
|
107
74
|
- dotcodegen.gemspec
|
108
|
-
- exe/
|
75
|
+
- exe/codegen
|
109
76
|
- lib/dotcodegen.rb
|
110
77
|
- lib/dotcodegen/cli.rb
|
78
|
+
- lib/dotcodegen/format_output.rb
|
111
79
|
- lib/dotcodegen/init.rb
|
112
80
|
- lib/dotcodegen/test_code_generator.rb
|
113
81
|
- lib/dotcodegen/test_file_generator.rb
|
@@ -1,145 +0,0 @@
|
|
1
|
-
---
|
2
|
-
regex: 'lib/.*\.rb'
|
3
|
-
root_path: 'lib'
|
4
|
-
test_root_path: 'spec'
|
5
|
-
test_file_suffix: '_spec.rb'
|
6
|
-
---
|
7
|
-
|
8
|
-
When writing a test, you should follow these steps:
|
9
|
-
|
10
|
-
1. Avoid typos.
|
11
|
-
2. Avoid things that could be infinite loops.
|
12
|
-
3. This codebase is a Ruby gem, try to follow the conventions of the Ruby community.
|
13
|
-
4. Avoid things that could be security vulnerabilities.
|
14
|
-
5. Keep the codebase clean and easy to understand.
|
15
|
-
6. Use Rspec for tests, don't use any other testing framework.
|
16
|
-
7. Don't include ANY dependencies that are not already in the files you are provided.
|
17
|
-
8. Don't start your tests with ``` or other strings, as your reply will be run as a Ruby file.
|
18
|
-
|
19
|
-
Here's an example of a good test you should reply with:
|
20
|
-
|
21
|
-
```ruby
|
22
|
-
# frozen_string_literal: true
|
23
|
-
|
24
|
-
require 'dotcodegen/test_file_generator'
|
25
|
-
|
26
|
-
RSpec.describe Dotcodegen::TestFileGenerator do
|
27
|
-
let(:file_path) { 'client/app/components/feature.tsx' }
|
28
|
-
let(:api_matcher) do
|
29
|
-
{
|
30
|
-
'regex' => 'api/.*\.rb',
|
31
|
-
'root_path' => 'api/app/',
|
32
|
-
'test_root_path' => 'api/spec/',
|
33
|
-
'test_file_suffix' => '_spec.rb'
|
34
|
-
}
|
35
|
-
end
|
36
|
-
let(:client_matcher) do
|
37
|
-
{
|
38
|
-
'regex' => 'client/app/.*\.tsx',
|
39
|
-
'test_file_suffix' => '.test.tsx'
|
40
|
-
}
|
41
|
-
end
|
42
|
-
let(:matchers) { [api_matcher, client_matcher] }
|
43
|
-
let(:openai_key) { 'test_openai_key' }
|
44
|
-
let(:codegen_instance) { instance_double(Dotcodegen::TestFileGenerator) }
|
45
|
-
|
46
|
-
subject { described_class.new(file_path:, matchers:, openai_key:) }
|
47
|
-
|
48
|
-
describe '#run' do
|
49
|
-
after(:each) { FileUtils.remove_dir('client/', force: true) }
|
50
|
-
let(:file_path) { 'spec/fixtures/feature.tsx' }
|
51
|
-
let(:client_matcher) do
|
52
|
-
{
|
53
|
-
'regex' => 'spec/fixtures/.*\.tsx',
|
54
|
-
'test_file_suffix' => '.test.tsx',
|
55
|
-
'root_path' => 'spec/fixtures/',
|
56
|
-
'test_root_path' => 'tmp/codegen_spec/',
|
57
|
-
'instructions' => 'instructions/react.md'
|
58
|
-
}
|
59
|
-
end
|
60
|
-
|
61
|
-
context 'when test file does not exist' do
|
62
|
-
it 'creates a test file and writes generated code once' do
|
63
|
-
allow(File).to receive(:exist?).with('tmp/codegen_spec/feature.test.tsx').and_return(false)
|
64
|
-
expect(FileUtils).to receive(:mkdir_p).with('tmp/codegen_spec')
|
65
|
-
allow(Dotcodegen::TestCodeGenerator).to receive_message_chain(:new, :generate_test_code).and_return('Mocked generated code')
|
66
|
-
expect(File).to receive(:write).with('tmp/codegen_spec/feature.test.tsx', '').once
|
67
|
-
expect(File).to receive(:write).with('tmp/codegen_spec/feature.test.tsx', 'Mocked generated code').once
|
68
|
-
subject.run
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
context 'when test file already exists' do
|
73
|
-
it 'does not create a test file but writes generated code' do
|
74
|
-
allow(File).to receive(:exist?).with('tmp/codegen_spec/feature.test.tsx').and_return(true)
|
75
|
-
expect(FileUtils).not_to receive(:mkdir_p)
|
76
|
-
allow(Dotcodegen::TestCodeGenerator).to receive_message_chain(:new, :generate_test_code).and_return('Mocked generated code')
|
77
|
-
expect(File).to receive(:write).with('tmp/codegen_spec/feature.test.tsx', 'Mocked generated code').once
|
78
|
-
subject.run
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
|
-
describe '#matcher' do
|
84
|
-
it 'returns the matching regex for the frontend' do
|
85
|
-
expect(subject.matcher).to eq(client_matcher)
|
86
|
-
end
|
87
|
-
|
88
|
-
context 'when file path is a ruby file' do
|
89
|
-
let(:file_path) { 'api/app/models/app.rb' }
|
90
|
-
it 'returns the matching regex for the backend' do
|
91
|
-
expect(subject.matcher).to eq(api_matcher)
|
92
|
-
end
|
93
|
-
end
|
94
|
-
|
95
|
-
context 'when there are no matches' do
|
96
|
-
let(:file_path) { 'terraform/models/app.rb' }
|
97
|
-
it 'returns nil' do
|
98
|
-
expect(subject.matcher).to be_nil
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
context 'when file path does not match any regex' do
|
103
|
-
let(:file_path) { 'api/models/app.go' }
|
104
|
-
it 'returns nil' do
|
105
|
-
expect(subject.matcher).to be_nil
|
106
|
-
end
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
describe '#test_file_path' do
|
111
|
-
it 'returns the test file path for the frontend' do
|
112
|
-
expect(subject.test_file_path).to eq('client/app/components/feature.test.tsx')
|
113
|
-
end
|
114
|
-
|
115
|
-
context 'when file path is a ruby file' do
|
116
|
-
let(:file_path) { 'api/app/models/app.rb' }
|
117
|
-
it 'returns the test file path for the backend' do
|
118
|
-
expect(subject.test_file_path).to eq('api/spec/models/app_spec.rb')
|
119
|
-
end
|
120
|
-
end
|
121
|
-
end
|
122
|
-
end
|
123
|
-
```
|
124
|
-
|
125
|
-
Here's the skeleton of a test you can start from:
|
126
|
-
|
127
|
-
```ruby
|
128
|
-
# frozen_string_literal: true
|
129
|
-
|
130
|
-
require 'dotcodegen/__file_path__'
|
131
|
-
|
132
|
-
RSpec.describe Dotcodegen::__CLASS_NAME__ do
|
133
|
-
let(:params) do
|
134
|
-
{
|
135
|
-
# Add params here
|
136
|
-
}
|
137
|
-
end
|
138
|
-
subject { described_class.new(params) }
|
139
|
-
|
140
|
-
|
141
|
-
it 'runs' do
|
142
|
-
# Add assertions here
|
143
|
-
end
|
144
|
-
end
|
145
|
-
```
|
data/.rspec
DELETED
data/.rubocop.yml
DELETED
data/.simplecov
DELETED