You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
Markdown
45 lines
1.2 KiB
Markdown
+++
|
|
title = "Test suite: GET /api/ — OpenAPI spec returned as valid JSON with expected structure"
|
|
priority = 5
|
|
status = "todo"
|
|
ticket_type = "task"
|
|
dependencies = ["9b581f", "28e7d9"]
|
|
+++
|
|
|
|
<context>
|
|
Integration tests live in `tests/` and exercise the API binary against a temporary SQLite database. They run with `cargo test` and must not require a running Cloudflare environment. The test harness spawns the API server on a random port and returns the base URL.
|
|
</context>
|
|
|
|
<goal>
|
|
Write the `GET /api/` test suite in `tests/test_openapi.rs` (or similar). Assert that the endpoint:
|
|
1. Returns HTTP 200
|
|
2. Returns `Content-Type: application/json`
|
|
3. Returns a body that is valid JSON
|
|
4. The JSON object contains an `openapi` key with value `"3.1.0"` (or `"3.0.x"`)
|
|
5. The JSON object contains `paths` and `info` keys
|
|
</goal>
|
|
|
|
<constraints>
|
|
- Use the shared test harness from ticket 9b581f.
|
|
- No authentication required for this endpoint.
|
|
</constraints>
|
|
|
|
<skills>
|
|
Use `superpowers:verification-before-completion` before closing.
|
|
</skills>
|
|
|
|
<validation>
|
|
Run in order from the `quotesdb/` directory:
|
|
|
|
```sh
|
|
cargo fmt
|
|
cargo check
|
|
cargo clippy
|
|
cargo test
|
|
```
|
|
</validation>
|
|
|
|
<commit>
|
|
`test(quotesdb): add GET /api/ test suite — OpenAPI spec endpoint`
|
|
</commit>
|