mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
Compare commits
122 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ac5d6c1f67 | |||
| 5aa3b91d56 | |||
| 9a01504b76 | |||
| 0ab636e436 | |||
| b9d2be87a2 | |||
| fef02594db | |||
| e135e2671f | |||
| 6d74965727 | |||
| 146e141b2a | |||
| 6fed7545c0 | |||
| 5332858782 | |||
| 3457841a9b | |||
| 5258e569c1 | |||
| abb416c2ff | |||
| dc1e4f040d | |||
| 5e1e701ce5 | |||
| f004591c5a | |||
| 86a96dd157 | |||
| 97dc32f9d2 | |||
| a3ab065343 | |||
| c390721ac3 | |||
| f83d758d4b | |||
| e00aba539a | |||
| 7799500d06 | |||
| c099991cd9 | |||
| e27d2e7394 | |||
| 14fb992ef2 | |||
| 4550a344d3 | |||
| 8efd25ef65 | |||
| 117694f210 | |||
| e5dc6f0ae2 | |||
| 8f738f5d49 | |||
| 1e2ca40c5b | |||
| 4522cb5dcb | |||
| 9ee4191020 | |||
| cc65009d0a | |||
| 453133d382 | |||
| dd0dddffd4 | |||
| 9a8f6e6414 | |||
| 4ece95a040 | |||
| 0cc09380bc | |||
| 809fb855de | |||
| aa14f2e200 | |||
| e319bdb6d3 | |||
| fb7340b556 | |||
| 0528fec083 | |||
| 1cbaaf6e12 | |||
| dc862f60b2 | |||
| ff04d54247 | |||
| 330cf05177 | |||
| 42b5fa914c | |||
| 3b1026b7d7 | |||
| b6151e0d01 | |||
| d6db2c13c1 | |||
| 07b6ff6c04 | |||
| ac5da9e3f7 | |||
| 90fb8c602c | |||
| 3974a65a18 | |||
| 2a54b5819d | |||
| 8be46b57a0 | |||
| 7177791f1e | |||
| c743b10a87 | |||
| 83f8de17c8 | |||
| da20a62e49 | |||
| c8d3e1a9fa | |||
| f7705fe1c1 | |||
| 4f35dbc607 | |||
| cf23dfa477 | |||
| ab4787c667 | |||
| bd6b166a62 | |||
| 17340947b3 | |||
| f235d84d95 | |||
| 3c0d780696 | |||
| 16768fca9f | |||
| 95ec0a82b2 | |||
| 0a680dd06e | |||
| 152892cc38 | |||
| 9aad417fb2 | |||
| b58e0cba66 | |||
| 74864c60e1 | |||
| fd4f161edd | |||
| e0939e3e99 | |||
| 2cbecd10e6 | |||
| 2cdd5e3ba0 | |||
| 811ef27ee4 | |||
| 22a7fd0656 | |||
| 698c276cbe | |||
| 6340656ece | |||
| 2d5840f947 | |||
| b8bb3684a3 | |||
| b8cd563569 | |||
| 9fb64599de | |||
| 502f37d280 | |||
| 29cfa8ec35 | |||
| a63cd2e4f5 | |||
| 7249b59e52 | |||
| 5c94d9994e | |||
| bb0a5d8323 | |||
| b126e8e6e4 | |||
| 677129d23d | |||
| cef5c36885 | |||
| a343ba4a29 | |||
| 21b30b22a7 | |||
| 449c4b6c5e | |||
| 6513ad6ced | |||
| 12421c846e | |||
| a312cecede | |||
| 4be97ed314 | |||
| 5101b9dce3 | |||
| 2ffafd445d | |||
| 6068ef6150 | |||
| 8c0b933fcd | |||
| 991e02649a | |||
| a8b785f69e | |||
| 56610d886d | |||
| be0d9e964b | |||
| 6bc9da3fe1 | |||
| 6f54462070 | |||
| 876629b744 | |||
| e888f3613b | |||
| 6c3d8829ce | |||
| 8ea7b2b802 |
42
.github/workflows/integration-tests.yml
vendored
42
.github/workflows/integration-tests.yml
vendored
@ -1,42 +0,0 @@
|
|||||||
name: Integration Tests
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * *'
|
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ci:
|
|
||||||
if: github.event_name != 'schedule' || github.repository == 'pestphp/pest'
|
|
||||||
runs-on: ${{ matrix.os }}
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
||||||
php: ['8.1', '8.2']
|
|
||||||
dependency-version: [prefer-lowest, prefer-stable]
|
|
||||||
|
|
||||||
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Setup PHP
|
|
||||||
uses: shivammathur/setup-php@v2
|
|
||||||
with:
|
|
||||||
php-version: ${{ matrix.php }}
|
|
||||||
tools: composer:v2
|
|
||||||
coverage: none
|
|
||||||
|
|
||||||
- name: Setup Problem Matches
|
|
||||||
run: |
|
|
||||||
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
|
|
||||||
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
|
||||||
|
|
||||||
- name: Install PHP dependencies
|
|
||||||
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
|
|
||||||
|
|
||||||
- name: Integration Tests
|
|
||||||
run: composer test:integration
|
|
||||||
|
|
||||||
3
.github/workflows/static.yml
vendored
3
.github/workflows/static.yml
vendored
@ -13,12 +13,13 @@ jobs:
|
|||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
dependency-version: [prefer-lowest, prefer-stable]
|
dependency-version: [prefer-lowest, prefer-stable]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|||||||
21
.github/workflows/tests.yml
vendored
21
.github/workflows/tests.yml
vendored
@ -6,22 +6,27 @@ on:
|
|||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: '0 0 * * *'
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
tests:
|
||||||
if: github.event_name != 'schedule' || github.repository == 'pestphp/pest'
|
if: github.event_name != 'schedule' || github.repository == 'pestphp/pest'
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
symfony: ['6.4', '7.0']
|
||||||
php: ['8.1', '8.2', '8.3']
|
php: ['8.1', '8.2', '8.3']
|
||||||
dependency-version: [prefer-lowest, prefer-stable]
|
dependency_version: [prefer-lowest, prefer-stable]
|
||||||
|
exclude:
|
||||||
|
- php: '8.1'
|
||||||
|
symfony: '7.0'
|
||||||
|
|
||||||
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }}
|
name: PHP ${{ matrix.php }} - Symfony ^${{ matrix.symfony }} - ${{ matrix.os }} - ${{ matrix.dependency_version }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup PHP
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
@ -36,11 +41,13 @@ jobs:
|
|||||||
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
||||||
|
|
||||||
- name: Install PHP dependencies
|
- name: Install PHP dependencies
|
||||||
run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
|
run: composer update --${{ matrix.dependency_version }} --no-interaction --no-progress --ansi --with="symfony/console:~${{ matrix.symfony }}"
|
||||||
|
|
||||||
- name: Unit Tests
|
- name: Unit Tests
|
||||||
run: composer test:unit
|
run: composer test:unit
|
||||||
|
|
||||||
- name: Unit Tests in Parallel
|
- name: Parallel Tests
|
||||||
run: composer test:parallel
|
run: composer test:parallel
|
||||||
|
|
||||||
|
- name: Integration Tests
|
||||||
|
run: composer test:integration
|
||||||
|
|||||||
15
README.md
15
README.md
@ -22,18 +22,17 @@ We cannot thank our sponsors enough for their incredible support in funding Pest
|
|||||||
### Platinum Sponsors
|
### Platinum Sponsors
|
||||||
|
|
||||||
- **[Forge](https://forge.laravel.com)**
|
- **[Forge](https://forge.laravel.com)**
|
||||||
- **[LoadForge](https://loadforge.com)**
|
|
||||||
- **[Spatie](https://spatie.be)**
|
- **[Spatie](https://spatie.be)**
|
||||||
- **[Worksome](https://www.worksome.com/)**
|
- **[Worksome](https://www.worksome.com/)**
|
||||||
|
|
||||||
### Premium Sponsors
|
### Premium Sponsors
|
||||||
|
|
||||||
- [Akaunting](https://akaunting.com)
|
- [Akaunting](https://akaunting.com/?ref=pestphp)
|
||||||
- [Codecourse](https://codecourse.com/)
|
- [Codecourse](https://codecourse.com/?ref=pestphp)
|
||||||
- [Laracasts](https://laracasts.com/)
|
- [Laracasts](https://laracasts.com/?ref=pestphp)
|
||||||
- [Localazy](https://localazy.com)
|
- [Laradir](https://laradir.com/?ref=pestphp)
|
||||||
- [Fathom Analytics](https://usefathom.com/)
|
- [Localazy](https://localazy.com/?ref=pestphp)
|
||||||
- [Meema](https://meema.io)
|
- [Stormlikes](https://www.stormlikes.net/?ref=pestphp)
|
||||||
- [Zapiet](https://www.zapiet.com)
|
- [Zapiet](https://www.zapiet.com/?ref=pestphp)
|
||||||
|
|
||||||
Pest is an open-sourced software licensed under the **[MIT license](https://opensource.org/licenses/MIT)**.
|
Pest is an open-sourced software licensed under the **[MIT license](https://opensource.org/licenses/MIT)**.
|
||||||
|
|||||||
2
bin/pest
2
bin/pest
@ -38,7 +38,7 @@ use Symfony\Component\Console\Output\ConsoleOutput;
|
|||||||
unset($args[$key]);
|
unset($args[$key]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($value === '--todos') {
|
if (in_array($value, ['--todo', '--todos'], true)) {
|
||||||
$todo = true;
|
$todo = true;
|
||||||
unset($args[$key]);
|
unset($args[$key]);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -18,16 +18,17 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.1.0",
|
"php": "^8.1.0",
|
||||||
"brianium/paratest": "^7.2.6",
|
"brianium/paratest": "^7.3.1",
|
||||||
"nunomaduro/collision": "^7.8.1",
|
"nunomaduro/collision": "^7.10.0|^8.1.0",
|
||||||
"nunomaduro/termwind": "^1.15.1",
|
"nunomaduro/termwind": "^1.15.1|^2.0.0",
|
||||||
"pestphp/pest-plugin": "^2.1.1",
|
"pestphp/pest-plugin": "^2.1.1",
|
||||||
"pestphp/pest-plugin-arch": "^2.3.3",
|
"pestphp/pest-plugin-arch": "^2.6.1",
|
||||||
"phpunit/phpunit": "^10.3.4"
|
"phpunit/phpunit": "^10.5.7"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"webmozart/assert": "<1.11.0",
|
"phpunit/phpunit": ">10.5.7",
|
||||||
"phpunit/phpunit": ">10.3.4"
|
"sebastian/exporter": "<5.1.0",
|
||||||
|
"webmozart/assert": "<1.11.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
@ -51,8 +52,8 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"pestphp/pest-dev-tools": "^2.16.0",
|
"pestphp/pest-dev-tools": "^2.16.0",
|
||||||
"pestphp/pest-plugin-type-coverage": "^2.2.0",
|
"pestphp/pest-plugin-type-coverage": "^2.8.0",
|
||||||
"symfony/process": "^6.3.4"
|
"symfony/process": "^6.4.0|^7.0.2"
|
||||||
},
|
},
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true,
|
"prefer-stable": true,
|
||||||
@ -75,7 +76,7 @@
|
|||||||
"test:type:coverage": "php bin/pest --type-coverage --min=100",
|
"test:type:coverage": "php bin/pest --type-coverage --min=100",
|
||||||
"test:unit": "php bin/pest --colors=always --exclude-group=integration --compact",
|
"test:unit": "php bin/pest --colors=always --exclude-group=integration --compact",
|
||||||
"test:inline": "php bin/pest --colors=always --configuration=phpunit.inline.xml",
|
"test:inline": "php bin/pest --colors=always --configuration=phpunit.inline.xml",
|
||||||
"test:parallel": "php bin/pest --colors=always --exclude-group=integration --parallel --processes=10",
|
"test:parallel": "php bin/pest --colors=always --exclude-group=integration --parallel --processes=3",
|
||||||
"test:integration": "php bin/pest --colors=always --group=integration",
|
"test:integration": "php bin/pest --colors=always --group=integration",
|
||||||
"update:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always --update-snapshots",
|
"update:snapshots": "REBUILD_SNAPSHOTS=true php bin/pest --colors=always --update-snapshots",
|
||||||
"test": [
|
"test": [
|
||||||
@ -106,7 +107,13 @@
|
|||||||
"Pest\\Plugins\\Snapshot",
|
"Pest\\Plugins\\Snapshot",
|
||||||
"Pest\\Plugins\\Verbose",
|
"Pest\\Plugins\\Verbose",
|
||||||
"Pest\\Plugins\\Version",
|
"Pest\\Plugins\\Version",
|
||||||
"Pest\\Plugins\\Parallel"
|
"Pest\\Plugins\\Parallel",
|
||||||
|
"Pest\\Plugins\\JUnit"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"phpstan": {
|
||||||
|
"includes": [
|
||||||
|
"extension.neon"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,21 +1,16 @@
|
|||||||
ARG PHP=8.1
|
ARG PHP=8.1
|
||||||
FROM php:${PHP}-cli-alpine
|
FROM php:${PHP}-cli-alpine
|
||||||
|
|
||||||
RUN apk update \
|
RUN apk update && apk add \
|
||||||
&& apk add zip libzip-dev icu-dev git
|
zip libzip-dev icu-dev git \
|
||||||
|
|
||||||
RUN docker-php-ext-configure zip
|
RUN docker-php-ext-configure zip intl
|
||||||
RUN docker-php-ext-install zip
|
RUN docker-php-ext-install zip intl
|
||||||
RUN docker-php-ext-enable zip
|
RUN docker-php-ext-enable zip intl
|
||||||
|
|
||||||
RUN docker-php-ext-configure intl
|
RUN apk add --no-cache linux-headers
|
||||||
RUN docker-php-ext-install intl
|
|
||||||
RUN docker-php-ext-enable intl
|
|
||||||
|
|
||||||
RUN apk add --no-cache $PHPIZE_DEPS linux-headers
|
|
||||||
RUN pecl install xdebug
|
RUN pecl install xdebug
|
||||||
RUN docker-php-ext-enable xdebug
|
RUN docker-php-ext-enable xdebug
|
||||||
|
|
||||||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
|
||||||
|
|
||||||
WORKDIR /var/www/html
|
WORKDIR /var/www/html
|
||||||
|
|||||||
4
extension.neon
Normal file
4
extension.neon
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
parameters:
|
||||||
|
universalObjectCratesClasses:
|
||||||
|
- Pest\Support\HigherOrderTapProxy
|
||||||
|
- Pest\Expectation
|
||||||
16
overrides/Logging/JUnit/JunitXmlLogger.php
Normal file
16
overrides/Logging/JUnit/JunitXmlLogger.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace PHPUnit\Logging\JUnit;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Facade;
|
||||||
|
use PHPUnit\TextUI\Output\Printer;
|
||||||
|
|
||||||
|
final class JunitXmlLogger
|
||||||
|
{
|
||||||
|
public function __construct(Printer $printer, Facade $facade)
|
||||||
|
{
|
||||||
|
/** @see \Pest\Logging\JUnit\JUnitLogger */
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -91,7 +91,7 @@ final class DefaultResultCache implements ResultCache
|
|||||||
*/
|
*/
|
||||||
private array $times = [];
|
private array $times = [];
|
||||||
|
|
||||||
public function __construct(string $filepath = null)
|
public function __construct(?string $filepath = null)
|
||||||
{
|
{
|
||||||
if ($filepath !== null && is_dir($filepath)) {
|
if ($filepath !== null && is_dir($filepath)) {
|
||||||
$filepath .= DIRECTORY_SEPARATOR.self::DEFAULT_RESULT_CACHE_FILENAME;
|
$filepath .= DIRECTORY_SEPARATOR.self::DEFAULT_RESULT_CACHE_FILENAME;
|
||||||
|
|||||||
@ -25,6 +25,7 @@ final class BootOverrides implements Bootstrapper
|
|||||||
'TextUI/Output/Default/ProgressPrinter/TestSkippedSubscriber.php',
|
'TextUI/Output/Default/ProgressPrinter/TestSkippedSubscriber.php',
|
||||||
'TextUI/TestSuiteFilterProcessor.php',
|
'TextUI/TestSuiteFilterProcessor.php',
|
||||||
'Event/Value/ThrowableBuilder.php',
|
'Event/Value/ThrowableBuilder.php',
|
||||||
|
'Logging/JUnit/JunitXmlLogger.php',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -25,6 +25,7 @@ final class BootSubscribers implements Bootstrapper
|
|||||||
Subscribers\EnsureIgnorableTestCasesAreIgnored::class,
|
Subscribers\EnsureIgnorableTestCasesAreIgnored::class,
|
||||||
Subscribers\EnsureKernelDumpIsFlushed::class,
|
Subscribers\EnsureKernelDumpIsFlushed::class,
|
||||||
Subscribers\EnsureTeamCityEnabled::class,
|
Subscribers\EnsureTeamCityEnabled::class,
|
||||||
|
Subscribers\EnsureJunitEnabled::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -193,6 +193,7 @@ trait Testable
|
|||||||
$method = TestSuite::getInstance()->tests->get(self::$__filename)->getMethod($this->name());
|
$method = TestSuite::getInstance()->tests->get(self::$__filename)->getMethod($this->name());
|
||||||
|
|
||||||
$description = $this->dataName() ? $method->description.' with '.$this->dataName() : $method->description;
|
$description = $this->dataName() ? $method->description.' with '.$this->dataName() : $method->description;
|
||||||
|
$description = htmlspecialchars(html_entity_decode($description), ENT_NOQUOTES);
|
||||||
|
|
||||||
if ($method->repetitions > 1) {
|
if ($method->repetitions > 1) {
|
||||||
$matches = [];
|
$matches = [];
|
||||||
|
|||||||
@ -23,9 +23,10 @@ final class Thanks
|
|||||||
* @var array<string, string>
|
* @var array<string, string>
|
||||||
*/
|
*/
|
||||||
private const FUNDING_MESSAGES = [
|
private const FUNDING_MESSAGES = [
|
||||||
'Star the project on GitHub' => 'https://github.com/pestphp/pest',
|
'Star' => 'https://github.com/pestphp/pest',
|
||||||
'Tweet about the project' => 'https://twitter.com/pestphp',
|
'News' => 'https://twitter.com/pestphp',
|
||||||
'Sponsor the project' => 'https://github.com/sponsors/nunomaduro',
|
'Videos' => 'https://youtube.com/@nunomaduro',
|
||||||
|
'Sponsor' => 'https://github.com/sponsors/nunomaduro',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -34,8 +34,6 @@ use PHPUnit\Architecture\Elements\ObjectDescription;
|
|||||||
use PHPUnit\Framework\ExpectationFailedException;
|
use PHPUnit\Framework\ExpectationFailedException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @internal
|
|
||||||
*
|
|
||||||
* @template TValue
|
* @template TValue
|
||||||
*
|
*
|
||||||
* @property OppositeExpectation $not Creates the opposite expectation.
|
* @property OppositeExpectation $not Creates the opposite expectation.
|
||||||
@ -192,7 +190,7 @@ final class Expectation
|
|||||||
*
|
*
|
||||||
* @return EachExpectation<TValue>
|
* @return EachExpectation<TValue>
|
||||||
*/
|
*/
|
||||||
public function each(callable $callback = null): EachExpectation
|
public function each(?callable $callback = null): EachExpectation
|
||||||
{
|
{
|
||||||
if (! is_iterable($this->value)) {
|
if (! is_iterable($this->value)) {
|
||||||
throw new BadMethodCallException('Expectation value is not iterable.');
|
throw new BadMethodCallException('Expectation value is not iterable.');
|
||||||
@ -537,7 +535,7 @@ final class Expectation
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asserts that the given expectation targets is an class.
|
* Asserts that the given expectation target is a class.
|
||||||
*/
|
*/
|
||||||
public function toBeClass(): ArchExpectation
|
public function toBeClass(): ArchExpectation
|
||||||
{
|
{
|
||||||
|
|||||||
@ -15,12 +15,11 @@ final class TestDox implements AddsAnnotations
|
|||||||
public function __invoke(TestCaseMethodFactory $method, array $annotations): array
|
public function __invoke(TestCaseMethodFactory $method, array $annotations): array
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* escapes docblock according to
|
* Escapes docblock according to
|
||||||
* https://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.desc
|
* https://manual.phpdoc.org/HTMLframesConverter/default/phpDocumentor/tutorial_phpDocumentor.howto.pkg.html#basics.desc
|
||||||
*
|
*
|
||||||
* note: '@' escaping is not needed as it cannot be the first character of the line (it always starts with @testdox
|
* Note: '@' escaping is not needed as it cannot be the first character of the line (it always starts with @testdox).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
assert($method->description !== null);
|
assert($method->description !== null);
|
||||||
$methodDescription = str_replace('*/', '{@*}', $method->description);
|
$methodDescription = str_replace('*/', '{@*}', $method->description);
|
||||||
|
|
||||||
|
|||||||
@ -55,7 +55,7 @@ if (! function_exists('beforeEach')) {
|
|||||||
*
|
*
|
||||||
* @return HigherOrderTapProxy<Expectable|TestCall|TestCase>|Expectable|TestCall|TestCase|mixed
|
* @return HigherOrderTapProxy<Expectable|TestCall|TestCase>|Expectable|TestCall|TestCase|mixed
|
||||||
*/
|
*/
|
||||||
function beforeEach(Closure $closure = null): BeforeEachCall
|
function beforeEach(?Closure $closure = null): BeforeEachCall
|
||||||
{
|
{
|
||||||
$filename = Backtrace::file();
|
$filename = Backtrace::file();
|
||||||
|
|
||||||
@ -116,7 +116,7 @@ if (! function_exists('test')) {
|
|||||||
*
|
*
|
||||||
* @return Expectable|TestCall|TestCase|mixed
|
* @return Expectable|TestCall|TestCase|mixed
|
||||||
*/
|
*/
|
||||||
function test(string $description = null, Closure $closure = null): HigherOrderTapProxy|TestCall
|
function test(?string $description = null, ?Closure $closure = null): HigherOrderTapProxy|TestCall
|
||||||
{
|
{
|
||||||
if ($description === null && TestSuite::getInstance()->test instanceof \PHPUnit\Framework\TestCase) {
|
if ($description === null && TestSuite::getInstance()->test instanceof \PHPUnit\Framework\TestCase) {
|
||||||
return new HigherOrderTapProxy(TestSuite::getInstance()->test);
|
return new HigherOrderTapProxy(TestSuite::getInstance()->test);
|
||||||
@ -136,7 +136,7 @@ if (! function_exists('it')) {
|
|||||||
*
|
*
|
||||||
* @return Expectable|TestCall|TestCase|mixed
|
* @return Expectable|TestCall|TestCase|mixed
|
||||||
*/
|
*/
|
||||||
function it(string $description, Closure $closure = null): TestCall
|
function it(string $description, ?Closure $closure = null): TestCall
|
||||||
{
|
{
|
||||||
$description = sprintf('it %s', $description);
|
$description = sprintf('it %s', $description);
|
||||||
|
|
||||||
@ -171,7 +171,7 @@ if (! function_exists('afterEach')) {
|
|||||||
*
|
*
|
||||||
* @return Expectable|HigherOrderTapProxy<Expectable|TestCall|TestCase>|TestCall|mixed
|
* @return Expectable|HigherOrderTapProxy<Expectable|TestCall|TestCase>|TestCall|mixed
|
||||||
*/
|
*/
|
||||||
function afterEach(Closure $closure = null): AfterEachCall
|
function afterEach(?Closure $closure = null): AfterEachCall
|
||||||
{
|
{
|
||||||
$filename = Backtrace::file();
|
$filename = Backtrace::file();
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
declare(strict_types=1);
|
declare(strict_types=1);
|
||||||
|
|
||||||
namespace Pest\Logging\TeamCity;
|
namespace Pest\Logging;
|
||||||
|
|
||||||
use NunoMaduro\Collision\Adapters\Phpunit\State;
|
use NunoMaduro\Collision\Adapters\Phpunit\State;
|
||||||
use Pest\Exceptions\ShouldNotHappen;
|
use Pest\Exceptions\ShouldNotHappen;
|
||||||
@ -150,6 +150,14 @@ final class Converter
|
|||||||
return Str::after($name, self::PREFIX);
|
return Str::after($name, self::PREFIX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the trimmed test class name.
|
||||||
|
*/
|
||||||
|
public function getTrimmedTestClassName(TestMethod $test): string
|
||||||
|
{
|
||||||
|
return Str::after($test->className(), self::PREFIX);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the test suite location.
|
* Gets the test suite location.
|
||||||
*/
|
*/
|
||||||
384
src/Logging/JUnit/JUnitLogger.php
Normal file
384
src/Logging/JUnit/JUnitLogger.php
Normal file
@ -0,0 +1,384 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit;
|
||||||
|
|
||||||
|
use DOMDocument;
|
||||||
|
use DOMElement;
|
||||||
|
use Pest\Logging\Converter;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestErroredSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestFailedSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestFinishedSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestMarkedIncompleteSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestPreparedSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestRunnerExecutionFinishedSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestSkippedSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestSuiteFinishedSubscriber;
|
||||||
|
use Pest\Logging\JUnit\Subscriber\TestSuiteStartedSubscriber;
|
||||||
|
use PHPUnit\Event\EventFacadeIsSealedException;
|
||||||
|
use PHPUnit\Event\Facade;
|
||||||
|
use PHPUnit\Event\InvalidArgumentException;
|
||||||
|
use PHPUnit\Event\Telemetry\HRTime;
|
||||||
|
use PHPUnit\Event\Telemetry\Info;
|
||||||
|
use PHPUnit\Event\Test\Errored;
|
||||||
|
use PHPUnit\Event\Test\Failed;
|
||||||
|
use PHPUnit\Event\Test\Finished;
|
||||||
|
use PHPUnit\Event\Test\MarkedIncomplete;
|
||||||
|
use PHPUnit\Event\Test\Prepared;
|
||||||
|
use PHPUnit\Event\Test\Skipped;
|
||||||
|
use PHPUnit\Event\TestData\NoDataSetFromDataProviderException;
|
||||||
|
use PHPUnit\Event\TestSuite\Started;
|
||||||
|
use PHPUnit\Event\UnknownSubscriberTypeException;
|
||||||
|
use PHPUnit\TextUI\Output\Printer;
|
||||||
|
use PHPUnit\Util\Xml;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class JUnitLogger
|
||||||
|
{
|
||||||
|
private DOMDocument $document;
|
||||||
|
|
||||||
|
private DOMElement $root;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var DOMElement[]
|
||||||
|
*/
|
||||||
|
private array $testSuites = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @psalm-var array<int,int>
|
||||||
|
*/
|
||||||
|
private array $testSuiteTests = [0];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @psalm-var array<int,int>
|
||||||
|
*/
|
||||||
|
private array $testSuiteAssertions = [0];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @psalm-var array<int,int>
|
||||||
|
*/
|
||||||
|
private array $testSuiteErrors = [0];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @psalm-var array<int,int>
|
||||||
|
*/
|
||||||
|
private array $testSuiteFailures = [0];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @psalm-var array<int,int>
|
||||||
|
*/
|
||||||
|
private array $testSuiteSkipped = [0];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @psalm-var array<int,int|float>
|
||||||
|
*/
|
||||||
|
private array $testSuiteTimes = [0];
|
||||||
|
|
||||||
|
private int $testSuiteLevel = 0;
|
||||||
|
|
||||||
|
private ?DOMElement $currentTestCase = null;
|
||||||
|
|
||||||
|
private ?HRTime $time = null;
|
||||||
|
|
||||||
|
private bool $prepared = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws EventFacadeIsSealedException
|
||||||
|
* @throws UnknownSubscriberTypeException
|
||||||
|
*/
|
||||||
|
public function __construct(
|
||||||
|
private readonly Printer $printer,
|
||||||
|
private readonly Converter $converter,
|
||||||
|
) {
|
||||||
|
$this->registerSubscribers();
|
||||||
|
$this->createDocument();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function flush(): void
|
||||||
|
{
|
||||||
|
$this->printer->print((string) $this->document->saveXML());
|
||||||
|
|
||||||
|
$this->printer->flush();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testSuiteStarted(Started $event): void
|
||||||
|
{
|
||||||
|
$testSuite = $this->document->createElement('testsuite');
|
||||||
|
$testSuite->setAttribute('name', $this->converter->getTestSuiteName($event->testSuite()));
|
||||||
|
|
||||||
|
if ($event->testSuite()->isForTestClass()) {
|
||||||
|
$testSuite->setAttribute('file', $this->converter->getTestSuiteLocation($event->testSuite()) ?? '');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($this->testSuiteLevel > 0) {
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->appendChild($testSuite);
|
||||||
|
} else {
|
||||||
|
$this->root->appendChild($testSuite);
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->testSuiteLevel++;
|
||||||
|
$this->testSuites[$this->testSuiteLevel] = $testSuite;
|
||||||
|
$this->testSuiteTests[$this->testSuiteLevel] = 0;
|
||||||
|
$this->testSuiteAssertions[$this->testSuiteLevel] = 0;
|
||||||
|
$this->testSuiteErrors[$this->testSuiteLevel] = 0;
|
||||||
|
$this->testSuiteFailures[$this->testSuiteLevel] = 0;
|
||||||
|
$this->testSuiteSkipped[$this->testSuiteLevel] = 0;
|
||||||
|
$this->testSuiteTimes[$this->testSuiteLevel] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testSuiteFinished(): void
|
||||||
|
{
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->setAttribute(
|
||||||
|
'tests',
|
||||||
|
(string) $this->testSuiteTests[$this->testSuiteLevel],
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->setAttribute(
|
||||||
|
'assertions',
|
||||||
|
(string) $this->testSuiteAssertions[$this->testSuiteLevel],
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->setAttribute(
|
||||||
|
'errors',
|
||||||
|
(string) $this->testSuiteErrors[$this->testSuiteLevel],
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->setAttribute(
|
||||||
|
'failures',
|
||||||
|
(string) $this->testSuiteFailures[$this->testSuiteLevel],
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->setAttribute(
|
||||||
|
'skipped',
|
||||||
|
(string) $this->testSuiteSkipped[$this->testSuiteLevel],
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->setAttribute(
|
||||||
|
'time',
|
||||||
|
sprintf('%F', $this->testSuiteTimes[$this->testSuiteLevel]),
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($this->testSuiteLevel > 1) {
|
||||||
|
$this->testSuiteTests[$this->testSuiteLevel - 1] += $this->testSuiteTests[$this->testSuiteLevel];
|
||||||
|
$this->testSuiteAssertions[$this->testSuiteLevel - 1] += $this->testSuiteAssertions[$this->testSuiteLevel];
|
||||||
|
$this->testSuiteErrors[$this->testSuiteLevel - 1] += $this->testSuiteErrors[$this->testSuiteLevel];
|
||||||
|
$this->testSuiteFailures[$this->testSuiteLevel - 1] += $this->testSuiteFailures[$this->testSuiteLevel];
|
||||||
|
$this->testSuiteSkipped[$this->testSuiteLevel - 1] += $this->testSuiteSkipped[$this->testSuiteLevel];
|
||||||
|
$this->testSuiteTimes[$this->testSuiteLevel - 1] += $this->testSuiteTimes[$this->testSuiteLevel];
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->testSuiteLevel--;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
public function testPrepared(Prepared $event): void
|
||||||
|
{
|
||||||
|
$this->createTestCase($event);
|
||||||
|
$this->prepared = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
*/
|
||||||
|
public function testFinished(Finished $event): void
|
||||||
|
{
|
||||||
|
$this->handleFinish($event->telemetryInfo(), $event->numberOfAssertionsPerformed());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
public function testMarkedIncomplete(MarkedIncomplete $event): void
|
||||||
|
{
|
||||||
|
$this->handleIncompleteOrSkipped($event);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
public function testSkipped(Skipped $event): void
|
||||||
|
{
|
||||||
|
$this->handleIncompleteOrSkipped($event);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
public function testErrored(Errored $event): void
|
||||||
|
{
|
||||||
|
$this->handleFault($event, 'error');
|
||||||
|
|
||||||
|
$this->testSuiteErrors[$this->testSuiteLevel]++;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
public function testFailed(Failed $event): void
|
||||||
|
{
|
||||||
|
$this->handleFault($event, 'failure');
|
||||||
|
|
||||||
|
$this->testSuiteFailures[$this->testSuiteLevel]++;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
*/
|
||||||
|
private function handleFinish(Info $telemetryInfo, int $numberOfAssertionsPerformed): void
|
||||||
|
{
|
||||||
|
assert($this->currentTestCase instanceof \DOMElement);
|
||||||
|
assert($this->time instanceof \PHPUnit\Event\Telemetry\HRTime);
|
||||||
|
|
||||||
|
$time = $telemetryInfo->time()->duration($this->time)->asFloat();
|
||||||
|
|
||||||
|
$this->testSuiteAssertions[$this->testSuiteLevel] += $numberOfAssertionsPerformed;
|
||||||
|
|
||||||
|
$this->currentTestCase->setAttribute(
|
||||||
|
'assertions',
|
||||||
|
(string) $numberOfAssertionsPerformed,
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->currentTestCase->setAttribute(
|
||||||
|
'time',
|
||||||
|
sprintf('%F', $time),
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuites[$this->testSuiteLevel]->appendChild(
|
||||||
|
$this->currentTestCase,
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->testSuiteTests[$this->testSuiteLevel]++;
|
||||||
|
$this->testSuiteTimes[$this->testSuiteLevel] += $time;
|
||||||
|
|
||||||
|
$this->currentTestCase = null;
|
||||||
|
$this->time = null;
|
||||||
|
$this->prepared = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws EventFacadeIsSealedException
|
||||||
|
* @throws UnknownSubscriberTypeException
|
||||||
|
*/
|
||||||
|
private function registerSubscribers(): void
|
||||||
|
{
|
||||||
|
$subscribers = [
|
||||||
|
new TestSuiteStartedSubscriber($this),
|
||||||
|
new TestSuiteFinishedSubscriber($this),
|
||||||
|
new TestPreparedSubscriber($this),
|
||||||
|
new TestFinishedSubscriber($this),
|
||||||
|
new TestErroredSubscriber($this),
|
||||||
|
new TestFailedSubscriber($this),
|
||||||
|
new TestMarkedIncompleteSubscriber($this),
|
||||||
|
new TestSkippedSubscriber($this),
|
||||||
|
new TestRunnerExecutionFinishedSubscriber($this),
|
||||||
|
];
|
||||||
|
|
||||||
|
Facade::instance()->registerSubscribers(...$subscribers);
|
||||||
|
}
|
||||||
|
|
||||||
|
private function createDocument(): void
|
||||||
|
{
|
||||||
|
$this->document = new DOMDocument('1.0', 'UTF-8');
|
||||||
|
$this->document->formatOutput = true;
|
||||||
|
|
||||||
|
$this->root = $this->document->createElement('testsuites');
|
||||||
|
$this->document->appendChild($this->root);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
private function handleFault(Errored|Failed $event, string $type): void
|
||||||
|
{
|
||||||
|
if (! $this->prepared) {
|
||||||
|
$this->createTestCase($event);
|
||||||
|
}
|
||||||
|
|
||||||
|
assert($this->currentTestCase instanceof \DOMElement);
|
||||||
|
|
||||||
|
$throwable = $event->throwable();
|
||||||
|
|
||||||
|
$testName = $this->converter->getTestCaseMethodName($event->test());
|
||||||
|
$message = $this->converter->getExceptionMessage($throwable);
|
||||||
|
$details = $this->converter->getExceptionDetails($throwable);
|
||||||
|
|
||||||
|
$buffer = $testName;
|
||||||
|
$buffer .= trim(
|
||||||
|
$message.PHP_EOL.
|
||||||
|
$details,
|
||||||
|
);
|
||||||
|
|
||||||
|
$fault = $this->document->createElement(
|
||||||
|
$type,
|
||||||
|
Xml::prepareString($buffer),
|
||||||
|
);
|
||||||
|
|
||||||
|
$fault->setAttribute('type', $throwable->className());
|
||||||
|
|
||||||
|
$this->currentTestCase->appendChild($fault);
|
||||||
|
|
||||||
|
if (! $this->prepared) {
|
||||||
|
$this->handleFinish($event->telemetryInfo(), 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*/
|
||||||
|
private function handleIncompleteOrSkipped(MarkedIncomplete|Skipped $event): void
|
||||||
|
{
|
||||||
|
if (! $this->prepared) {
|
||||||
|
$this->createTestCase($event);
|
||||||
|
}
|
||||||
|
|
||||||
|
assert($this->currentTestCase instanceof \DOMElement);
|
||||||
|
|
||||||
|
$skipped = $this->document->createElement('skipped');
|
||||||
|
|
||||||
|
$this->currentTestCase->appendChild($skipped);
|
||||||
|
|
||||||
|
$this->testSuiteSkipped[$this->testSuiteLevel]++;
|
||||||
|
|
||||||
|
if (! $this->prepared) {
|
||||||
|
$this->handleFinish($event->telemetryInfo(), 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws InvalidArgumentException
|
||||||
|
* @throws NoDataSetFromDataProviderException
|
||||||
|
*
|
||||||
|
* @psalm-assert !null $this->currentTestCase
|
||||||
|
*/
|
||||||
|
private function createTestCase(Errored|Failed|MarkedIncomplete|Prepared|Skipped $event): void
|
||||||
|
{
|
||||||
|
$testCase = $this->document->createElement('testcase');
|
||||||
|
|
||||||
|
$test = $event->test();
|
||||||
|
$file = $this->converter->getTestCaseLocation($test);
|
||||||
|
|
||||||
|
$testCase->setAttribute('name', $this->converter->getTestCaseMethodName($test));
|
||||||
|
$testCase->setAttribute('file', $file);
|
||||||
|
|
||||||
|
if ($test->isTestMethod()) {
|
||||||
|
$className = $this->converter->getTrimmedTestClassName($test);
|
||||||
|
$testCase->setAttribute('class', $className);
|
||||||
|
$testCase->setAttribute('classname', str_replace('\\', '.', $className));
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->currentTestCase = $testCase;
|
||||||
|
$this->time = $event->telemetryInfo()->time();
|
||||||
|
}
|
||||||
|
}
|
||||||
28
src/Logging/JUnit/Subscriber/Subscriber.php
Normal file
28
src/Logging/JUnit/Subscriber/Subscriber.php
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use Pest\Logging\JUnit\JUnitLogger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
abstract class Subscriber
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Creates a new Subscriber instance.
|
||||||
|
*/
|
||||||
|
public function __construct(private readonly JUnitLogger $logger)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new JunitLogger instance.
|
||||||
|
*/
|
||||||
|
final protected function logger(): JUnitLogger
|
||||||
|
{
|
||||||
|
return $this->logger;
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestErroredSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestErroredSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Test\Errored;
|
||||||
|
use PHPUnit\Event\Test\ErroredSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestErroredSubscriber extends Subscriber implements ErroredSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Errored $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testErrored($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestFailedSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestFailedSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Test\Failed;
|
||||||
|
use PHPUnit\Event\Test\FailedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestFailedSubscriber extends Subscriber implements FailedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Failed $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testFailed($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestFinishedSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestFinishedSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Test\Finished;
|
||||||
|
use PHPUnit\Event\Test\FinishedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestFinishedSubscriber extends Subscriber implements FinishedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Finished $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testFinished($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Test\MarkedIncomplete;
|
||||||
|
use PHPUnit\Event\Test\MarkedIncompleteSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestMarkedIncompleteSubscriber extends Subscriber implements MarkedIncompleteSubscriber
|
||||||
|
{
|
||||||
|
public function notify(MarkedIncomplete $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testMarkedIncomplete($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestPreparedSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestPreparedSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Test\Prepared;
|
||||||
|
use PHPUnit\Event\Test\PreparedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestPreparedSubscriber extends Subscriber implements PreparedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Prepared $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testPrepared($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\TestRunner\ExecutionFinished;
|
||||||
|
use PHPUnit\Event\TestRunner\ExecutionFinishedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestRunnerExecutionFinishedSubscriber extends Subscriber implements ExecutionFinishedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(ExecutionFinished $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->flush();
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestSkippedSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestSkippedSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\Test\Skipped;
|
||||||
|
use PHPUnit\Event\Test\SkippedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestSkippedSubscriber extends Subscriber implements SkippedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Skipped $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testSkipped($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestSuiteFinishedSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestSuiteFinishedSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\TestSuite\Finished;
|
||||||
|
use PHPUnit\Event\TestSuite\FinishedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestSuiteFinishedSubscriber extends Subscriber implements FinishedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Finished $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testSuiteFinished();
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/Logging/JUnit/Subscriber/TestSuiteStartedSubscriber.php
Normal file
19
src/Logging/JUnit/Subscriber/TestSuiteStartedSubscriber.php
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Logging\JUnit\Subscriber;
|
||||||
|
|
||||||
|
use PHPUnit\Event\TestSuite\Started;
|
||||||
|
use PHPUnit\Event\TestSuite\StartedSubscriber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class TestSuiteStartedSubscriber extends Subscriber implements StartedSubscriber
|
||||||
|
{
|
||||||
|
public function notify(Started $event): void
|
||||||
|
{
|
||||||
|
$this->logger()->testSuiteStarted($event);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -63,7 +63,7 @@ final class ServiceMessage
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param int $duration in milliseconds
|
* @param int $duration in milliseconds
|
||||||
*/
|
*/
|
||||||
public static function testFinished(string $name, int $duration): self
|
public static function testFinished(string $name, int $duration): self
|
||||||
{
|
{
|
||||||
@ -106,7 +106,7 @@ final class ServiceMessage
|
|||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function testIgnored(string $name, string $message, string $details = null): self
|
public static function testIgnored(string $name, string $message, ?string $details = null): self
|
||||||
{
|
{
|
||||||
return new self('testIgnored', [
|
return new self('testIgnored', [
|
||||||
'name' => $name,
|
'name' => $name,
|
||||||
|
|||||||
@ -6,6 +6,7 @@ namespace Pest\Logging\TeamCity;
|
|||||||
|
|
||||||
use NunoMaduro\Collision\Adapters\Phpunit\Style;
|
use NunoMaduro\Collision\Adapters\Phpunit\Style;
|
||||||
use Pest\Exceptions\ShouldNotHappen;
|
use Pest\Exceptions\ShouldNotHappen;
|
||||||
|
use Pest\Logging\Converter;
|
||||||
use Pest\Logging\TeamCity\Subscriber\TestConsideredRiskySubscriber;
|
use Pest\Logging\TeamCity\Subscriber\TestConsideredRiskySubscriber;
|
||||||
use Pest\Logging\TeamCity\Subscriber\TestErroredSubscriber;
|
use Pest\Logging\TeamCity\Subscriber\TestErroredSubscriber;
|
||||||
use Pest\Logging\TeamCity\Subscriber\TestExecutionFinishedSubscriber;
|
use Pest\Logging\TeamCity\Subscriber\TestExecutionFinishedSubscriber;
|
||||||
|
|||||||
@ -314,13 +314,13 @@ final class Expectation
|
|||||||
/**
|
/**
|
||||||
* Asserts that the value contains the provided properties $names.
|
* Asserts that the value contains the provided properties $names.
|
||||||
*
|
*
|
||||||
* @param iterable<array-key, string> $names
|
* @param iterable<string, mixed>|iterable<int, string> $names
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
public function toHaveProperties(iterable $names, string $message = ''): self
|
public function toHaveProperties(iterable $names, string $message = ''): self
|
||||||
{
|
{
|
||||||
foreach ($names as $name => $value) {
|
foreach ($names as $name => $value) {
|
||||||
is_int($name) ? $this->toHaveProperty($value, message: $message) : $this->toHaveProperty($name, $value, $message);
|
is_int($name) ? $this->toHaveProperty($value, message: $message) : $this->toHaveProperty($name, $value, $message); // @phpstan-ignore-line
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
@ -844,6 +844,7 @@ final class Expectation
|
|||||||
|
|
||||||
$string = match (true) {
|
$string = match (true) {
|
||||||
is_string($this->value) => $this->value,
|
is_string($this->value) => $this->value,
|
||||||
|
is_object($this->value) && method_exists($this->value, 'toSnapshot') => $this->value->toSnapshot(),
|
||||||
is_object($this->value) && method_exists($this->value, '__toString') => $this->value->__toString(),
|
is_object($this->value) && method_exists($this->value, '__toString') => $this->value->__toString(),
|
||||||
is_object($this->value) && method_exists($this->value, 'toString') => $this->value->toString(),
|
is_object($this->value) && method_exists($this->value, 'toString') => $this->value->toString(),
|
||||||
$this->value instanceof \Illuminate\Testing\TestResponse => $this->value->getContent(), // @phpstan-ignore-line
|
$this->value instanceof \Illuminate\Testing\TestResponse => $this->value->getContent(), // @phpstan-ignore-line
|
||||||
@ -919,7 +920,7 @@ final class Expectation
|
|||||||
* @param (Closure(Throwable): mixed)|string $exception
|
* @param (Closure(Throwable): mixed)|string $exception
|
||||||
* @return self<TValue>
|
* @return self<TValue>
|
||||||
*/
|
*/
|
||||||
public function toThrow(callable|string|Throwable $exception, string $exceptionMessage = null, string $message = ''): self
|
public function toThrow(callable|string|Throwable $exception, ?string $exceptionMessage = null, string $message = ''): self
|
||||||
{
|
{
|
||||||
$callback = NullClosure::create();
|
$callback = NullClosure::create();
|
||||||
|
|
||||||
@ -967,6 +968,7 @@ final class Expectation
|
|||||||
}
|
}
|
||||||
|
|
||||||
Assert::assertInstanceOf($exception, $e, $message);
|
Assert::assertInstanceOf($exception, $e, $message);
|
||||||
|
|
||||||
$callback($e);
|
$callback($e);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
@ -1128,4 +1130,33 @@ final class Expectation
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that the value is between 2 specified values
|
||||||
|
*
|
||||||
|
* @return self<TValue>
|
||||||
|
*/
|
||||||
|
public function toBeBetween(int|float|DateTimeInterface $lowestValue, int|float|DateTimeInterface $highestValue, string $message = ''): self
|
||||||
|
{
|
||||||
|
Assert::assertGreaterThanOrEqual($lowestValue, $this->value, $message);
|
||||||
|
Assert::assertLessThanOrEqual($highestValue, $this->value, $message);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that the value is a url
|
||||||
|
*
|
||||||
|
* @return self<TValue>
|
||||||
|
*/
|
||||||
|
public function toBeUrl(string $message = ''): self
|
||||||
|
{
|
||||||
|
if ($message === '') {
|
||||||
|
$message = "Failed asserting that {$this->value} is a url.";
|
||||||
|
}
|
||||||
|
|
||||||
|
Assert::assertTrue(Str::isUrl((string) $this->value), $message);
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -35,7 +35,7 @@ final class AfterEachCall
|
|||||||
public function __construct(
|
public function __construct(
|
||||||
private readonly TestSuite $testSuite,
|
private readonly TestSuite $testSuite,
|
||||||
private readonly string $filename,
|
private readonly string $filename,
|
||||||
Closure $closure = null
|
?Closure $closure = null
|
||||||
) {
|
) {
|
||||||
$this->closure = $closure instanceof Closure ? $closure : NullClosure::create();
|
$this->closure = $closure instanceof Closure ? $closure : NullClosure::create();
|
||||||
|
|
||||||
|
|||||||
@ -40,7 +40,7 @@ final class BeforeEachCall
|
|||||||
public function __construct(
|
public function __construct(
|
||||||
public readonly TestSuite $testSuite,
|
public readonly TestSuite $testSuite,
|
||||||
private readonly string $filename,
|
private readonly string $filename,
|
||||||
Closure $closure = null
|
?Closure $closure = null
|
||||||
) {
|
) {
|
||||||
$this->closure = $closure instanceof Closure ? $closure : NullClosure::create();
|
$this->closure = $closure instanceof Closure ? $closure : NullClosure::create();
|
||||||
|
|
||||||
|
|||||||
@ -18,6 +18,7 @@ use Pest\Support\HigherOrderCallables;
|
|||||||
use Pest\Support\NullClosure;
|
use Pest\Support\NullClosure;
|
||||||
use Pest\Support\Str;
|
use Pest\Support\Str;
|
||||||
use Pest\TestSuite;
|
use Pest\TestSuite;
|
||||||
|
use PHPUnit\Framework\AssertionFailedError;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -45,8 +46,8 @@ final class TestCall
|
|||||||
public function __construct(
|
public function __construct(
|
||||||
private readonly TestSuite $testSuite,
|
private readonly TestSuite $testSuite,
|
||||||
private readonly string $filename,
|
private readonly string $filename,
|
||||||
string $description = null,
|
?string $description = null,
|
||||||
Closure $closure = null
|
?Closure $closure = null
|
||||||
) {
|
) {
|
||||||
$this->testCaseMethod = new TestCaseMethodFactory($filename, $description, $closure);
|
$this->testCaseMethod = new TestCaseMethodFactory($filename, $description, $closure);
|
||||||
|
|
||||||
@ -57,10 +58,18 @@ final class TestCall
|
|||||||
$this->testSuite->beforeEach->get($this->filename)[0]($this);
|
$this->testSuite->beforeEach->get($this->filename)[0]($this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that the test fails with the given message.
|
||||||
|
*/
|
||||||
|
public function fails(?string $message = null): self
|
||||||
|
{
|
||||||
|
return $this->throws(AssertionFailedError::class, $message);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Asserts that the test throws the given `$exceptionClass` when called.
|
* Asserts that the test throws the given `$exceptionClass` when called.
|
||||||
*/
|
*/
|
||||||
public function throws(string|int $exception, string $exceptionMessage = null, int $exceptionCode = null): self
|
public function throws(string|int $exception, ?string $exceptionMessage = null, ?int $exceptionCode = null): self
|
||||||
{
|
{
|
||||||
if (is_int($exception)) {
|
if (is_int($exception)) {
|
||||||
$exceptionCode = $exception;
|
$exceptionCode = $exception;
|
||||||
@ -92,7 +101,7 @@ final class TestCall
|
|||||||
*
|
*
|
||||||
* @param (callable(): bool)|bool $condition
|
* @param (callable(): bool)|bool $condition
|
||||||
*/
|
*/
|
||||||
public function throwsIf(callable|bool $condition, string|int $exception, string $exceptionMessage = null, int $exceptionCode = null): self
|
public function throwsIf(callable|bool $condition, string|int $exception, ?string $exceptionMessage = null, ?int $exceptionCode = null): self
|
||||||
{
|
{
|
||||||
$condition = is_callable($condition)
|
$condition = is_callable($condition)
|
||||||
? $condition
|
? $condition
|
||||||
@ -105,6 +114,24 @@ final class TestCall
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that the test throws the given `$exceptionClass` when called if the given condition is false.
|
||||||
|
*
|
||||||
|
* @param (callable(): bool)|bool $condition
|
||||||
|
*/
|
||||||
|
public function throwsUnless(callable|bool $condition, string|int $exception, ?string $exceptionMessage = null, ?int $exceptionCode = null): self
|
||||||
|
{
|
||||||
|
$condition = is_callable($condition)
|
||||||
|
? $condition
|
||||||
|
: static fn (): bool => $condition;
|
||||||
|
|
||||||
|
if (! $condition()) {
|
||||||
|
return $this->throws($exception, $exceptionMessage, $exceptionCode);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Runs the current test multiple times with
|
* Runs the current test multiple times with
|
||||||
* each item of the given `iterable`.
|
* each item of the given `iterable`.
|
||||||
@ -181,12 +208,37 @@ final class TestCall
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skips the current test on the given PHP version.
|
||||||
|
*/
|
||||||
|
public function skipOnPhp(string $version): self
|
||||||
|
{
|
||||||
|
if (mb_strlen($version) < 2) {
|
||||||
|
throw new InvalidArgumentException('The version must start with [<] or [>].');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (str_starts_with($version, '>=') || str_starts_with($version, '<=')) {
|
||||||
|
$operator = substr($version, 0, 2);
|
||||||
|
$version = substr($version, 2);
|
||||||
|
} elseif (str_starts_with($version, '>') || str_starts_with($version, '<')) {
|
||||||
|
$operator = $version[0];
|
||||||
|
$version = substr($version, 1);
|
||||||
|
// ensure starts with number:
|
||||||
|
} elseif (is_numeric($version[0])) {
|
||||||
|
$operator = '==';
|
||||||
|
} else {
|
||||||
|
throw new InvalidArgumentException('The version must start with [<, >, <=, >=] or a number.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->skip(version_compare(PHP_VERSION, $version, $operator), sprintf('This test is skipped on PHP [%s%s].', $operator, $version));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skips the current test if the given test is running on Windows.
|
* Skips the current test if the given test is running on Windows.
|
||||||
*/
|
*/
|
||||||
public function skipOnWindows(): self
|
public function skipOnWindows(): self
|
||||||
{
|
{
|
||||||
return $this->skipOn('Windows', 'This test is skipped on [Windows].');
|
return $this->skipOnOs('Windows', 'This test is skipped on [Windows].');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -194,7 +246,7 @@ final class TestCall
|
|||||||
*/
|
*/
|
||||||
public function skipOnMac(): self
|
public function skipOnMac(): self
|
||||||
{
|
{
|
||||||
return $this->skipOn('Darwin', 'This test is skipped on [Mac].');
|
return $this->skipOnOs('Darwin', 'This test is skipped on [Mac].');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -202,19 +254,43 @@ final class TestCall
|
|||||||
*/
|
*/
|
||||||
public function skipOnLinux(): self
|
public function skipOnLinux(): self
|
||||||
{
|
{
|
||||||
return $this->skipOn('Linux', 'This test is skipped on [Linux].');
|
return $this->skipOnOs('Linux', 'This test is skipped on [Linux].');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skips the current test if the given test is running on the given operating systems.
|
* Skips the current test if the given test is running on the given operating systems.
|
||||||
*/
|
*/
|
||||||
private function skipOn(string $osFamily, string $message): self
|
private function skipOnOs(string $osFamily, string $message): self
|
||||||
{
|
{
|
||||||
return $osFamily === PHP_OS_FAMILY
|
return $osFamily === PHP_OS_FAMILY
|
||||||
? $this->skip($message)
|
? $this->skip($message)
|
||||||
: $this;
|
: $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skips the current test unless the given test is running on Windows.
|
||||||
|
*/
|
||||||
|
public function onlyOnWindows(): self
|
||||||
|
{
|
||||||
|
return $this->skipOnMac()->skipOnLinux();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skips the current test unless the given test is running on Mac.
|
||||||
|
*/
|
||||||
|
public function onlyOnMac(): self
|
||||||
|
{
|
||||||
|
return $this->skipOnWindows()->skipOnLinux();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Skips the current test unless the given test is running on Linux.
|
||||||
|
*/
|
||||||
|
public function onlyOnLinux(): self
|
||||||
|
{
|
||||||
|
return $this->skipOnWindows()->skipOnMac();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Repeats the current test the given number of times.
|
* Repeats the current test the given number of times.
|
||||||
*/
|
*/
|
||||||
@ -333,7 +409,7 @@ final class TestCall
|
|||||||
*
|
*
|
||||||
* @param array<int, mixed>|null $arguments
|
* @param array<int, mixed>|null $arguments
|
||||||
*/
|
*/
|
||||||
private function addChain(string $file, int $line, string $name, array $arguments = null): self
|
private function addChain(string $file, int $line, string $name, ?array $arguments = null): self
|
||||||
{
|
{
|
||||||
$exporter = Exporter::default();
|
$exporter = Exporter::default();
|
||||||
|
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '2.19.0';
|
return '2.32.0';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -30,10 +30,11 @@ final class Cache implements HandlesArguments
|
|||||||
*/
|
*/
|
||||||
public function handleArguments(array $arguments): array
|
public function handleArguments(array $arguments): array
|
||||||
{
|
{
|
||||||
$arguments = $this->pushArgument(
|
if (! $this->hasArgument('--cache-directory', $arguments)) {
|
||||||
sprintf('--cache-directory=%s', realpath(self::TEMPORARY_FOLDER)),
|
$arguments = $this->pushArgument('--cache-directory', $arguments);
|
||||||
$arguments
|
|
||||||
);
|
$arguments = $this->pushArgument((string) realpath(self::TEMPORARY_FOLDER), $arguments);
|
||||||
|
}
|
||||||
|
|
||||||
if (! $this->hasArgument('--parallel', $arguments)) {
|
if (! $this->hasArgument('--parallel', $arguments)) {
|
||||||
return $this->pushArgument('--cache-result', $arguments);
|
return $this->pushArgument('--cache-result', $arguments);
|
||||||
|
|||||||
@ -16,7 +16,17 @@ trait HandleArguments
|
|||||||
*/
|
*/
|
||||||
public function hasArgument(string $argument, array $arguments): bool
|
public function hasArgument(string $argument, array $arguments): bool
|
||||||
{
|
{
|
||||||
return in_array($argument, $arguments, true);
|
foreach ($arguments as $arg) {
|
||||||
|
if ($arg === $argument) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (str_starts_with($arg, "$argument=")) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -45,7 +45,7 @@ final class Environment implements HandlesArguments
|
|||||||
/**
|
/**
|
||||||
* Gets the environment name.
|
* Gets the environment name.
|
||||||
*/
|
*/
|
||||||
public static function name(string $name = null): string
|
public static function name(?string $name = null): string
|
||||||
{
|
{
|
||||||
if (is_string($name)) {
|
if (is_string($name)) {
|
||||||
self::$name = $name;
|
self::$name = $name;
|
||||||
|
|||||||
44
src/Plugins/JUnit.php
Normal file
44
src/Plugins/JUnit.php
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Plugins;
|
||||||
|
|
||||||
|
use Pest\Contracts\Plugins\HandlesArguments;
|
||||||
|
use Pest\Plugins\Concerns\HandleArguments;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class JUnit implements HandlesArguments
|
||||||
|
{
|
||||||
|
use HandleArguments;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the arguments, adding the cache directory and the cache result arguments.
|
||||||
|
*/
|
||||||
|
public function handleArguments(array $arguments): array
|
||||||
|
{
|
||||||
|
if (! $this->hasArgument('--log-junit', $arguments)) {
|
||||||
|
return $arguments;
|
||||||
|
}
|
||||||
|
|
||||||
|
$logUnitArgument = null;
|
||||||
|
|
||||||
|
$arguments = array_filter($arguments, function (string $argument) use (&$logUnitArgument): bool {
|
||||||
|
if (str_starts_with($argument, '--log-junit')) {
|
||||||
|
$logUnitArgument = $argument;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
assert(is_string($logUnitArgument));
|
||||||
|
|
||||||
|
$arguments[] = $logUnitArgument;
|
||||||
|
|
||||||
|
return array_values($arguments);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -34,7 +34,7 @@ final class Parallel implements HandlesArguments
|
|||||||
/**
|
/**
|
||||||
* @var string[]
|
* @var string[]
|
||||||
*/
|
*/
|
||||||
private const UNSUPPORTED_ARGUMENTS = ['--todos', '--retry'];
|
private const UNSUPPORTED_ARGUMENTS = ['--todo', '--todos', '--retry'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the given command line arguments indicate that the test suite should be run in parallel.
|
* Whether the given command line arguments indicate that the test suite should be run in parallel.
|
||||||
|
|||||||
@ -254,11 +254,11 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
|
|
||||||
private function destroyWorker(int $token): void
|
private function destroyWorker(int $token): void
|
||||||
{
|
{
|
||||||
// Mutation Testing tells us that the following `unset()` already destroys
|
|
||||||
// the `WrapperWorker`, which destroys the Symfony's `Process`, which
|
|
||||||
// automatically calls `Process::stop` within `Process::__destruct()`.
|
|
||||||
// But we prefer to have an explicit stops.
|
|
||||||
$this->workers[$token]->stop();
|
$this->workers[$token]->stop();
|
||||||
|
// We need to wait for ApplicationForWrapperWorker::end to end
|
||||||
|
while ($this->workers[$token]->isRunning()) {
|
||||||
|
usleep(self::CYCLE_SLEEP);
|
||||||
|
}
|
||||||
|
|
||||||
unset($this->workers[$token]);
|
unset($this->workers[$token]);
|
||||||
}
|
}
|
||||||
@ -297,6 +297,7 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
array_merge_recursive($testResultSum->phpDeprecations(), $testResult->phpDeprecations()),
|
array_merge_recursive($testResultSum->phpDeprecations(), $testResult->phpDeprecations()),
|
||||||
array_merge_recursive($testResultSum->phpNotices(), $testResult->phpNotices()),
|
array_merge_recursive($testResultSum->phpNotices(), $testResult->phpNotices()),
|
||||||
array_merge_recursive($testResultSum->phpWarnings(), $testResult->phpWarnings()),
|
array_merge_recursive($testResultSum->phpWarnings(), $testResult->phpWarnings()),
|
||||||
|
$testResultSum->numberOfIssuesIgnoredByBaseline() + $testResult->numberOfIssuesIgnoredByBaseline(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -325,6 +326,8 @@ final class WrapperRunner implements RunnerInterface
|
|||||||
$testResultSum->phpDeprecations(),
|
$testResultSum->phpDeprecations(),
|
||||||
$testResultSum->phpNotices(),
|
$testResultSum->phpNotices(),
|
||||||
$testResultSum->phpWarnings(),
|
$testResultSum->phpWarnings(),
|
||||||
|
$testResultSum->numberOfIssuesIgnoredByBaseline(),
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->printer->printResults(
|
$this->printer->printResults(
|
||||||
|
|||||||
@ -30,12 +30,12 @@ final class TestRepository
|
|||||||
private array $uses = [];
|
private array $uses = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array<int, TestCaseFilter>
|
* @var array<int, TestCaseFilter>
|
||||||
*/
|
*/
|
||||||
private array $testCaseFilters = [];
|
private array $testCaseFilters = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array<int, TestCaseMethodFilter>
|
* @var array<int, TestCaseMethodFilter>
|
||||||
*/
|
*/
|
||||||
private array $testCaseMethodFilters = [];
|
private array $testCaseMethodFilters = [];
|
||||||
|
|
||||||
|
|||||||
@ -54,8 +54,8 @@ final class Result
|
|||||||
$returnCode = self::FAILURE_EXIT;
|
$returnCode = self::FAILURE_EXIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
$warnings = $result->numberOfTestsWithTestTriggeredPhpunitWarningEvents() +
|
$warnings = $result->numberOfTestsWithTestTriggeredPhpunitWarningEvents()
|
||||||
+count($result->warnings())
|
+ count($result->warnings())
|
||||||
+ count($result->phpWarnings());
|
+ count($result->phpWarnings());
|
||||||
|
|
||||||
if ($configuration->failOnWarning() && $warnings > 0) {
|
if ($configuration->failOnWarning() && $warnings > 0) {
|
||||||
|
|||||||
48
src/Subscribers/EnsureJunitEnabled.php
Normal file
48
src/Subscribers/EnsureJunitEnabled.php
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Pest\Subscribers;
|
||||||
|
|
||||||
|
use Pest\Logging\Converter;
|
||||||
|
use Pest\Logging\JUnit\JUnitLogger;
|
||||||
|
use Pest\Support\Container;
|
||||||
|
use Pest\TestSuite;
|
||||||
|
use PHPUnit\Event\TestRunner\Configured;
|
||||||
|
use PHPUnit\Event\TestRunner\ConfiguredSubscriber;
|
||||||
|
use PHPUnit\TextUI\Configuration\Configuration;
|
||||||
|
use PHPUnit\TextUI\Output\DefaultPrinter;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
|
final class EnsureJunitEnabled implements ConfiguredSubscriber
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Creates a new Configured Subscriber instance.
|
||||||
|
*/
|
||||||
|
public function __construct(
|
||||||
|
private readonly InputInterface $input,
|
||||||
|
private readonly TestSuite $testSuite,
|
||||||
|
) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Runs the subscriber.
|
||||||
|
*/
|
||||||
|
public function notify(Configured $event): void
|
||||||
|
{
|
||||||
|
if (! $this->input->hasParameterOption('--log-junit')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$configuration = Container::getInstance()->get(Configuration::class);
|
||||||
|
assert($configuration instanceof Configuration);
|
||||||
|
|
||||||
|
new JUnitLogger(
|
||||||
|
DefaultPrinter::from($configuration->logfileJunit()),
|
||||||
|
new Converter($this->testSuite->rootPath),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -4,7 +4,7 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Pest\Subscribers;
|
namespace Pest\Subscribers;
|
||||||
|
|
||||||
use Pest\Logging\TeamCity\Converter;
|
use Pest\Logging\Converter;
|
||||||
use Pest\Logging\TeamCity\TeamCityLogger;
|
use Pest\Logging\TeamCity\TeamCityLogger;
|
||||||
use Pest\TestSuite;
|
use Pest\TestSuite;
|
||||||
use PHPUnit\Event\TestRunner\Configured;
|
use PHPUnit\Event\TestRunner\Configured;
|
||||||
|
|||||||
@ -41,7 +41,7 @@ final class Exporter
|
|||||||
*
|
*
|
||||||
* @param array<int|string, mixed> $data
|
* @param array<int|string, mixed> $data
|
||||||
*/
|
*/
|
||||||
public function shortenedRecursiveExport(array &$data, Context $context = null): string
|
public function shortenedRecursiveExport(array &$data, ?Context $context = null): string
|
||||||
{
|
{
|
||||||
$result = [];
|
$result = [];
|
||||||
$array = $data;
|
$array = $data;
|
||||||
|
|||||||
@ -58,7 +58,7 @@ final class HigherOrderMessageCollection
|
|||||||
/**
|
/**
|
||||||
* Count the number of messages with the given name.
|
* Count the number of messages with the given name.
|
||||||
*
|
*
|
||||||
* @param string $name A higher order message name (usually a method name)
|
* @param string $name A higher order message name (usually a method name)
|
||||||
*/
|
*/
|
||||||
public function count(string $name): int
|
public function count(string $name): int
|
||||||
{
|
{
|
||||||
|
|||||||
@ -190,7 +190,7 @@ final class Reflection
|
|||||||
}
|
}
|
||||||
|
|
||||||
$arguments[$parameter->getName()] = implode('|', array_map(
|
$arguments[$parameter->getName()] = implode('|', array_map(
|
||||||
static fn (ReflectionNamedType $type): string => $type->getName(),
|
static fn (ReflectionNamedType $type): string => $type->getName(), // @phpstan-ignore-line
|
||||||
($types instanceof ReflectionNamedType)
|
($types instanceof ReflectionNamedType)
|
||||||
? [$types] // NOTE: normalize as list of to handle unions
|
? [$types] // NOTE: normalize as list of to handle unions
|
||||||
: $types->getTypes(),
|
: $types->getTypes(),
|
||||||
|
|||||||
@ -24,7 +24,7 @@ final class Str
|
|||||||
* Create a (unsecure & non-cryptographically safe) random alpha-numeric
|
* Create a (unsecure & non-cryptographically safe) random alpha-numeric
|
||||||
* string value.
|
* string value.
|
||||||
*
|
*
|
||||||
* @param int $length the length of the resulting randomized string
|
* @param int $length the length of the resulting randomized string
|
||||||
*
|
*
|
||||||
* @see https://github.com/laravel/framework/blob/4.2/src/Illuminate/Support/Str.php#L240-L242
|
* @see https://github.com/laravel/framework/blob/4.2/src/Illuminate/Support/Str.php#L240-L242
|
||||||
*/
|
*/
|
||||||
@ -108,4 +108,12 @@ final class Str
|
|||||||
{
|
{
|
||||||
return sprintf('`%s` → %s', $describeDescription, $testDescription);
|
return sprintf('`%s` → %s', $describeDescription, $testDescription);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine if a given value is a valid URL.
|
||||||
|
*/
|
||||||
|
public static function isUrl(string $value): bool
|
||||||
|
{
|
||||||
|
return (bool) filter_var($value, FILTER_VALIDATE_URL);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -87,8 +87,8 @@ final class TestSuite
|
|||||||
* Returns the current instance of the test suite.
|
* Returns the current instance of the test suite.
|
||||||
*/
|
*/
|
||||||
public static function getInstance(
|
public static function getInstance(
|
||||||
string $rootPath = null,
|
?string $rootPath = null,
|
||||||
string $testPath = null,
|
?string $testPath = null,
|
||||||
): TestSuite {
|
): TestSuite {
|
||||||
if (is_string($rootPath) && is_string($testPath)) {
|
if (is_string($rootPath) && is_string($testPath)) {
|
||||||
self::$instance = new TestSuite($rootPath, $testPath);
|
self::$instance = new TestSuite($rootPath, $testPath);
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"key": " <div class=\"container\">\n <div class=\"row\">\n <div class=\"col-md-12\">\n <h1>Snapshot<\/h1>\n <\/div>\n <\/div>\n <\/div>"
|
||||||
|
}
|
||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.19.0.
|
Pest Testing Framework 2.32.0.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
@ -14,6 +14,9 @@
|
|||||||
--cache-directory [dir] ............................ Specify cache directory
|
--cache-directory [dir] ............................ Specify cache directory
|
||||||
--generate-configuration Generate configuration file with suggested settings
|
--generate-configuration Generate configuration file with suggested settings
|
||||||
--migrate-configuration ....... Migrate configuration file to current format
|
--migrate-configuration ....... Migrate configuration file to current format
|
||||||
|
--generate-baseline [file] .................... Generate baseline for issues
|
||||||
|
--use-baseline [file] ........................ Use baseline to ignore issues
|
||||||
|
--ignore-baseline ..................... Do not use baseline to ignore issues
|
||||||
|
|
||||||
SELECTION OPTIONS:
|
SELECTION OPTIONS:
|
||||||
--bail ........................... Stop execution upon first not-passed test
|
--bail ........................... Stop execution upon first not-passed test
|
||||||
@ -81,6 +84,7 @@
|
|||||||
--reverse-list .............................. Print defects in reverse order
|
--reverse-list .............................. Print defects in reverse order
|
||||||
--teamcity . Replace default progress and result output with TeamCity format
|
--teamcity . Replace default progress and result output with TeamCity format
|
||||||
--testdox ................ Replace default result output with TestDox format
|
--testdox ................ Replace default result output with TestDox format
|
||||||
|
--debug Replace default progress and result output with debugging information
|
||||||
--compact ................ Replace default result output with Compact format
|
--compact ................ Replace default result output with Compact format
|
||||||
|
|
||||||
LOGGING OPTIONS:
|
LOGGING OPTIONS:
|
||||||
@ -89,7 +93,7 @@
|
|||||||
--testdox-html [file] .. Write test results in TestDox format (HTML) to file
|
--testdox-html [file] .. Write test results in TestDox format (HTML) to file
|
||||||
--testdox-text [file] Write test results in TestDox format (plain text) to file
|
--testdox-text [file] Write test results in TestDox format (plain text) to file
|
||||||
--log-events-text [file] ............... Stream events as plain text to file
|
--log-events-text [file] ............... Stream events as plain text to file
|
||||||
--log-events-verbose-text [file] Stream events as plain text (with telemetry information) to file
|
--log-events-verbose-text [file] Stream events as plain text with extended information to file
|
||||||
--no-logging ....... Ignore logging configured in the XML configuration file
|
--no-logging ....... Ignore logging configured in the XML configuration file
|
||||||
|
|
||||||
CODE COVERAGE OPTIONS:
|
CODE COVERAGE OPTIONS:
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 2.19.0.
|
Pest Testing Framework 2.32.0.
|
||||||
|
|
||||||
|
|||||||
@ -215,6 +215,14 @@
|
|||||||
✓ it can just define the code if given condition is true
|
✓ it can just define the code if given condition is true
|
||||||
✓ it can just define the message if given condition is 1
|
✓ it can just define the message if given condition is 1
|
||||||
✓ it can just define the code if given condition is 1
|
✓ it can just define the code if given condition is 1
|
||||||
|
✓ it not catch exceptions if given condition is true
|
||||||
|
✓ it catch exceptions if given condition is false
|
||||||
|
✓ it catch exceptions and messages if given condition is false
|
||||||
|
✓ it catch exceptions, messages and code if given condition is false
|
||||||
|
✓ it can just define the message if given condition is false
|
||||||
|
✓ it can just define the code if given condition is false
|
||||||
|
✓ it can just define the message if given condition is 0
|
||||||
|
✓ it can just define the code if given condition is 0
|
||||||
|
|
||||||
PASS Tests\Features\Expect\HigherOrder\methods
|
PASS Tests\Features\Expect\HigherOrder\methods
|
||||||
✓ it can access methods
|
✓ it can access methods
|
||||||
@ -332,6 +340,18 @@
|
|||||||
✓ pass
|
✓ pass
|
||||||
✓ failures
|
✓ failures
|
||||||
✓ failures with custom message
|
✓ failures with custom message
|
||||||
|
✓ not failures
|
||||||
|
|
||||||
|
PASS Tests\Features\Expect\toBeBetween
|
||||||
|
✓ passes with int
|
||||||
|
✓ passes with float
|
||||||
|
✓ passes with float and int
|
||||||
|
✓ passes with DateTime
|
||||||
|
✓ failure with int
|
||||||
|
✓ failure with float
|
||||||
|
✓ failure with float and int
|
||||||
|
✓ failure with DateTime
|
||||||
|
✓ failures with custom message
|
||||||
✓ not failures
|
✓ not failures
|
||||||
|
|
||||||
PASS Tests\Features\Expect\toBeBool
|
PASS Tests\Features\Expect\toBeBool
|
||||||
@ -578,6 +598,13 @@
|
|||||||
✓ pass
|
✓ pass
|
||||||
✓ failures
|
✓ failures
|
||||||
✓ failures with custom message
|
✓ failures with custom message
|
||||||
|
✓ not failures
|
||||||
|
|
||||||
|
PASS Tests\Features\Expect\toBeUrl
|
||||||
|
✓ pass
|
||||||
|
✓ failures
|
||||||
|
✓ failures with custom message
|
||||||
|
✓ failures with default message
|
||||||
✓ not failures
|
✓ not failures
|
||||||
|
|
||||||
PASS Tests\Features\Expect\toBeUuid
|
PASS Tests\Features\Expect\toBeUuid
|
||||||
@ -809,6 +836,7 @@
|
|||||||
✓ within describe → pass with dataset with ('my-datas-set-value')
|
✓ within describe → pass with dataset with ('my-datas-set-value')
|
||||||
✓ pass with toArray
|
✓ pass with toArray
|
||||||
✓ pass with array
|
✓ pass with array
|
||||||
|
✓ pass with toSnapshot
|
||||||
✓ failures
|
✓ failures
|
||||||
✓ failures with custom message
|
✓ failures with custom message
|
||||||
✓ not failures
|
✓ not failures
|
||||||
@ -870,6 +898,14 @@
|
|||||||
✓ it skips with falsy closure condition
|
✓ it skips with falsy closure condition
|
||||||
✓ it can be used in higher order tests
|
✓ it can be used in higher order tests
|
||||||
|
|
||||||
|
PASS Tests\Features\Fail
|
||||||
|
✓ it may fail
|
||||||
|
✓ it may fail with the given message
|
||||||
|
|
||||||
|
PASS Tests\Features\Fails
|
||||||
|
✓ it may fail
|
||||||
|
✓ it may fail with the given message
|
||||||
|
|
||||||
WARN Tests\Features\Helpers
|
WARN Tests\Features\Helpers
|
||||||
✓ it can set/get properties on $this
|
✓ it can set/get properties on $this
|
||||||
! it gets null if property do not exist → Undefined property Tests\Features\Helpers::$wqdwqdqw
|
! it gets null if property do not exist → Undefined property Tests\Features\Helpers::$wqdwqdqw
|
||||||
@ -1057,6 +1093,11 @@
|
|||||||
- it can use something in the test case as a condition → This test was skipped
|
- it can use something in the test case as a condition → This test was skipped
|
||||||
- it can user higher order callables and skip
|
- it can user higher order callables and skip
|
||||||
|
|
||||||
|
WARN Tests\Features\SkipOnPhp
|
||||||
|
✓ it can run on php version
|
||||||
|
✓ it can run on specific php version
|
||||||
|
- it can skip on php versions depending on constraint → This test is skipped on PHP [>=7.4.0].
|
||||||
|
|
||||||
PASS Tests\Features\Test
|
PASS Tests\Features\Test
|
||||||
✓ a test
|
✓ a test
|
||||||
✓ higher order message test
|
✓ higher order message test
|
||||||
@ -1093,17 +1134,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
|
||||||
|
|
||||||
@ -1175,6 +1208,7 @@
|
|||||||
✓ it show the correct description for mixed named and not-named datasets
|
✓ it show the correct description for mixed named and not-named datasets
|
||||||
✓ it shows the correct description for long texts with newlines
|
✓ it shows the correct description for long texts with newlines
|
||||||
✓ it shows the correct description for arrays with many elements
|
✓ it shows the correct description for arrays with many elements
|
||||||
|
✓ it shows the correct description of datasets with html
|
||||||
|
|
||||||
PASS Tests\Unit\Expectations\OppositeExpectation
|
PASS Tests\Unit\Expectations\OppositeExpectation
|
||||||
✓ it throw expectation failed exception with string argument
|
✓ it throw expectation failed exception with string argument
|
||||||
@ -1183,6 +1217,14 @@
|
|||||||
PASS Tests\Unit\Overrides\ThrowableBuilder
|
PASS Tests\Unit\Overrides\ThrowableBuilder
|
||||||
✓ collision editor can be added to the stack trace
|
✓ collision editor can be added to the stack trace
|
||||||
|
|
||||||
|
PASS Tests\Unit\Plugins\Concerns\HandleArguments
|
||||||
|
✓ method hasArgument with ('--long-argument', true)
|
||||||
|
✓ method hasArgument with ('-a', true)
|
||||||
|
✓ method hasArgument with ('--with-equal-sign', true)
|
||||||
|
✓ method hasArgument with ('someValue', true)
|
||||||
|
✓ method hasArgument with ('--a', false)
|
||||||
|
✓ method hasArgument with ('--undefined-argument', false)
|
||||||
|
|
||||||
PASS Tests\Unit\Plugins\Environment
|
PASS Tests\Unit\Plugins\Environment
|
||||||
✓ environment is set to CI when --ci option is used
|
✓ environment is set to CI when --ci option is used
|
||||||
✓ environment is set to Local when --ci option is not used
|
✓ environment is set to Local when --ci option is not used
|
||||||
@ -1327,10 +1369,12 @@
|
|||||||
- visual snapshot of team city with ('SuccessOnly.php')
|
- visual snapshot of team city with ('SuccessOnly.php')
|
||||||
|
|
||||||
PASS Tests\Visual\Todo
|
PASS Tests\Visual\Todo
|
||||||
|
✓ todos
|
||||||
|
✓ todos in parallel
|
||||||
✓ todo
|
✓ todo
|
||||||
✓ todo in parallel
|
✓ todo in parallel
|
||||||
|
|
||||||
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, 19 skipped, 943 passed (2224 assertions)
|
Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 20 skipped, 978 passed (2304 assertions)
|
||||||
31
tests/.snapshots/todos.txt
Normal file
31
tests/.snapshots/todos.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
TODO Tests\Features\BeforeEachProxiesToTestCallWithTodo - 4 todos
|
||||||
|
↓ is marked as todo 1
|
||||||
|
↓ is marked as todo 2
|
||||||
|
↓ is marked as todo 3
|
||||||
|
↓ shouldBeMarkedAsTodo
|
||||||
|
|
||||||
|
TODO Tests\Features\DatasetsTests - 1 todo
|
||||||
|
↓ forbids to define tests in Datasets dirs and Datasets.php files
|
||||||
|
|
||||||
|
TODO Tests\Features\Describe - 5 todos
|
||||||
|
↓ todo
|
||||||
|
↓ todo on hook → should not fail
|
||||||
|
↓ todo on hook → should run
|
||||||
|
↓ todo on describe → should not fail
|
||||||
|
↓ todo on describe → should run
|
||||||
|
|
||||||
|
TODO Tests\Features\Todo - 3 todos
|
||||||
|
↓ something todo later
|
||||||
|
↓ something todo later chained
|
||||||
|
↓ something todo later chained and with function body
|
||||||
|
|
||||||
|
PASS Tests\CustomTestCase\ChildTest
|
||||||
|
✓ override method
|
||||||
|
|
||||||
|
PASS Tests\CustomTestCase\ExecutedTest
|
||||||
|
✓ that gets executed
|
||||||
|
|
||||||
|
PASS Tests\CustomTestCase\ParentTest
|
||||||
|
✓ override method
|
||||||
|
|
||||||
|
Tests: 13 todos, 3 passed (3 assertions)
|
||||||
@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
use Pest\Expectation;
|
use Pest\Expectation;
|
||||||
|
|
||||||
test('globals')
|
arch('globals')
|
||||||
->expect(['dd', 'dump', 'ray', 'die', 'var_dump', 'sleep'])
|
->expect(['dd', 'dump', 'ray', 'die', 'var_dump', 'sleep'])
|
||||||
->not->toBeUsed()
|
->not->toBeUsed()
|
||||||
->ignoring(Expectation::class);
|
->ignoring(Expectation::class);
|
||||||
|
|
||||||
test('dependencies')
|
arch('dependencies')
|
||||||
->expect('Pest')
|
->expect('Pest')
|
||||||
->toOnlyUse([
|
->toOnlyUse([
|
||||||
'dd',
|
'dd',
|
||||||
@ -24,7 +24,7 @@ test('dependencies')
|
|||||||
'Symfony\Component\Process',
|
'Symfony\Component\Process',
|
||||||
])->ignoring(['Composer', 'PHPUnit', 'SebastianBergmann']);
|
])->ignoring(['Composer', 'PHPUnit', 'SebastianBergmann']);
|
||||||
|
|
||||||
test('contracts')
|
arch('contracts')
|
||||||
->expect('Pest\Contracts')
|
->expect('Pest\Contracts')
|
||||||
->toOnlyUse([
|
->toOnlyUse([
|
||||||
'NunoMaduro\Collision\Contracts',
|
'NunoMaduro\Collision\Contracts',
|
||||||
|
|||||||
@ -59,3 +59,37 @@ it('can just define the message if given condition is 1', function () {
|
|||||||
it('can just define the code if given condition is 1', function () {
|
it('can just define the code if given condition is 1', function () {
|
||||||
throw new Exception('Something bad happened', 1);
|
throw new Exception('Something bad happened', 1);
|
||||||
})->throwsIf(1, 1);
|
})->throwsIf(1, 1);
|
||||||
|
|
||||||
|
it('not catch exceptions if given condition is true', function () {
|
||||||
|
$this->assertTrue(true);
|
||||||
|
})->throwsUnless(true, Exception::class);
|
||||||
|
|
||||||
|
it('catch exceptions if given condition is false', function () {
|
||||||
|
throw new Exception('Something bad happened');
|
||||||
|
})->throwsUnless(function () {
|
||||||
|
return false;
|
||||||
|
}, Exception::class);
|
||||||
|
|
||||||
|
it('catch exceptions and messages if given condition is false', function () {
|
||||||
|
throw new Exception('Something bad happened');
|
||||||
|
})->throwsUnless(false, Exception::class, 'Something bad happened');
|
||||||
|
|
||||||
|
it('catch exceptions, messages and code if given condition is false', function () {
|
||||||
|
throw new Exception('Something bad happened', 1);
|
||||||
|
})->throwsUnless(false, Exception::class, 'Something bad happened', 1);
|
||||||
|
|
||||||
|
it('can just define the message if given condition is false', function () {
|
||||||
|
throw new Exception('Something bad happened');
|
||||||
|
})->throwsUnless(false, 'Something bad happened');
|
||||||
|
|
||||||
|
it('can just define the code if given condition is false', function () {
|
||||||
|
throw new Exception('Something bad happened', 1);
|
||||||
|
})->throwsUnless(false, 1);
|
||||||
|
|
||||||
|
it('can just define the message if given condition is 0', function () {
|
||||||
|
throw new Exception('Something bad happened');
|
||||||
|
})->throwsUnless(0, 'Something bad happened');
|
||||||
|
|
||||||
|
it('can just define the code if given condition is 0', function () {
|
||||||
|
throw new Exception('Something bad happened', 1);
|
||||||
|
})->throwsUnless(0, 1);
|
||||||
|
|||||||
43
tests/Features/Expect/toBeBetween.php
Normal file
43
tests/Features/Expect/toBeBetween.php
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\ExpectationFailedException;
|
||||||
|
|
||||||
|
test('passes with int', function () {
|
||||||
|
expect(2)->toBeBetween(1, 3);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('passes with float', function () {
|
||||||
|
expect(1.5)->toBeBetween(1.25, 1.75);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('passes with float and int', function () {
|
||||||
|
expect(1.5)->toBeBetween(1, 2);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('passes with DateTime', function () {
|
||||||
|
expect(new DateTime('2023-09-22'))->toBeBetween(new DateTime('2023-09-21'), new DateTime('2023-09-23'));
|
||||||
|
});
|
||||||
|
|
||||||
|
test('failure with int', function () {
|
||||||
|
expect(4)->toBeBetween(1, 3);
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
|
test('failure with float', function () {
|
||||||
|
expect(2)->toBeBetween(1.5, 1.75);
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
|
test('failure with float and int', function () {
|
||||||
|
expect(2.1)->toBeBetween(1, 2);
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
|
test('failure with DateTime', function () {
|
||||||
|
expect(new DateTime('2023-09-20'))->toBeBetween(new DateTime('2023-09-21'), new DateTime('2023-09-23'));
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
|
test('failures with custom message', function () {
|
||||||
|
expect(4)->toBeBetween(1, 3, 'oh no!');
|
||||||
|
})->throws(ExpectationFailedException::class, 'oh no!');
|
||||||
|
|
||||||
|
test('not failures', function () {
|
||||||
|
expect(2)->not->toBeBetween(1, 3);
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
24
tests/Features/Expect/toBeUrl.php
Normal file
24
tests/Features/Expect/toBeUrl.php
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\ExpectationFailedException;
|
||||||
|
|
||||||
|
test('pass', function () {
|
||||||
|
expect('https://pestphp.com')->toBeUrl()
|
||||||
|
->and('pestphp.com')->not->toBeUrl();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('failures', function () {
|
||||||
|
expect('pestphp.com')->toBeUrl();
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
|
|
||||||
|
test('failures with custom message', function () {
|
||||||
|
expect('pestphp.com')->toBeUrl('oh no!');
|
||||||
|
})->throws(ExpectationFailedException::class, 'oh no!');
|
||||||
|
|
||||||
|
test('failures with default message', function () {
|
||||||
|
expect('pestphp.com')->toBeUrl();
|
||||||
|
})->throws(ExpectationFailedException::class, 'Failed asserting that pestphp.com is a url.');
|
||||||
|
|
||||||
|
test('not failures', function () {
|
||||||
|
expect('https://pestphp.com')->not->toBeUrl();
|
||||||
|
})->throws(ExpectationFailedException::class);
|
||||||
@ -103,6 +103,26 @@ test('pass with array', function () {
|
|||||||
])->toMatchSnapshot();
|
])->toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('pass with `toSnapshot`', function () {
|
||||||
|
TestSuite::getInstance()->snapshots->save(json_encode(['key' => $this->snapshotable], JSON_PRETTY_PRINT));
|
||||||
|
|
||||||
|
$object = new class($this->snapshotable)
|
||||||
|
{
|
||||||
|
public function __construct(protected string $snapshotable)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public function toSnapshot()
|
||||||
|
{
|
||||||
|
return json_encode([
|
||||||
|
'key' => $this->snapshotable,
|
||||||
|
], JSON_PRETTY_PRINT);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
expect($object)->toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
test('failures', function () {
|
test('failures', function () {
|
||||||
TestSuite::getInstance()->snapshots->save($this->snapshotable);
|
TestSuite::getInstance()->snapshots->save($this->snapshotable);
|
||||||
|
|
||||||
|
|||||||
@ -57,8 +57,9 @@ test('failures 3', function () {
|
|||||||
expect(function () {
|
expect(function () {
|
||||||
throw new Exception();
|
throw new Exception();
|
||||||
})->toThrow(function (RuntimeException $e) {
|
})->toThrow(function (RuntimeException $e) {
|
||||||
|
//
|
||||||
});
|
});
|
||||||
})->throws(ExpectationFailedException::class, 'Failed asserting that Exception Object');
|
})->throws(ExpectationFailedException::class, 'Failed asserting that an object is an instance of class RuntimeException.');
|
||||||
|
|
||||||
test('failures 4', function () {
|
test('failures 4', function () {
|
||||||
expect(function () {
|
expect(function () {
|
||||||
@ -73,7 +74,7 @@ test('failures 5', function () {
|
|||||||
expect(function () {
|
expect(function () {
|
||||||
throw new Exception('actual message');
|
throw new Exception('actual message');
|
||||||
})->toThrow('expected message');
|
})->toThrow('expected message');
|
||||||
})->throws(ExpectationFailedException::class, 'Failed asserting that \'actual message\' contains "expected message".');
|
})->throws(ExpectationFailedException::class, 'Failed asserting that \'actual message\' [ASCII](length: 14) contains "expected message" [ASCII](length: 16).');
|
||||||
|
|
||||||
test('failures 6', function () {
|
test('failures 6', function () {
|
||||||
expect(function () {
|
expect(function () {
|
||||||
|
|||||||
11
tests/Features/Fail.php
Normal file
11
tests/Features/Fail.php
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use PHPUnit\Framework\AssertionFailedError;
|
||||||
|
|
||||||
|
it('may fail', function () {
|
||||||
|
$this->fail();
|
||||||
|
})->throws(AssertionFailedError::class);
|
||||||
|
|
||||||
|
it('may fail with the given message', function () {
|
||||||
|
$this->fail('this is a failure');
|
||||||
|
})->throws(AssertionFailedError::class, 'this is a failure');
|
||||||
9
tests/Features/Fails.php
Normal file
9
tests/Features/Fails.php
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
it('may fail', function () {
|
||||||
|
$this->fail();
|
||||||
|
})->fails();
|
||||||
|
|
||||||
|
it('may fail with the given message', function () {
|
||||||
|
$this->fail('this is a failure');
|
||||||
|
})->fails('this is a failure');
|
||||||
13
tests/Features/SkipOnPhp.php
Normal file
13
tests/Features/SkipOnPhp.php
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
it('can run on php version')
|
||||||
|
->skipOnPhp('<=7.4.0')
|
||||||
|
->assertTrue(true);
|
||||||
|
|
||||||
|
it('can run on specific php version')
|
||||||
|
->skipOnPhp('7.4.0')
|
||||||
|
->assertTrue(true);
|
||||||
|
|
||||||
|
it('can skip on php versions depending on constraint')
|
||||||
|
->skipOnPhp('>=7.4.0')
|
||||||
|
->assertTrue(false);
|
||||||
@ -8,16 +8,16 @@ $foo->beforeEach = false;
|
|||||||
$foo->afterEach = false;
|
$foo->afterEach = false;
|
||||||
$foo->afterAll = false;
|
$foo->afterAll = false;
|
||||||
|
|
||||||
beforeAll(function () {
|
beforeAll(function () use ($foo) {
|
||||||
$foo->beforeAll = true;
|
$foo->beforeAll = true;
|
||||||
});
|
});
|
||||||
beforeEach(function () {
|
beforeEach(function () use ($foo) {
|
||||||
$foo->beforeEach = true;
|
$foo->beforeEach = true;
|
||||||
});
|
});
|
||||||
afterEach(function () {
|
afterEach(function () use ($foo) {
|
||||||
$foo->afterEach = true;
|
$foo->afterEach = true;
|
||||||
});
|
});
|
||||||
afterAll(function () {
|
afterAll(function () use ($foo) {
|
||||||
$foo->afterAll = true;
|
$foo->afterAll = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -1,45 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
uses()->afterAll(function () {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('afterAll')
|
|
||||||
->and($_SERVER['globalHook']->afterAll)
|
|
||||||
->toBe(0)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->afterAll
|
|
||||||
->toBe(1);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->afterAll = 1;
|
|
||||||
$_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(0)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(1 + $offset);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->beforeAll = 1;
|
|
||||||
$_SERVER['globalHook']->calls->beforeAll++;
|
|
||||||
});
|
|
||||||
|
|
||||||
beforeAll(function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('beforeAll')
|
|
||||||
->and($_SERVER['globalHook']->beforeAll)
|
|
||||||
->toBe(1)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(2 + $offset);
|
|
||||||
|
|
||||||
$_SERVER['globalHook']->beforeAll = 2;
|
|
||||||
$_SERVER['globalHook']->calls->beforeAll++;
|
|
||||||
});
|
|
||||||
|
|
||||||
test('global beforeAll execution order', function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->toHaveProperty('beforeAll')
|
|
||||||
->and($_SERVER['globalHook']->beforeAll)
|
|
||||||
->toBe(2)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(3 + $offset);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('only gets called once per file', function () use ($offset) {
|
|
||||||
expect($_SERVER['globalHook'])
|
|
||||||
->beforeAll
|
|
||||||
->toBe(2)
|
|
||||||
->and($_SERVER['globalHook']->calls)
|
|
||||||
->beforeAll
|
|
||||||
->toBe(3 + $offset);
|
|
||||||
});
|
|
||||||
@ -99,3 +99,13 @@ it('shows the correct description for arrays with many elements', function () {
|
|||||||
|
|
||||||
expect($descriptions[0])->toBe('([1, 2, 3, …])');
|
expect($descriptions[0])->toBe('([1, 2, 3, …])');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('shows the correct description of datasets with html', function () {
|
||||||
|
$descriptions = array_keys(DatasetsRepository::resolve([
|
||||||
|
[
|
||||||
|
'<div class="flex items-center"></div>',
|
||||||
|
],
|
||||||
|
], __FILE__));
|
||||||
|
|
||||||
|
expect($descriptions[0])->toBe('(\'<div class="flex items-center"></div>\')');
|
||||||
|
});
|
||||||
|
|||||||
26
tests/Unit/Plugins/Concerns/HandleArguments.php
Normal file
26
tests/Unit/Plugins/Concerns/HandleArguments.php
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Pest\Plugins\Concerns\HandleArguments;
|
||||||
|
|
||||||
|
test('method hasArgument', function (string $argument, bool $expectedResult) {
|
||||||
|
$obj = new class
|
||||||
|
{
|
||||||
|
use HandleArguments;
|
||||||
|
};
|
||||||
|
|
||||||
|
$arguments = [
|
||||||
|
'--long-argument',
|
||||||
|
'someValue',
|
||||||
|
'-a',
|
||||||
|
'--with-equal-sign=1337',
|
||||||
|
];
|
||||||
|
|
||||||
|
expect($obj->hasArgument($argument, $arguments))->toBe($expectedResult);
|
||||||
|
})->with([
|
||||||
|
['--long-argument', true],
|
||||||
|
['-a', true],
|
||||||
|
['--with-equal-sign', true],
|
||||||
|
['someValue', true],
|
||||||
|
['--a', false],
|
||||||
|
['--undefined-argument', false],
|
||||||
|
]);
|
||||||
@ -20,7 +20,7 @@ $names = [
|
|||||||
'卜竹弓一十山' => '__pest_evaluable_卜竹弓一十山',
|
'卜竹弓一十山' => '__pest_evaluable_卜竹弓一十山',
|
||||||
'アゴデヸ' => '__pest_evaluable_アゴデヸ',
|
'アゴデヸ' => '__pest_evaluable_アゴデヸ',
|
||||||
'!p8VrB' => '__pest_evaluable__p8VrB',
|
'!p8VrB' => '__pest_evaluable__p8VrB',
|
||||||
'&xe6VeKWF#n4' => '__pest_evaluable__xe6VeKWF_n4',
|
'&xe6VeKWF#n4' => '__pest_evaluable__amp_xe6VeKWF_n4',
|
||||||
'%%HurHUnw7zM!' => '__pest_evaluable___HurHUnw7zM_',
|
'%%HurHUnw7zM!' => '__pest_evaluable___HurHUnw7zM_',
|
||||||
'rundeliekend' => '__pest_evaluable_rundeliekend',
|
'rundeliekend' => '__pest_evaluable_rundeliekend',
|
||||||
'g%%c!Jt9$fy#Kf' => '__pest_evaluable_g__c_Jt9_fy_Kf',
|
'g%%c!Jt9$fy#Kf' => '__pest_evaluable_g__c_Jt9_fy_Kf',
|
||||||
@ -33,7 +33,7 @@ $names = [
|
|||||||
'Каролин' => '__pest_evaluable_Каролин',
|
'Каролин' => '__pest_evaluable_Каролин',
|
||||||
'অ্যান্টার্কটিকা' => '__pest_evaluable_অ্যান্টার্কটিকা',
|
'অ্যান্টার্কটিকা' => '__pest_evaluable_অ্যান্টার্কটিকা',
|
||||||
'Frýdek-Místek"' => '__pest_evaluable_Frýdek_Místek_',
|
'Frýdek-Místek"' => '__pest_evaluable_Frýdek_Místek_',
|
||||||
'Allingåbro&' => '__pest_evaluable_Allingåbro_',
|
'Allingåbro&' => '__pest_evaluable_Allingåbro_amp_',
|
||||||
'Κεντροαφρικανική Δημοκρατία' => '__pest_evaluable_Κεντροαφρικανική_Δημοκρατία',
|
'Κεντροαφρικανική Δημοκρατία' => '__pest_evaluable_Κεντροαφρικανική_Δημοκρατία',
|
||||||
'آذربایجان غربی' => '__pest_evaluable_آذربایجان_غربی',
|
'آذربایجان غربی' => '__pest_evaluable_آذربایجان_غربی',
|
||||||
'זימבבואה' => '__pest_evaluable_זימבבואה',
|
'זימבבואה' => '__pest_evaluable_זימבבואה',
|
||||||
|
|||||||
@ -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, 15 skipped, 932 passed (2209 assertions)')
|
->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 965 passed (2285 assertions)')
|
||||||
->toContain('Parallel: 3 processes');
|
->toContain('Parallel: 3 processes');
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
|||||||
@ -26,10 +26,18 @@ $snapshot = function ($name) {
|
|||||||
]));
|
]));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
test('todos', function () use ($run, $snapshot) {
|
||||||
|
expect($run('--todos', false))->toContain($snapshot('todos'));
|
||||||
|
})->skipOnWindows();
|
||||||
|
|
||||||
|
test('todos in parallel', function () use ($run, $snapshot) {
|
||||||
|
expect($run('--todos', true))->toContain($snapshot('todos'));
|
||||||
|
})->skipOnWindows();
|
||||||
|
|
||||||
test('todo', function () use ($run, $snapshot) {
|
test('todo', function () use ($run, $snapshot) {
|
||||||
expect($run('--todos', false))->toContain($snapshot('todo'));
|
expect($run('--todo', false))->toContain($snapshot('todo'));
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|
||||||
test('todo in parallel', function () use ($run, $snapshot) {
|
test('todo in parallel', function () use ($run, $snapshot) {
|
||||||
expect($run('--todos', true))->toContain($snapshot('todo'));
|
expect($run('--todo', true))->toContain($snapshot('todo'));
|
||||||
})->skipOnWindows();
|
})->skipOnWindows();
|
||||||
|
|||||||
Reference in New Issue
Block a user