312-frameworks-spring-boot-integration-testing

A set of guidelines for integration testing Java applications. Integration tests check that multiple parts of an application work together, including external services and APIs.

In plain words
What is it for?
Use it to define test scope, run dependencies with Testcontainers, test APIs with TestRestTemplate, manage data, write clear assertions, and clean up resources.
Why use it?
It helps keep tests independent, repeatable, understandable, and reasonably fast. The rules address consistent environments, test data, cleanup, and useful failure messages.

Cursor rule for 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/jabrena/cursor-rules-spring-boot/312-frameworks-spring-boot-integration-testing
Clone the repo
git clone --depth 1 https://github.com/jabrena/cursor-rules-spring-boot

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 6,528 The whole file, excluding the scripts and references it only reads on demand.
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 $0.00000 $0.06528
Opus 5 $0.00000 $0.03264
Sonnet 5 $0.00000 $0.01306
Haiku 4.5 $0.00000 $0.00653

Measured 3d ago against content hash 1c9881b60198, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

312-frameworks-spring-boot-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 3d 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/312-frameworks-spring-boot-integration-testing.mdc · 649 lines

How it starts

The opening of the file, as written. The whole thing — 649 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Java Integration testing guidelines

These guidelines aim to ensure consistency, reliability, and maintainability of integration tests within the project.

Implementing These Principles

These guidelines are built upon the following core principles:

  • Principle 1: Test Isolation - Each integration test must be independent and not affect other tests
  • Principle 2: Environment Reproducibility - Use containerized dependencies for consistent test environments
  • Principle 3: Clear Test Boundaries - Focus on integration points rather than duplicating unit test logic
  • Principle 4: Performance Optimization - Balance thorough testing with execution speed
  • Principle 5: Maintainable Assertions - Use specific, clear assertions that provide meaningful feedback
  • Principle 6: Resource Management - Properly manage external dependencies and cleanup after tests

Table of contents

  • Rule 1: Define Clear Scope and Purpose for Integration Tests
  • Rule 2: Manage Test Environment & Dependencies with Testcontainers
  • Rule 3: Utilize TestRestTemplate for Robust API Testing
  • Rule 4: Implement Consistent Data Management Strategies
  • Rule 5: Maintain Clear Test Structure and Assertions
  • Rule 6: Optimize for Performance and Ensure Proper Cleanup

Rule 1: Define Clear Scope and Purpose for Integration Tests

Title: Clearly Define the Scope and Purpose of Each Integration Test Description:

  • Integration tests must verify the interaction between multiple components or systems (e.g., service layer with database, service-to-service communication over HTTP).
  • Clearly define the boundary of each integration test. What specific interaction, contract, or flow is being tested?
  • Prefer integration tests for verifying contracts between services (APIs) and interactions with external dependencies (databases, message queues, etc.).
  • Avoid replicating complex business logic in integration tests if it is already thoroughly covered by unit tests. Focus on the integration points.

Good example:

// Assume: ProductService interacts with ProductRepository (database) and NotificationService (external HTTP)

// @SpringBootTest // or similar context for the test
// @Testcontainers // if using Testcontainers
public class ProductServiceIT {
    private static final Logger log = LoggerFactory.getLogger(ProductServiceIT.class);

    // @Autowired
    // private ProductService productService;
    
    // @Autowired
    // private ProductRepository productRepository; // To verify DB state

    // Mock or use a Testcontainer for NotificationService if its actual calls are out of scope
    // @MockBean
    // private NotificationService mockNotificationService;

    // @Test
    void should_createProduct_saveToDatabase_and_sendNotification() {
        // Scope: Test the flow of creating a product, ensuring it's saved,
        // and that a notification attempt is made.

        // Given: A product DTO
        // ProductDto newProductDto = new ProductDto("Laptop X1", 1500.00);

        // When: ProductService creates the product
        // Product createdProduct = productService.createProduct(newProductDto);

        // Then: Verify interactions
        // 1. Product is saved in the database (verify via repository or direct query)
        // Optional<ProductEntity> savedEntity = productRepository.findById(createdProduct.getId());
        // assertThat(savedEntity).isPresent();
        // assertThat(savedEntity.get().getName()).isEqualTo("Laptop X1");

        // 2. Notification service was called (verify via mock or wiremock if testing HTTP contract)
        // verify(mockNotificationService).sendProductCreationNotification(any(Product.class));
        log.info("Conceptual test: Product creation flow verified.");
    }
}

Read the full file on GitHub · 649 lines

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. 3d ago First seen · 649 lines · 0 tokens per session scan A 1c9881b60198

Subscribe to this mod's changes

312-frameworks-spring-boot-integration-testing is a cursor rule published in the GitHub repository jabrena/cursor-rules-spring-boot (47 stars, last pushed 5mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 6,528 tokens. 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-08-30.