Metadata-Version: 2.4
Name: testcases-writer-ai-tool
Version: 0.1.0
Summary: Automatically generate pytest test cases for your Python app using Claude AI.
Home-page: https://github.com/yourusername/testcases-writer-ai-tool
Author: Your Name
Author-email: your.email@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: pytest
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# TestCases Writer AI Tool

Automatically generate comprehensive pytest test cases for your Python application using Claude AI.

## Features

- Scans your Python project and sends code to Claude AI to generate high-quality pytest test cases.
- **Smart caching**: Only makes API calls when your code has actually changed, saving costs and time.
- Writes the generated tests to a `tests/` directory in your project.
- Ensures test files are import-safe by patching `sys.path`.
- Supports file-based storage patching for isolated tests (see advanced usage).

---

## Requirements

- Python 3.7+
- [Anthropic Claude API key](https://docs.anthropic.com/claude/docs/quickstart)
- Internet connection (for API calls)
- Packages in `requirements.txt` (install with `pip install -r requirements.txt`)

---

## Installation

1. **Clone this repository** (or copy the tool files):

   ```bash
   git clone <your-repo-url>
   cd TestCases_Writer_AI_Tool
   ```

2. **Install dependencies:**

   ```bash
   pip install -r requirements.txt
   ```

3. **Set your Anthropic API key:**

   ```bash
   export ANTHROPIC_API_KEY=sk-ant-...
   ```

---

## Usage

1. **Run the tool on your Python app:**

   ```bash
   generate-test-cases /path/to/your/python/app
   ```

   - Replace `/path/to/your/python/app` with the path to the root of your Python project.
   - The tool will scan all `.py` files, send them to Claude, and write generated tests to a `tests/` directory inside your app.

2. **Run the generated tests:**

   ```bash
   cd /path/to/your/python/app
   pytest
   ```

---

## How It Works

- The tool collects all Python files in your app.
- **Smart caching**: Before making API calls, it checks if any files have changed since the last run by comparing file hashes and modification times. If no changes are detected, it skips the API call to save costs.
- It sends the code to Claude AI with a prompt to generate pytest-style tests.
- The generated tests are written to `tests/test_generated.py` (or one test file per source file).
- Each test file includes a snippet to patch `sys.path` for import safety.
- A `.test_generator_cache` file is created in your app directory to track file changes.

---

## Advanced: Isolating File-Based Storage in Tests

If your app uses a file (like `tasks.json`) for storage, the tool can generate a pytest fixture to patch the storage path using `tmp_path` and `monkeypatch`. This ensures each test runs in isolation and avoids data leakage between tests.

Example fixture (auto-included if detected):

```python
import pytest

@pytest.fixture
def temp_tasks_file(tmp_path, monkeypatch):
    temp_file = tmp_path / "tasks.json"
    monkeypatch.setattr("notes_app.storage.TASKS_FILE", str(temp_file))
    return str(temp_file)
```

---

## Troubleshooting

- **ModuleNotFoundError:**  
  Make sure you run `pytest` from your project root, and that the generated test files include the `sys.path` patch at the top.
- **API Errors:**  
  Ensure your `ANTHROPIC_API_KEY` is set and valid.
- **No tests generated:**  
  Check that your app directory contains `.py` files and is accessible.
- **Tool says "no changes detected" but you want to regenerate:**  
  Delete the `.test_generator_cache` file in your app directory and run the tool again.

---

## License

MIT License

---

## Credits

- Built with [Anthropic Claude API](https://www.anthropic.com/).
- Test generation logic by [your name or org]. 
