morrislaptop / laravel-boot-maker
Partially boot Laravel for your lightning fast tests
Installs: 166 996
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 1
Open Issues: 3
Requires
- php: ^8.1
- illuminate/contracts: ^9.43|^10.0|^11.0
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- fakerphp/faker: ^1.20
- guzzlehttp/guzzle: ^7.4
- laravel/framework: ^9.43|^10.0|^11.0
- laravel/pint: ^1.0
- mockery/mockery: ^1.4.4
- nunomaduro/collision: ^6.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
- ramsey/uuid: ^4.3
This package is auto-updated.
Last update: 2024-11-09 18:21:28 UTC
README
When you extend TestCase
, you're booting the whole framework for each test in your suite.
It's likely that you're not using all the features for each test, slowing down your
test suite considerably.
This package allows you to "opt in" to boot just the Laravel features you need for your test to pass. Your test will run much quicker as a result.
Installation
You can install the package via composer:
composer require morrislaptop/laravel-boot-maker --dev
Create the following trait in tests/CreatesPartialApplication.php
<?php namespace Tests; trait CreatesPartialApplication { /** * Creates the application. * * @return \Illuminate\Foundation\Application */ public function createApplication() { $app = require __DIR__.'/../bootstrap/app.php'; return $app; } }
Create a base partial test class which uses this trait at tests/PartialTestCase.php
<?php namespace Tests; use Morrislaptop\LaravelBootMaker\PartialTestCase as BasePartialTestCase; abstract class PartialTestCase extends BasePartialTestCase { use CreatesPartialApplication; }
Usage
It's recommended to get the tests passing using the full TestCase
first, and then
drop down to PartialTestCase
and select only the Laravel features you need.
This approach ensures you're only using the Laravel features you think are using, which might be useful if trying to decouple from the framework bit.
<?php namespace Tests\Feature; use App\Events\QuestionCreated; use App\Listeners\AskQuestion; use Illuminate\Support\Facades\Event; use Morrislaptop\LaravelBootMaker\Concerns\Events; use Tests\PartialTestCase; class QuestionCreatedTest extends PartialTestCase { use Events; /** * A basic feature test example. * * @return void */ public function test_example() { Event::fake(); Event::assertListening(QuestionCreated::class, AskQuestion::class); } }
For a full list of features to enable, see src/Concerns;
You can easily create your own Concerns by including it in a TestCase and ensuring
it has the setUpXXXX
and tearDownXXXX
methods.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
Inspired by @ekvedaras at @gosuperscript
License
The MIT License (MIT). Please see License File for more information.
Todo
- Installer to create
CreatesPartialApplication
andPartialTestCase
- Listener to determine what Laravel features are used