dotcodegen 0.1.1 → 0.1.3
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 +4 -0
- data/README.md +1 -1
- data/dotcodegen.gemspec +1 -3
- data/exe/{run → codegen} +1 -1
- data/lib/dotcodegen/version.rb +1 -1
- metadata +3 -36
- 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: e0354938621e705831e5f3f4a327b8da9e10901519e8d90181592f33dc584a53
|
4
|
+
data.tar.gz: 04631eaca2b2cfff73bec57958ea6f00e2d6741657b8d95638529fb60a42bd6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c83a1aba762c27be35068bc3148b32016b2505a4b63c1f1d8707685cf00654e09fdff4b8b26025972304ca304468ac493547c8af807025ec49725bae4b4d3624
|
7
|
+
data.tar.gz: df25ea36901d9ac9b94da9bf1f18be5cd1fb3b76122377581a2b44dbe6257dc101f1d0a5056be92203e9470902664538a5eef7c0fee6071019458e6cadd85a4c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
# [0.1.3] - 2024-03-10
|
4
|
+
|
5
|
+
- Move the execution to a /exe/codegen file. exe/run was removed.
|
6
|
+
|
3
7
|
## [0.1.1] - 2024-03-10
|
4
8
|
|
5
9
|
- 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
@@ -12,7 +12,7 @@ We're using this tool to speed up writing tests for our monolith at [June](https
|
|
12
12
|
1. Install our CLI by running:
|
13
13
|
|
14
14
|
```bash
|
15
|
-
brew tap ferrucc-io/dotcodegen
|
15
|
+
brew tap ferrucc-io/dotcodegen-tap
|
16
16
|
brew install dotcodegen
|
17
17
|
```
|
18
18
|
|
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
|
|
data/lib/dotcodegen/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ferruccio Balestreri
|
@@ -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,24 +60,19 @@ 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
|
111
78
|
- lib/dotcodegen/init.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