move coversNothing to method annotations

This commit is contained in:
danilopolani
2022-03-09 11:05:10 +01:00
parent a027e24e3c
commit 3795870150
6 changed files with 83 additions and 31 deletions

View File

@ -35,37 +35,42 @@ it('uses the correct PHPUnit attribute for function', function () {
expect($attributes[1]->getArguments()[0])->toBe('foo');
})->coversFunction('foo');
it('uses the correct PHPUnit attribute for nothing', function () {
$attributes = (new ReflectionClass($this))->getAttributes();
expect($attributes[2]->getName())->toBe('PHPUnit\Framework\Attributes\CoversNothing');
})->coversNothing();
it('removes duplicated attributes', function () {
$attributes = (new ReflectionClass($this))->getAttributes();
expect($attributes[2]->getName())->toBe('PHPUnit\Framework\Attributes\CoversClass');
expect($attributes[2]->getArguments()[0])->toBe('P\Tests\Features\TestCoversClass2');
expect($attributes[3]->getName())->toBe('PHPUnit\Framework\Attributes\CoversClass');
expect($attributes[3]->getArguments()[0])->toBe('P\Tests\Features\TestCoversClass2');
expect($attributes[4]->getName())->toBe('PHPUnit\Framework\Attributes\CoversClass');
expect($attributes[4]->getArguments()[0])->toBe('Pest\Factories\Attributes\Covers');
expect($attributes[3]->getArguments()[0])->toBe('Pest\Factories\Attributes\Covers');
expect($attributes[4]->getName())->toBe('PHPUnit\Framework\Attributes\CoversFunction');
expect($attributes[4]->getArguments()[0])->toBe('bar');
expect($attributes[5]->getName())->toBe('PHPUnit\Framework\Attributes\CoversFunction');
expect($attributes[5]->getArguments()[0])->toBe('bar');
expect($attributes[6]->getName())->toBe('PHPUnit\Framework\Attributes\CoversFunction');
expect($attributes[6]->getArguments()[0])->toBe('baz');
expect($attributes[5]->getArguments()[0])->toBe('baz');
})
->coversClass(TestCoversClass2::class, TestCoversClass1::class, Covers::class)
->coversNothing()
->coversFunction('bar', 'foo', 'baz');
it('guesses if the given argument is a class or function', function () {
$attributes = (new ReflectionClass($this))->getAttributes();
expect($attributes[7]->getName())->toBe('PHPUnit\Framework\Attributes\CoversClass');
expect($attributes[7]->getArguments()[0])->toBe('P\Tests\Features\TestCoversClass3');
expect($attributes[8]->getName())->toBe('PHPUnit\Framework\Attributes\CoversFunction');
expect($attributes[8]->getArguments()[0])->toBe('testCoversFunction');
expect($attributes[6]->getName())->toBe('PHPUnit\Framework\Attributes\CoversClass');
expect($attributes[6]->getArguments()[0])->toBe('P\Tests\Features\TestCoversClass3');
expect($attributes[7]->getName())->toBe('PHPUnit\Framework\Attributes\CoversFunction');
expect($attributes[7]->getArguments()[0])->toBe('testCoversFunction');
})->covers(TestCoversClass3::class, 'testCoversFunction');
it('appends CoversNothing to method attributes', function () {
$phpDoc = (new ReflectionClass($this))->getMethod($this->getName());
expect(str_contains($phpDoc->getDocComment(), '* @coversNothing'))->toBeTrue();
})->coversNothing();
it('does not append CoversNothing to other methods', function () {
$phpDoc = (new ReflectionClass($this))->getMethod($this->getName());
expect(str_contains($phpDoc->getDocComment(), '* @coversNothing'))->toBeFalse();
});
it('throws exception if no class nor method has been found', function () {
$testCall = new TestCall(TestSuite::getInstance(), 'filename', 'description', fn () => 'closure');