AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Laravel Testing

skill-foysal50x-skills-laravel-testing · by Foysal50x

Test strategy for a layered Laravel application — which test style fits each layer, hand-written fakes over mocks, real-database tests for Query Classes and Repositories, pure tests for Value Objects, and feature tests that assert authorization, payload shape and query counts. Use when writing or reviewing Laravel tests, deciding what to fake, diagnosing a flaky or slow suite, or setting a projec…

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-foysal50x-skills-laravel-testing

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-foysal50x-skills-laravel-testing)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Laravel Testing? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Laravel Testing

Test strategy for a layered Laravel application: 20 rules across 5 sections. Examples use Pest; every rule applies equally to PHPUnit.

The organizing idea: each layer has one test style that fits it. Testing an Action against a real database, or a Query Class against a mock, produces a slow suite that breaks on refactors and misses real bugs.

When to Apply

  • Writing tests for any layer defined by the laravel-patterns skill
  • Deciding what to fake and what to run for real
  • The suite is slow, flaky, or nobody runs it locally
  • Reviewing a pull request's test coverage
  • Setting testing conventions for a project

The Layer Table

| Layer | Style | Database | What it proves | |-------|-------|----------|----------------| | Action | Unit, fake repository | No | The use case orchestrates correctly | | Service | Unit, fakes | No | The business decision is right | | Repository | Integration, factories | Yes | Methods return the right domain types | | Query Class | Integration, factories | Yes | Which rows are in, out, and in what order | | Value Object | Pure unit | No | Predicates and transformations | | Controller / route | Feature test | Usually | Status, payload, authorization | | Job / Listener | Unit handler, faked dispatch | Depends | Idempotency and effects |

Pick the Rule

| About to write | Read | |----------------|------| | A test for anything at all | strategy-layer-to-test-type, strategy-test-your-rules-not-the-framework | | A test that needs a Repository | fake-repository-anonymous-class, fake-never-mock-eloquent | | A test for a Query Class | db-refresh-database-and-factories, db-assert-inclusion-and-exclusion | | A test for ordering or defaults | db-test-ordering-and-defaults | | A test for an endpoint | http-assert-payload-shape, http-assert-authorization | | A test that a job or event fired | http-assert-side-effects-dispatched, fake-framework-facades | | A test involving dates or randomness | fake-time-and-randomness | | A test for a Value Object | vo-test-predicates-directly, vo-never-hand-a-builder | | A test for code that calls an API | fake-http-prevent-stray-requests | | A test for queued mail or notifications | fake-assert-queued-not-sent | | A test that feels pointless to write | strategy-if-testing-feels-silly |

Before You Write Code

  • Every API named in these rules is verified against Laravel ^12.0 || ^13.0 and PHP ^8.3. If you need something these rules do not name, check the docs — never infer an API from its name.
  • Version-gated APIs are marked inline ("Laravel 13 only"). Read the project's composer.json first; on Laravel 12 use the fallback the rule gives.
  • Where the project already differs from a rule, follow the project. Name the rule you set aside and why, rather than half-converting the codebase.
  • When two rules collide, the higher-impact section wins — sections are ordered by impact.
  • One example is not the whole rule. Open rules/{slug}.md before adapting it to a case the example does not show.

Rule Sections by Priority

| # | Section | Impact | Prefix | |---|---------|--------|--------| | 1 | Strategy by Layer | HIGH | strategy- | | 2 | Fakes and Doubles | HIGH | fake- | | 3 | Database Tests | HIGH | db- | | 4 | Feature Tests | MEDIUM-HIGH | http- | | 5 | Value Object Tests | MEDIUM | vo- |

Quick Reference

1. Strategy by Layer (HIGH)

  • strategy-layer-to-test-type — Match the test style to the layer
  • strategy-test-your-rules-not-the-framework — Test your rules, not Eloquent
  • strategy-if-testing-feels-silly — A pointless test means a pointless class
  • strategy-pest-and-suite-speed — Keep the suite fast enough to run on every save

2. Fakes and Doubles (HIGH)

  • fake-repository-anonymous-class — Fake a Repository with an anonymous class
  • fake-framework-facadesQueue::fake(), Event::fake(), Http::fake() and friends
  • fake-never-mock-eloquent — Never mock Eloquent or the query builder
  • fake-time-and-randomness — Freeze time, seed randomness
  • fake-http-prevent-stray-requests — Fake the HTTP client and forbid stray requests
  • fake-assert-queued-not-sentassertQueued() for anything ShouldQueue

3. Database Tests (HIGH)

  • db-refresh-database-and-factoriesRefreshDatabase plus factories, never shared fixtures
  • db-assert-inclusion-and-exclusion — Assert what is excluded, not only what is included
  • db-test-ordering-and-defaults — Cover ordering, defaults and the sort allow-list
  • db-test-eager-loading — Lock the N+1 fix in place
  • db-test-transactions-and-idempotency — Prove rollback and repeat-safety

4. Feature Tests (MEDIUM-HIGH)

  • http-assert-authorization — Unauthenticated, unpermitted, and another tenant's record
  • http-assert-payload-shape — Pin the contract, including keys that must not appear
  • http-assert-side-effects-dispatched — Assert the jobs and events an endpoint queues

5. Value Object Tests (MEDIUM)

  • vo-test-predicates-directly — Construct, call, assert — no database, no container
  • vo-never-hand-a-builder — A test needing a Builder means the boundary is broken

Suite Configuration

// tests/Pest.php
uses(Tests\TestCase::class, RefreshDatabase::class)->in('Feature', 'Integration');
uses(Tests\TestCase::class)->in('Unit');   // no database
// AppServiceProvider::boot() — makes N+1 and typos fail the suite
Model::shouldBeStrict(! $this->app->isProduction());

SQLite differs from MySQL and Postgres on JSON operators, full-text search, locking and strict-mode errors. Run the integration suite against the production engine in CI even when local runs use SQLite.

Reference Material

  • references/test-templates.md — copy-paste starting points for each layer
  • references/checklist.md — pre-merge self-check for test coverage

How to Use

Load in this order and stop when the answer is clear:

  1. This file — the Quick Reference names every rule, and usually settles the question.
  2. One rule file for the reasoning and both examples (~465 tokens each):
rules/fake-repository-anonymous-class.md
rules/db-assert-inclusion-and-exclusion.md
  1. A references/ file only when a rule points at one.

AGENTS.md is every rule compiled into one document (~8k tokens), for agents that read the AGENTS.md convention. Do not load it when the individual rule files are reachable.

Related Skills

  • laravel-patterns — the layers these tests are organized around
  • laravel-eloquent — the query rules the database tests assert
  • laravel-rest-api — the endpoints the feature tests cover
  • laravel-async — testing idempotency, batches and cache invalidation

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.