Skip to content

Commit e9623e8

Browse files
authored
Merge pull request #403 from Cloud-Code-AI/401-doc-update-with-unit_tests-new-changes
feat: added documentation for new unit test updates
2 parents 7847097 + 3b5b4fa commit e9623e8

File tree

3 files changed

+160
-54
lines changed

3 files changed

+160
-54
lines changed

docs/pages/features/unit_test.mdx

+129-36
Original file line numberDiff line numberDiff line change
@@ -3,77 +3,170 @@
33
The Unit Test Generator feature is powered by kaizen and automatically creates comprehensive unit tests for your code, improving code quality and test coverage.
44

55
## How it Works:
6-
- Input the source code for which you want to generate unit tests.
6+
- Input the source code or directory for which you want to generate unit tests.
77
- The Unit Test Generator leverages advanced language models to analyze the code and generate appropriate unit tests in a format compatible with popular testing frameworks.
8+
- The generator supports multiple programming languages and can handle entire directories of code files.
89

910
You can find an example [here](https://github.com/Cloud-Code-AI/kaizen/tree/main/examples/unittest/main.py)
1011

1112
## Using the Unit Test Generator:
12-
- Provide the source code or filename for which you want to generate unit tests.
13-
- [Optional] Setup Github App to Trigger the Unit Test Generator to receive automatically created unit tests.
14-
- Review and integrate the generated tests into your test suite.
13+
1. Provide the source code file or directory path for which you want to generate unit tests.
14+
2. (Optional) Configure output path, verbosity, and critique settings.
15+
3. Run the generator to create unit tests.
16+
4. Review and integrate the generated tests into your test suite.
17+
18+
## Supported Languages:
19+
- Python (.py)
20+
- JavaScript (.js)
21+
- TypeScript (.ts)
22+
- React (.jsx, .tsx)
23+
- Rust (.rs)
24+
25+
## How to Run:
26+
27+
### Installation
28+
29+
Before using the Unit Test Generator, you need to install the Kaizen Cloud Code SDK. You can do this using pip:
30+
31+
```bash
32+
pip install kaizen-cloudcode
33+
```
34+
35+
### Usage Guide
36+
37+
Here's a step-by-step guide on how to use the Unit Test Generator:
38+
39+
1. Import the UnitTestGenerator:
40+
```python
41+
from kaizen.generator.unit_test import UnitTestGenerator
42+
```
43+
44+
2. Create an instance of the generator:
45+
```python
46+
generator = UnitTestGenerator()
47+
```
48+
49+
3. Generate tests for a specific file:
50+
```python
51+
generator.generate_tests(
52+
file_path="path/to/your/file.py",
53+
enable_critique=True,
54+
verbose=True
55+
)
56+
```
57+
58+
4. (Optional) Run the generated tests:
59+
```python
60+
test_results = generator.run_tests()
61+
```
62+
63+
5. (Optional) Display the test results:
64+
```python
65+
for file_path, result in test_results.items():
66+
print(f"Results for {file_path}:")
67+
if "error" in result:
68+
print(f" Error: {result['error']}")
69+
else:
70+
print(f" Tests run: {result.get('tests_run', 'N/A')}")
71+
print(f" Failures: {result.get('failures', 'N/A')}")
72+
print(f" Errors: {result.get('errors', 'N/A')}")
73+
print()
74+
```
75+
76+
### Complete Example:
77+
78+
Here's a complete example of how to use the Unit Test Generator:
79+
80+
```python
81+
from kaizen.generator.unit_test import UnitTestGenerator
82+
83+
# Create an instance of the generator
84+
generator = UnitTestGenerator()
85+
86+
# Generate tests for a specific file
87+
generator.generate_tests(
88+
file_path="kaizen/helpers/output.py",
89+
enable_critique=True,
90+
verbose=True
91+
)
92+
93+
# Run the generated tests
94+
test_results = generator.run_tests()
95+
96+
# Display the test results
97+
for file_path, result in test_results.items():
98+
print(f"Results for {file_path}:")
99+
if "error" in result:
100+
print(f" Error: {result['error']}")
101+
else:
102+
print(f" Tests run: {result.get('tests_run', 'N/A')}")
103+
print(f" Failures: {result.get('failures', 'N/A')}")
104+
print(f" Errors: {result.get('errors', 'N/A')}")
105+
print()
106+
```
15107

16108
## API Reference:
17109

18110
### Class: UnitTestGenerator
19111

20112
#### Constructor
21-
- `__init__(self)`
22-
Initializes the UnitTestGenerator with default settings.
113+
- `__init__(self, verbose=False)`
114+
Initializes the UnitTestGenerator with optional verbosity setting.
23115

24116
#### Methods
25117

26-
#### generate_tests_from_dir
118+
##### generate_tests_from_dir
27119
- `generate_tests_from_dir(self, dir_path: str, output_path: str = None)`
28-
Generates unit tests for files in a given directory
120+
Generates unit tests for all supported files in a given directory.
29121
- Parameters:
30-
- `dir_path`: Path of the directory containing source files.
31-
- `output_path`: (Optional) Custom output path for generated tests.
122+
- `dir_path`: Path of the directory containing source files.
123+
- `max_critique`: Maximum number of critique iterations.
124+
- `output_path`: (Optional) Custom output path for generated tests.
125+
- `verbose`: Enable verbose logging.
126+
- `enable_critique`: Enable AI critique and improvement of generated tests.
127+
- Returns: A tuple containing an empty dictionary and llm usage statistics.
32128

33129
##### generate_tests
34-
- `generate_tests(self, file_path: str, content: str = None, output_path: str = None) -> Tuple[Dict, Dict]`
35-
Generates unit tests for a given file.
130+
- `generate_tests(self, file_path: str, content: str = None, max_critique: int = 3, output_path: str = None, verbose: bool = False, enable_critique: bool = False)`
131+
Generates unit tests for a given file with various configuration options.
36132
- Parameters:
37133
- `file_path`: Path of the file relative to the project root.
38134
- `content`: (Optional) File content.
135+
- `max_critique`: Maximum number of critique iterations.
39136
- `output_path`: (Optional) Custom output path for generated tests.
40-
- Returns: A tuple containing an empty dictionary and usage statistics.
41-
42-
##### generate_test_files
43-
- `generate_test_files(self, parsed_data, file_extension, file_path)`
44-
Generates test files for parsed data.
45-
46-
##### generate_ai_tests
47-
- `generate_ai_tests(self, item, source_code) -> Tuple[str, Dict]`
48-
Generates AI-powered tests for a given item.
49-
50-
##### review_ai_generated_tests
51-
- `review_ai_generated_tests(self, item, source_code, current_tests) -> Tuple[str, Dict]`
52-
Reviews AI-generated tests.
53-
54-
##### review_test_file
55-
- `review_test_file(self, file_name, test_code) -> Tuple[str, Dict]`
56-
Reviews a test file.
137+
- `verbose`: Enable verbose logging.
138+
- `enable_critique`: Enable AI critique and improvement of generated tests.
139+
- Returns: A tuple containing an empty dictionary and llm usage statistics.
57140

58141
##### run_tests
59142
- `run_tests(self) -> Dict`
60143
Runs the generated unit tests and returns the results.
61144

62-
#### Properties
63-
- `output_folder`: Directory for storing generated tests.
64-
- `total_usage`: Tracks token usage for API calls.
65-
- `supported_languages`: Dictionary of supported file extensions and their corresponding parsers.
66-
- `logger`: Logger instance for the class.
67-
- `provider`: LLMProvider instance for making API calls.
145+
#### Key Features:
146+
- Multi-language support
147+
- Directory-wide test generation
148+
- AI-powered test scenario creation
149+
- Test critique and improvement
150+
- Detailed logging and progress tracking
151+
- Token usage monitoring
68152

69153
## Benefits:
70154
- Increased Test Coverage
71155
- Time Efficiency
72156
- Consistency in Testing
73157
- Early Bug Detection
158+
- Support for Multiple Programming Languages
159+
- Continuous Improvement through AI Critique
74160

75161
## Limitations:
76162
- AI Limitations: May not cover all edge cases or complex scenarios.
77163
- Human Oversight: Generated tests should be reviewed and potentially modified by developers.
164+
- Language Support: Limited to the supported programming languages.
165+
166+
## Advanced Usage:
167+
- Enable critique mode for AI-powered test improvement
168+
- Adjust verbosity for detailed logging
169+
- Customize output paths for generated tests
170+
- Configure maximum critique iterations for fine-tuned results
78171

79-
The Unit Test Generator uses AI to enhance the testing process, improve code quality, and streamline the development workflow by automating the creation of unit tests.
172+
The Unit Test Generator uses AI to enhance the testing process, improve code quality, and streamline the development workflow by automating the creation of unit tests across multiple programming languages.

examples/unittest/main.py

+23-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
from kaizen.generator.unit_test import UnitTestGenerator
22

33
generator = UnitTestGenerator()
4+
5+
# You can run it for one file at a time
6+
generator.generate_tests(
7+
file_path="kaizen/helpers/output.py", enable_critique=True, verbose=True
8+
)
9+
10+
# OR for a directory
11+
# generator.generate_tests_from_dir(dir_path="kaizen/utils/", enable_critique=True, verbose=True)
12+
13+
test_results = generator.run_tests()
14+
15+
for file_path, result in test_results.items():
16+
print(f"Results for {file_path}:")
17+
if "error" in result:
18+
print(f" Error: {result['error']}")
19+
else:
20+
print(f" Tests run: {result.get('tests_run', 'N/A')}")
21+
print(f" Failures: {result.get('failures', 'N/A')}")
22+
print(f" Errors: {result.get('errors', 'N/A')}")
23+
print()
24+
25+
26+
# You can also directly pass code to generator to generate tests
427
code = '''
528
class Calculator:
629
def __init__(self):
@@ -32,18 +55,3 @@ def greet(name):
3255
print(greet("Alice")) # Should print "Hello, Alice!"
3356
'''
3457
# generator.generate_tests(file_path="sample.py", content=code) # Replace with the actual file path
35-
generator.generate_tests(
36-
file_path="kaizen/helpers/output.py", enable_critique=True, verbose=True
37-
)
38-
39-
test_results = generator.run_tests()
40-
41-
for file_path, result in test_results.items():
42-
print(f"Results for {file_path}:")
43-
if "error" in result:
44-
print(f" Error: {result['error']}")
45-
else:
46-
print(f" Tests run: {result.get('tests_run', 'N/A')}")
47-
print(f" Failures: {result.get('failures', 'N/A')}")
48-
print(f" Errors: {result.get('errors', 'N/A')}")
49-
print()

kaizen/generator/unit_test.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,24 @@ def _setup_directories(self):
5959
self._create_output_folder(self.output_folder)
6060

6161
def generate_tests_from_dir(
62-
self, dir_path: str, output_path: str = None
62+
self, dir_path: str, output_path: str = None, max_critique: int = 3, verbose: bool = False,
63+
enable_critique: bool = False,
6364
):
6465
"""
6566
dir_path: (str) - path of the directory containing source files
6667
"""
67-
if output_path:
68-
self.output_folder = output_path
68+
self.max_critique = max_critique
69+
self.enable_critique = enable_critique
70+
self.verbose = verbose if verbose else self.verbose
71+
self.output_folder = output_path if output_path else self.output_folder
6972
for file_path in Path(dir_path).rglob('*.*'):
7073
try:
7174
self.generate_tests(file_path=str(file_path), output_path=output_path)
7275
except Exception as e:
7376
print(f"Error: Could not generate tests for {file_path}: {e}")
7477

78+
return {}, self.total_usage
79+
7580
def generate_tests(
7681
self,
7782
file_path: str,

0 commit comments

Comments
 (0)