mirror of
https://github.com/pestphp/pest.git
synced 2026-03-12 10:47:25 +01:00
chore: adjusts snapshots
This commit is contained in:
@ -1161,17 +1161,9 @@
|
|||||||
PASS Tests\Helpers\TestInHelpers
|
PASS Tests\Helpers\TestInHelpers
|
||||||
✓ it executes tests in the Helpers directory
|
✓ it executes tests in the Helpers directory
|
||||||
|
|
||||||
PASS Tests\Hooks\AfterAllTest
|
|
||||||
✓ global afterAll execution order
|
|
||||||
✓ it only gets called once per file
|
|
||||||
|
|
||||||
PASS Tests\Hooks\AfterEachTest
|
PASS Tests\Hooks\AfterEachTest
|
||||||
✓ global afterEach execution order
|
✓ global afterEach execution order
|
||||||
|
|
||||||
PASS Tests\Hooks\BeforeAllTest
|
|
||||||
✓ global beforeAll execution order
|
|
||||||
✓ it only gets called once per file
|
|
||||||
|
|
||||||
PASS Tests\Hooks\BeforeEachTest
|
PASS Tests\Hooks\BeforeEachTest
|
||||||
✓ global beforeEach execution order
|
✓ global beforeEach execution order
|
||||||
|
|
||||||
@ -1412,4 +1404,4 @@
|
|||||||
WARN Tests\Visual\Version
|
WARN Tests\Visual\Version
|
||||||
- visual snapshot of help command output
|
- visual snapshot of help command output
|
||||||
|
|
||||||
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 20 skipped, 1003 passed (2407 assertions)
|
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 20 skipped, 999 passed (2359 assertions)
|
||||||
@ -1,45 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
uses()->afterAll(function () {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('afterAll')
|
|
||||||
->and($_SERVER['globalHook']->afterAll)
|
|
||||||
->toBe(1)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->afterAll
|
|
||||||
->toBe(1);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->afterAll = 2;
|
|
||||||
$_SERVER['globalHook']->calls->afterAll++;
|
|
||||||
});
|
|
||||||
|
|
||||||
afterAll(function () {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('afterAll')
|
|
||||||
->and($_SERVER['globalHook']->afterAll)
|
|
||||||
->toBe(1)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->afterAll
|
|
||||||
->toBe(2);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->afterAll = 2;
|
|
||||||
$_SERVER['globalHook']->calls->afterAll++;
|
|
||||||
});
|
|
||||||
|
|
||||||
test('global afterAll execution order', function () {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->not()
|
|
||||||
->toHaveProperty('afterAll')
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->afterAll
|
|
||||||
->toBe(0);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('only gets called once per file', function () {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->not()
|
|
||||||
->toHaveProperty('afterAll')
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->afterAll
|
|
||||||
->toBe(0);
|
|
||||||
});
|
|
||||||
@ -1,55 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
use Pest\Plugins\Parallel;
|
|
||||||
use Pest\Support\Str;
|
|
||||||
|
|
||||||
// HACK: we have to determine our $_SERVER['globalHook-]>calls baseline. This is because
|
|
||||||
// two other tests are executed before this one due to filename ordering.
|
|
||||||
$args = $_SERVER['argv'] ?? [];
|
|
||||||
$single = (isset($args[1]) && Str::endsWith(__FILE__, $args[1])) || Parallel::isWorker();
|
|
||||||
$offset = $single ? 0 : 2;
|
|
||||||
|
|
||||||
uses()->beforeAll(function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('beforeAll')
|
|
||||||
->and($_SERVER['globalHook']->beforeAll)
|
|
||||||
->toBe(1)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(1 + $offset);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->beforeAll = 2;
|
|
||||||
$_SERVER['globalHook']->calls->beforeAll++;
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeAll(function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('beforeAll')
|
|
||||||
->and($_SERVER['globalHook']->beforeAll)
|
|
||||||
->toBe(2)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(2 + $offset);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->beforeAll = 3;
|
|
||||||
$_SERVER['globalHook']->calls->beforeAll++;
|
|
||||||
});
|
|
||||||
|
|
||||||
test('global beforeAll execution order', function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('beforeAll')
|
|
||||||
->and($_SERVER['globalHook']->beforeAll)
|
|
||||||
->toBe(3)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(3 + $offset);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('only gets called once per file', function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->beforeAll
|
|
||||||
->toBe(3)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(3 + $offset);
|
|
||||||
});
|
|
||||||
@ -16,7 +16,7 @@ $run = function () {
|
|||||||
|
|
||||||
test('parallel', function () use ($run) {
|
test('parallel', function () use ($run) {
|
||||||
expect($run('--exclude-group=integration'))
|
expect($run('--exclude-group=integration'))
|
||||||
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 990 passed (2388 assertions)')
|
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 986 passed (2340 assertions)')
|
||||||
->toContain('Parallel: 3 processes');
|
->toContain('Parallel: 3 processes');
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user