87 lines
2.5 KiB
PHP
Executable file
87 lines
2.5 KiB
PHP
Executable file
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Test Case
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The closure you provide to your test functions is always bound to a specific PHPUnit test
|
|
| case class. By default, that class is "PHPUnit\Framework\TestCase". Of course, you may
|
|
| need to change it using the "pest()" function to bind a different classes or traits.
|
|
|
|
|
*/
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Pest\Expectation;
|
|
use function PHPUnit\Framework\assertTrue;
|
|
|
|
pest()
|
|
->extend(Tests\TestCase::class)
|
|
->use(Illuminate\Foundation\Testing\RefreshDatabase::class)
|
|
->in('Feature');
|
|
|
|
arch()->preset()->laravel();
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Expectations
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| When you're writing tests, you often need to check that values meet certain conditions. The
|
|
| "expect()" function gives you access to a set of "expectations" methods that you can use
|
|
| to assert different things. Of course, you may extend the Expectation API at any time.
|
|
|
|
|
*/
|
|
|
|
// https://github.com/defstudio/pest-plugin-laravel-expectations
|
|
|
|
expect()->extend(
|
|
'toBeEloquentCollection',
|
|
/**
|
|
* Assert that the value is an instance of \Illuminate\Database\Eloquent\Collection.
|
|
*/
|
|
function (): Expectation {
|
|
return $this->toBeInstanceOf(Collection::class);
|
|
}
|
|
);
|
|
|
|
|
|
expect()->extend(
|
|
'toBeSameModelAs',
|
|
/**
|
|
* Assert that the given model has the same ID and belong to the same table of another model.
|
|
*/
|
|
function (Model $model): Expectation {
|
|
/** @var Model $value */
|
|
$value = $this->value;
|
|
|
|
assertTrue($value->is($model),
|
|
'Failed asserting that two models have the same ID and belong to the same table');
|
|
|
|
return $this;
|
|
}
|
|
);
|
|
|
|
expect()->intercept(
|
|
'toBe',
|
|
Model::class,
|
|
function (Model $anotherModel) {
|
|
return expect($this->value)->toBeSameModelAs($anotherModel);
|
|
});
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Functions
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| While Pest is very powerful out-of-the-box, you may have some testing code specific to your
|
|
| project that you don't want to repeat in every file. Here you can also expose helpers as
|
|
| global functions to help you to reduce the number of lines of code in your test files.
|
|
|
|
|
*/
|
|
|
|
function something()
|
|
{
|
|
// ..
|
|
}
|