integration-testing

integration-testing is a cursor rule for Cursor from girijashankarj/cursor-handbook. It costs 446 tokens per session, scanned A, original, MIT.

A set of rules for testing how parts of an application work together, such as an API, database, and authentication. It recommends a separate test database, isolated test data, and checks for both valid and invalid requests.

In plain words
What is it for?
Use it to test API endpoints, database interactions, authorization, validation errors, and other service-to-service behavior.
Why use it?
It reduces the risk of tests changing development or production data and helps catch failures that unit tests of individual functions cannot see.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/girijashankarj/cursor-handbook/integration-testing
Clone the repo
git clone --depth 1 https://github.com/girijashankarj/cursor-handbook

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for integration-testing

README.md
[![agentmods](https://agentmods.dev/badge/rules/girijashankarj/cursor-handbook/integration-testing.svg)](https://agentmods.dev/rules/girijashankarj/cursor-handbook/integration-testing)
Your own site
<a href="https://agentmods.dev/rules/girijashankarj/cursor-handbook/integration-testing"><img src="https://agentmods.dev/badge/rules/girijashankarj/cursor-handbook/integration-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 446 This file is loaded in full into every session.
When invoked 446 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00446 $0.00446
Opus 5 $0.00223 $0.00223
Sonnet 5 $0.00089 $0.00089
Haiku 4.5 $0.00045 $0.00045

Measured 2d ago against content hash 0b9250a9a29b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

integration-testing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/testing/integration-testing.mdc · 64 lines

What it actually says

Integration Testing Rules

Setup

  • Use a dedicated test database (never production or development)
  • Reset database state before each test suite
  • Use transactions for test isolation when possible
  • Seed minimal data required for each test

API Integration Tests

describe('POST /api/v1/orders', () => {
  it('should create an order and return 201', async () => {
    const payload = {
      customerId: testCustomer.id,
      items: [{ productId: testProduct.id, quantity: 2 }],
    };

    const response = await request(app)
      .post('/api/v1/orders')
      .set('Authorization', `Bearer ${testToken}`)
      .set('X-Correlation-Id', 'test-123')
      .send(payload)
      .expect(201);

    expect(response.body.data).toMatchObject({
      customerId: testCustomer.id,
      status: 'PENDING',
    });
    expect(response.body.meta.correlationId).toBe('test-123');
  });

  it('should return 400 for invalid payload', async () => {
    const response = await request(app)
      .post('/api/v1/orders')
      .set('Authorization', `Bearer ${testToken}`)
      .send({})
      .expect(400);

    expect(response.body.error.code).toBe('VALIDATION_ERROR');
  });

  it('should return 401 without auth token', async () => {
    await request(app)
      .post('/api/v1/orders')
      .send({ customerId: 'test' })
      .expect(401);
  });
});

Rules

  • Test the full request/response cycle — no mocking the HTTP layer
  • Test all status codes: success, validation error, auth error, not found
  • Test request validation (missing fields, wrong types, boundary values)
  • Test pagination, sorting, and filtering
  • Verify response envelope format matches API contract
  • Clean up test data — don't leave artifacts
  • Use a separate port for test server to avoid conflicts
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 64 lines · 446 tokens per session scan A 0b9250a9a29b

Subscribe to this mod's changes

integration-testing is a cursor rule published in the GitHub repository girijashankarj/cursor-handbook (30 stars, last pushed 6d ago), licensed MIT. It adds 446 tokens to every session, about $0.0022 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.