Laravel Testing
Agent Workflow (MANDATORY)
Before ANY implementation, use TeamCreate to spawn 3 agents:
- fuse-ai-pilot:explore-codebase - Analyze existing test patterns
- fuse-ai-pilot:research-expert - Verify Pest/PHPUnit docs via Context7
- mcp__context7__query-docs - Check assertion and mocking patterns
After implementation, run fuse-ai-pilot:sniper for validation.
Overview
| Type |
Purpose |
Location |
| Feature |
HTTP, full stack |
tests/Feature/ |
| Unit |
Isolated classes |
tests/Unit/ |
| Arch |
Code architecture |
tests/Arch.php |
Decision Guide: Test Type
What to test?
├── HTTP endpoint → Feature test
├── Service/Policy logic → Unit test
├── Code structure → Arch test
├── External API → Mock with Http::fake()
├── Mail/Queue/Event → Use Fakes
└── Database state → assertDatabaseHas()
Decision Guide: Test Strategy
Coverage strategy?
├── Feature tests (70%) → Critical flows
├── Unit tests (25%) → Business logic
├── E2E tests (5%) → User journeys
└── Arch tests → Structural rules
Critical Rules
- Use RefreshDatabase for database isolation
- Use factories for test data (never raw inserts)
- Mock external services - Never call real APIs
- Test edge cases - Empty, null, boundaries
- Run parallel -
pest --parallel for speed
Reference Guide
Pest Basics
| Topic |
Reference |
When to Consult |
| Pest Syntax |
pest-basics.md |
it(), test(), describe() |
| Datasets |
pest-datasets.md |
Data providers, hooks |
| Architecture |
pest-arch.md |
arch() tests |
HTTP Testing
| Topic |
Reference |
When to Consult |
| Requests |
http-requests.md |
GET, POST, headers |
| JSON API |
http-json.md |
API assertions |
| Authentication |
http-auth.md |
actingAs, guards |
| Assertions |
http-assertions.md |
Status, redirects |
Database Testing
| Topic |
Reference |
When to Consult |
| Basics |
database-basics.md |
RefreshDatabase |
| Factories |
database-factories.md |
Factory patterns |
| Assertions |
database-assertions.md |
DB assertions |
Mocking
| Topic |
Reference |
When to Consult |
| Services |
mocking-services.md |
Mock, spy |
| Fakes |
mocking-fakes.md |
Mail, Queue, Event |
| HTTP & Time |
mocking-http.md |
Http::fake, travel |
Other
| Topic |
Reference |
When to Consult |
| Console |
console-tests.md |
Artisan tests |
| Troubleshooting |
troubleshooting.md |
Common errors |
Templates
| Template |
When to Use |
| FeatureTest.php.md |
HTTP feature test |
| UnitTest.php.md |
Service unit test |
| ArchTest.php.md |
Architecture test |
| ApiTest.php.md |
REST API test |
| PestConfig.php.md |
Pest configuration |
Quick Reference
// Feature test
it('creates a post', function () {
$user = User::factory()->create();
$this->actingAs($user)
->postJson('/api/posts', ['title' => 'Test'])
->assertCreated()
->assertJsonPath('data.title', 'Test');
$this->assertDatabaseHas('posts', ['title' => 'Test']);
});
// With dataset
it('validates emails', function (string $email, bool $valid) {
// test logic
})->with([
['valid@test.com', true],
['invalid', false],
]);
// Mock facade
Mail::fake();
// ... action ...
Mail::assertSent(OrderShipped::class);
Commands
# Run all tests
php artisan test
# Pest directly
./vendor/bin/pest
# Parallel execution
./vendor/bin/pest --parallel
# Filter by name
./vendor/bin/pest --filter "user can"
# Coverage
./vendor/bin/pest --coverage --min=80
# Profile slow tests
./vendor/bin/pest --profile
Best Practices
DO
- Use
RefreshDatabase trait
- Follow AAA pattern (Arrange-Act-Assert)
- Name tests descriptively
- Test one thing per test
- Use factories for data
DON'T
- Create test dependencies
- Call real external APIs
- Use production database
- Skip edge cases
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: laravel-testing3description: Write tests with Pest 3/PHPUnit, feature tests, unit tests, mocking, fakes, and factories. Use when testing controllers, services, models, or implementing TDD. Use when this capability is needed.4---56# Laravel Testing78## Agent Workflow (MANDATORY)910Before ANY implementation, use `TeamCreate` to spawn 3 agents:11121. **fuse-ai-pilot:explore-codebase** - Analyze existing test patterns132. **fuse-ai-pilot:research-expert** - Verify Pest/PHPUnit docs via Context7143. **mcp__context7__query-docs** - Check assertion and mocking patterns1516After implementation, run **fuse-ai-pilot:sniper** for validation.1718---1920## Overview2122| Type | Purpose | Location |23|------|---------|----------|24| **Feature** | HTTP, full stack | `tests/Feature/` |25| **Unit** | Isolated classes | `tests/Unit/` |26| **Arch** | Code architecture | `tests/Arch.php` |2728---2930## Decision Guide: Test Type3132```33What to test?34├── HTTP endpoint → Feature test35├── Service/Policy logic → Unit test36├── Code structure → Arch test37├── External API → Mock with Http::fake()38├── Mail/Queue/Event → Use Fakes39└── Database state → assertDatabaseHas()40```4142---4344## Decision Guide: Test Strategy4546```47Coverage strategy?48├── Feature tests (70%) → Critical flows49├── Unit tests (25%) → Business logic50├── E2E tests (5%) → User journeys51└── Arch tests → Structural rules52```5354---5556## Critical Rules57581. **Use RefreshDatabase** for database isolation592. **Use factories** for test data (never raw inserts)603. **Mock external services** - Never call real APIs614. **Test edge cases** - Empty, null, boundaries625. **Run parallel** - `pest --parallel` for speed6364---6566## Reference Guide6768### Pest Basics6970| Topic | Reference | When to Consult |71|-------|-----------|-----------------|72| **Pest Syntax** | [pest-basics.md](references/pest-basics.md) | it(), test(), describe() |73| **Datasets** | [pest-datasets.md](references/pest-datasets.md) | Data providers, hooks |74| **Architecture** | [pest-arch.md](references/pest-arch.md) | arch() tests |7576### HTTP Testing7778| Topic | Reference | When to Consult |79|-------|-----------|-----------------|80| **Requests** | [http-requests.md](references/http-requests.md) | GET, POST, headers |81| **JSON API** | [http-json.md](references/http-json.md) | API assertions |82| **Authentication** | [http-auth.md](references/http-auth.md) | actingAs, guards |83| **Assertions** | [http-assertions.md](references/http-assertions.md) | Status, redirects |8485### Database Testing8687| Topic | Reference | When to Consult |88|-------|-----------|-----------------|89| **Basics** | [database-basics.md](references/database-basics.md) | RefreshDatabase |90| **Factories** | [database-factories.md](references/database-factories.md) | Factory patterns |91| **Assertions** | [database-assertions.md](references/database-assertions.md) | DB assertions |9293### Mocking9495| Topic | Reference | When to Consult |96|-------|-----------|-----------------|97| **Services** | [mocking-services.md](references/mocking-services.md) | Mock, spy |98| **Fakes** | [mocking-fakes.md](references/mocking-fakes.md) | Mail, Queue, Event |99| **HTTP & Time** | [mocking-http.md](references/mocking-http.md) | Http::fake, travel |100101### Other102103| Topic | Reference | When to Consult |104|-------|-----------|-----------------|105| **Console** | [console-tests.md](references/console-tests.md) | Artisan tests |106| **Troubleshooting** | [troubleshooting.md](references/troubleshooting.md) | Common errors |107108### Templates109110| Template | When to Use |111|----------|-------------|112| [FeatureTest.php.md](references/templates/FeatureTest.php.md) | HTTP feature test |113| [UnitTest.php.md](references/templates/UnitTest.php.md) | Service unit test |114| [ArchTest.php.md](references/templates/ArchTest.php.md) | Architecture test |115| [ApiTest.php.md](references/templates/ApiTest.php.md) | REST API test |116| [PestConfig.php.md](references/templates/PestConfig.php.md) | Pest configuration |117118---119120## Quick Reference121122```php123// Feature test124it('creates a post', function () {125 $user = User::factory()->create();126127 $this->actingAs($user)128 ->postJson('/api/posts', ['title' => 'Test'])129 ->assertCreated()130 ->assertJsonPath('data.title', 'Test');131132 $this->assertDatabaseHas('posts', ['title' => 'Test']);133});134135// With dataset136it('validates emails', function (string $email, bool $valid) {137 // test logic138})->with([139 ['valid@test.com', true],140 ['invalid', false],141]);142143// Mock facade144Mail::fake();145// ... action ...146Mail::assertSent(OrderShipped::class);147```148149---150151## Commands152153```bash154# Run all tests155php artisan test156157# Pest directly158./vendor/bin/pest159160# Parallel execution161./vendor/bin/pest --parallel162163# Filter by name164./vendor/bin/pest --filter "user can"165166# Coverage167./vendor/bin/pest --coverage --min=80168169# Profile slow tests170./vendor/bin/pest --profile171```172173---174175## Best Practices176177### DO178- Use `RefreshDatabase` trait179- Follow AAA pattern (Arrange-Act-Assert)180- Name tests descriptively181- Test one thing per test182- Use factories for data183184### DON'T185- Create test dependencies186- Call real external APIs187- Use production database188- Skip edge cases189190---191> Converted and distributed by [TomeVault](https://tomevault.io/claim/fusengine) — claim your Tome and manage your conversions.192<!-- tomevault:4.0:skill_md:2026-04-13 -->