An intelligent, AI-powered platform that automates API testing by analyzing developer documentation, client requirements, and human tester insights to generate, execute, and report on comprehensive test cases.
- 🤖 AI-Powered Analysis: Parallel analysis of developer docs, client requirements, and tester instructions
- 🧪 Intelligent Test Generation: Automatic generation of comprehensive test cases (happy path, negative, boundary, security, etc.)
- ✏️ Human-in-the-Loop: Artifact-style test case review and editing interface
- ⚡ Parallel Execution: Dynamic test execution with configurable concurrency
- 📊 Rich Reporting: Interactive dashboards and exportable reports (PDF, HTML, JSON)
- 🔐 Multi-Auth Support: API Key, Bearer Token, Basic Auth, OAuth (coming soon)
- Framework: FastAPI (Python 3.11+)
- Database: PostgreSQL 15+
- ORM: SQLAlchemy
- AI: Google ADK (Agentic Development Kit)
- Authentication: JWT with bcrypt
- Framework: React 18+ with Vite
- State Management: Redux Toolkit
- UI Library: Material-UI (MUI)
- Code Editor: Monaco Editor
- Charts: Recharts
- Markdown: react-markdown
Agentic API Testing/
├── backend/ # FastAPI backend
│ ├── agents/ # Google ADK agents
│ ├── alembic/ # Database migrations
│ ├── api/ # API route handlers
│ ├── database/ # Models and schemas
│ ├── services/ # Business logic services
│ ├── tests/ # Backend tests
│ ├── main.py # FastAPI app entry point
│ ├── config.py # Configuration
│ └── dependencies.py # Dependency injection
├── frontend/ # React frontend
│ ├── src/
│ │ ├── api/ # API client
│ │ ├── components/ # React components
│ │ ├── pages/ # Page components
│ │ ├── store/ # Redux store & slices
│ │ ├── App.jsx # Main app component
│ │ └── main.jsx # Entry point
│ ├── package.json
│ └── vite.config.js
├── uploads/ # Uploaded files (gitignored)
├── docker-compose.yml # Local development services
├── .env.example # Environment variables template
├── .gitignore
└── README.md
- Python 3.11+
- Node.js 18+
- PostgreSQL 15+
- Google ADK API access
-
Create virtual environment:
cd backend python -m venv venv venv\Scripts\activate # Windows # source venv/bin/activate # Linux/Mac
-
Install dependencies:
pip install -r requirements.txt
-
Configure environment:
cp ../.env.example ../.env # Edit .env with your database credentials and API keys -
Start PostgreSQL:
docker-compose up -d postgres
-
Run migrations:
alembic upgrade head
-
Start backend:
uvicorn main:app --reload --port 8000
Backend will be available at:
http://localhost:8000API docs at:http://localhost:8000/docs
-
Install dependencies:
cd frontend npm install -
Start development server:
npm run dev
Frontend will be available at:
http://localhost:5173
-
Create new feature branch:
git checkout -b feature/your-feature-name
-
Backend development:
- Add/modify models in
backend/database/models.py - Create migration:
alembic revision --autogenerate -m "description" - Run migration:
alembic upgrade head - Add API routes in
backend/api/ - Add business logic in
backend/services/ - Write tests in
backend/tests/
- Add/modify models in
-
Frontend development:
- Add components in
frontend/src/components/ - Add pages in
frontend/src/pages/ - Add Redux slices in
frontend/src/store/slices/ - Update API client in
frontend/src/api/
- Add components in
-
Run tests:
# Backend cd backend pytest # Frontend cd frontend npm test
-
Commit and push:
git add . git commit -m "feat: your feature description" git push origin feature/your-feature-name
Once the backend is running, visit http://localhost:8000/docs for interactive API documentation (Swagger UI).
| Variable | Description | Example |
|---|---|---|
DATABASE_URL |
PostgreSQL connection string | postgresql://user:pass@localhost/dbname |
JWT_SECRET |
Secret key for JWT tokens | your-secret-key-here |
JWT_ALGORITHM |
JWT algorithm | HS256 |
ACCESS_TOKEN_EXPIRE_MINUTES |
Token expiry time | 1440 (24 hours) |
GOOGLE_ADK_API_KEY |
Google ADK API key | your-adk-key |
FILE_STORAGE_PATH |
Path for uploaded files | ./uploads |
CORS_ORIGINS |
Allowed CORS origins | http://localhost:5173,http://localhost:3000 |
- Backend API with all endpoints
- Google ADK agent integration
- Frontend with artifact-style test viewer
- End-to-end user journey working
- Test execution for JSON APIs
- Report generation (HTML, JSON)
- Documentation complete
- Fork the repository
- Create your feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
[Your License Here]
For issues and questions, please open a GitHub issue or contact the development team.