Project

dotcodegen

0.01
The project is in a healthy, maintained state
Generate tests for your code using LLMs. This gem is a CLI tool that uses OpenAI to generate test code for your code. It uses a configuration file to match files with the right test code generation instructions. It is designed to be used with Ruby on Rails, but it can be used with any codebase. It is a work in progress.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

.codegen - Automatic test generation for your projects

Gem Version Test Coverage

Never write a test from scratch again. Automatically generate tests for any file you open in your codebase.

Keep your team up to date with the latest best practices and conventions you adopt. Customize the templates to fit your team's needs.

We've built this tool internally to speed up writing tests for our monolith at June. 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.

Now we're open-sourcing it so you can use it too.

codegen-demo.mp4

Get started

  1. Install our CLI via Homebrew:
brew tap ferrucc-io/dotcodegen-tap
brew install dotcodegen

Or via RubyGems, this requires Ruby 3.3.0:

gem install dotcodegen
  1. Initialise the .codegen directory in your codebase:
codegen --init
  1. Configure the templates to fit your team's needs. See the configuration section for more details.

  2. Run the codegen command in your terminal:

codegen path/to/the/file/you/want/to/test --openai_key <your_openai_key>
  1. That's it! You're ready to start generating tests for your codebase.

Extra:

This code becomes very powerful when you integrate it with your editor, so you can open a file and generate tests with a single command.

In order to do that you can add a task to your tasks.json file in the .vscode directory of your project:

{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Generate test for the current file",
      "type": "shell",
      // Alternatively you can specify the OPENAI_KEY environment variable in your .env file
      "command": "codegen ${relativeFile} --openai_key your_openai_key",
      "group": "test",
      "problemMatcher": [],
      "options": {
          "cwd": "${workspaceFolder}"
      },
    }
  ]
}

We're currently building a VSCode extension to be able to generate tests directly from your editor. Stay tuned!

Organisation Id

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.

codegen path/to/the/file/you/want/to/test --openai_key <your_openai_key>  --openai_org_id <your_openai_organisation_id>

How it works

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.

Features

  • Easy to learn: Get started in minutes.
  • AI powered scaffolding: Generate smart tests for any file you open in your codebase.
  • Fully customisable: Customize the templates to fit your team's needs.
  • Bring your own API key: Use your own OpenAI API key to generate the tests.
  • 🚧 Integrates with VSCode: Use the extension to generate tests directly from your editor.

Contributing

If you want to add some default templates for your language, feel free to open a PR. See the config/default directory for the ones we have already.

Bug reports and pull requests are welcome on GitHub at https://github.com/ferrucc-io/dotcodegen.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

License

The gem is available as open source under the terms of the MIT License.