dotcodegen 0.1.3 → 0.1.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0354938621e705831e5f3f4a327b8da9e10901519e8d90181592f33dc584a53
4
- data.tar.gz: 04631eaca2b2cfff73bec57958ea6f00e2d6741657b8d95638529fb60a42bd6d
3
+ metadata.gz: e41d9807ea2ec1242cf2a9b438bb0185f57d925f4cf73ee68f830551bc435850
4
+ data.tar.gz: 0b81574b9fc3a64c6405b8e4a52412cb0e4e92207ae0fa3b07116ae1864d4ef7
5
5
  SHA512:
6
- metadata.gz: c83a1aba762c27be35068bc3148b32016b2505a4b63c1f1d8707685cf00654e09fdff4b8b26025972304ca304468ac493547c8af807025ec49725bae4b4d3624
7
- data.tar.gz: df25ea36901d9ac9b94da9bf1f18be5cd1fb3b76122377581a2b44dbe6257dc101f1d0a5056be92203e9470902664538a5eef7c0fee6071019458e6cadd85a4c
6
+ metadata.gz: 6dd48471f5c6a8bd144d36020a633202008bffe9be2c7b6bb38a5fa1d2cae80f2949e256f7298181399521e39a051c702e8635bc827773e6840b98be30e7edd0
7
+ data.tar.gz: 7607420b9797f58b3a8c8fdffb301575ccbe8fc16c6466ac5b42d38645d126bdf3b13651d737667138d82f1e71d184e4151d9782371343119793061458ffe2d6
data/.env.example CHANGED
@@ -1 +1,2 @@
1
- OPENAI_KEY=your-api-key
1
+ OPENAI_KEY=your-api-key
2
+ OPENAI_ORG_ID=your-openai-org-id
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.5] - 2024-03-11
4
+
5
+ - Add support for specifying the OpenAI organization in the codegen command via the --openai_org_id flag.
6
+
7
+ ## [0.1.4] - 2024-03-11
8
+
9
+ - Strip the leading and trailing ``` from the output of the codegen command.
10
+ - Remove the organization from the OpenAI initialization code.
11
+
3
12
  # [0.1.3] - 2024-03-10
4
13
 
5
14
  - Move the execution to a /exe/codegen file. exe/run was removed.
data/README.md CHANGED
@@ -1,25 +1,38 @@
1
- # Automatic test generation for monoliths
1
+ # .codegen - Automatic test generation for your projects
2
+ [![Gem Version](https://badge.fury.io/rb/dotcodegen.svg)](https://badge.fury.io/rb/dotcodegen) [![Test Coverage](https://api.codeclimate.com/v1/badges/8a9e8ffdf8f3c5322196/test_coverage)](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're using this tool to speed up writing tests for our monolith at [June](https://june.so). We open sourced it so you can use it too.
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 by running:
19
+ 1. Install our CLI via Homebrew:
13
20
 
14
21
  ```bash
15
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.
@@ -61,6 +74,13 @@ In order to do that you can add a task to your `tasks.json` file in the `.vscode
61
74
 
62
75
  We're currently building a VSCode extension to be able to generate tests directly from your editor. Stay tuned!
63
76
 
77
+ ## Organisation Id
78
+ CLI takes an optional openai_org_id parameter. Used to specify the organisation to which the user making the API request belongs, especially in cases where the user is part of multiple organisations. This can be important for billing and access control, ensuring that the API usage is attributed to the correct organisation.
79
+ ```bash
80
+ codegen path/to/the/file/you/want/to/test --openai_key <your_openai_key> --openai_org_id <your_openai_organisation_id>
81
+ ```
82
+
83
+
64
84
  ## How it works
65
85
 
66
86
  The extension uses AI to generate tests for any file you open in your codebase. It uses a set of customizable templates to generate the tests. You can customize the templates to fit your team's needs.
@@ -22,11 +22,10 @@ module Dotcodegen
22
22
  Dotenv.load unless defined?($running_tests) && $running_tests
23
23
  options = parse(args)
24
24
  return version if options.version
25
-
26
25
  return Init.run if options.init
27
26
 
28
27
  matchers = load_matchers('.codegen/instructions')
29
- TestFileGenerator.new(file_path: options.file_path, matchers:, openai_key: options.openai_key).run
28
+ TestFileGenerator.new(file_path: options.file_path, matchers:, openai_key: options.openai_key, openai_org_id: options.openai_org_id).run
30
29
  end
31
30
 
32
31
  def self.version
@@ -41,11 +40,12 @@ module Dotcodegen
41
40
  end
42
41
  end
43
42
 
43
+ # rubocop:disable Metrics/MethodLength
44
44
  def self.build_option_parser(options)
45
45
  OptionParser.new do |opts|
46
46
  opts.banner = 'Usage: dotcodegen [options] file_path'
47
-
48
47
  opts.on('--openai_key KEY', 'OpenAI API Key') { |key| options.openai_key = key }
48
+ opts.on('--openai_org_id Org_Id', 'OpenAI Organisation Id') { |key| options.openai_org_id = key }
49
49
  opts.on('--init', 'Initialize a .codegen configuration in the current directory') { options.init = true }
50
50
  opts.on('--version', 'Show version') { options.version = true }
51
51
  opts.on_tail('-h', '--help', 'Show this message') do
@@ -55,21 +55,25 @@ module Dotcodegen
55
55
  end
56
56
  end
57
57
 
58
+ # rubocop:disable Metrics/AbcSize
58
59
  def self.handle_arguments(args, opt_parser, options)
59
60
  opt_parser.parse!(args)
60
61
  return if options.version || options.init
61
62
 
62
63
  validate_file_path(args, opt_parser)
63
64
  options.file_path = args.shift
64
-
65
65
  options.openai_key ||= ENV['OPENAI_KEY']
66
+ options.openai_org_id ||= ENV['OPENAI_ORG_ID']
66
67
 
67
68
  return unless options.openai_key.to_s.strip.empty?
68
69
 
69
70
  puts 'Error: Missing --openai_key flag or OPENAI_KEY environment variable.'
71
+
70
72
  puts opt_parser
71
73
  exit 1
72
74
  end
75
+ # rubocop:enable Metrics/MethodLength
76
+ # rubocop:enable Metrics/AbcSize
73
77
 
74
78
  def self.validate_file_path(args, opt_parser)
75
79
  return unless args.empty?
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Dotcodegen
4
+ class FormatOutput
5
+ def self.format(generated_test_code)
6
+ generated_test_code.gsub(/^```[a-zA-Z]*\n/, '').gsub(/\n```$/, '')
7
+ end
8
+ end
9
+ end
@@ -1,14 +1,17 @@
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
- attr_reader :config, :file_to_test_path, :openai_key
8
+ attr_reader :config, :file_to_test_path, :openai_key, :openai_org_id
7
9
 
8
- def initialize(config:, file_to_test_path:, openai_key:)
10
+ def initialize(config:, file_to_test_path:, openai_key:, openai_org_id: nil)
9
11
  @config = config
10
12
  @file_to_test_path = file_to_test_path
11
13
  @openai_key = openai_key
14
+ @openai_org_id = openai_org_id
12
15
  end
13
16
 
14
17
  def generate_test_code
@@ -19,7 +22,7 @@ module Dotcodegen
19
22
  temperature: 0.7
20
23
  }
21
24
  )
22
- response.dig('choices', 0, 'message', 'content')
25
+ FormatOutput.format(response.dig('choices', 0, 'message', 'content'))
23
26
  end
24
27
 
25
28
  def test_prompt_text
@@ -53,10 +56,9 @@ module Dotcodegen
53
56
  end
54
57
 
55
58
  def openai_client
56
- @openai_client ||= OpenAI::Client.new(
57
- access_token: openai_key,
58
- organization_id: 'org-4nA9FJ8NajsLJ2fbHRAw7MLI'
59
- )
59
+ client_options = { access_token: openai_key }
60
+ client_options[:organization_id] = openai_org_id unless openai_org_id.nil?
61
+ @openai_client ||= OpenAI::Client.new(client_options)
60
62
  end
61
63
  end
62
64
  end
@@ -5,12 +5,13 @@ require_relative 'test_code_generator'
5
5
 
6
6
  module Dotcodegen
7
7
  class TestFileGenerator
8
- attr_reader :file_path, :matchers, :openai_key
8
+ attr_reader :file_path, :matchers, :openai_key, :openai_org_id
9
9
 
10
- def initialize(file_path:, matchers:, openai_key:)
10
+ def initialize(file_path:, matchers:, openai_key:, openai_org_id: nil)
11
11
  @file_path = file_path
12
12
  @matchers = matchers
13
13
  @openai_key = openai_key
14
+ @openai_org_id = openai_org_id
14
15
  end
15
16
 
16
17
  def run
@@ -35,8 +36,10 @@ module Dotcodegen
35
36
  end
36
37
 
37
38
  def write_generated_code_to_test_file
38
- generated_code = Dotcodegen::TestCodeGenerator.new(config: matcher, file_to_test_path: file_path,
39
- openai_key:).generate_test_code
39
+ generated_code = Dotcodegen::TestCodeGenerator.new(config: matcher,
40
+ file_to_test_path: file_path,
41
+ openai_key:,
42
+ openai_org_id:).generate_test_code
40
43
  File.write(test_file_path, generated_code)
41
44
  end
42
45
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dotcodegen
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.5'
5
5
  end
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.3
4
+ version: 0.1.5
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-10 00:00:00.000000000 Z
11
+ date: 2024-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dotenv
@@ -75,6 +75,7 @@ files:
75
75
  - exe/codegen
76
76
  - lib/dotcodegen.rb
77
77
  - lib/dotcodegen/cli.rb
78
+ - lib/dotcodegen/format_output.rb
78
79
  - lib/dotcodegen/init.rb
79
80
  - lib/dotcodegen/test_code_generator.rb
80
81
  - lib/dotcodegen/test_file_generator.rb