mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
145 lines
4.0 KiB
PHP
145 lines
4.0 KiB
PHP
|
<?php
|
||
|
namespace Psalm\Tests;
|
||
|
|
||
|
use const DIRECTORY_SEPARATOR;
|
||
|
use Psalm\Config;
|
||
|
use Psalm\Context;
|
||
|
|
||
|
class AttributeTest extends TestCase
|
||
|
{
|
||
|
use Traits\InvalidCodeAnalysisTestTrait;
|
||
|
use Traits\ValidCodeAnalysisTestTrait;
|
||
|
|
||
|
/**
|
||
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
||
|
*/
|
||
|
public function providerValidCodeParse(): iterable
|
||
|
{
|
||
|
return [
|
||
|
'classAndPropertyAttributesExists' => [
|
||
|
'<?php
|
||
|
namespace Foo;
|
||
|
|
||
|
#[\Attribute]
|
||
|
class Table {
|
||
|
public function __construct(public string $name) {}
|
||
|
}
|
||
|
|
||
|
#[\Attribute]
|
||
|
class Column {
|
||
|
public function __construct(public string $name) {}
|
||
|
}
|
||
|
|
||
|
#[Table(name: "videos")]
|
||
|
class Video {
|
||
|
#[Column(name: "id")]
|
||
|
public string $id = "";
|
||
|
|
||
|
#[Column(name: "title")]
|
||
|
public string $name = "";
|
||
|
}
|
||
|
|
||
|
#[Table(name: "users")]
|
||
|
class User {
|
||
|
public function __construct(
|
||
|
#[Column(name: "id")]
|
||
|
public string $id,
|
||
|
|
||
|
#[Column(name: "name")]
|
||
|
public string $name = "",
|
||
|
) {}
|
||
|
}',
|
||
|
[],
|
||
|
[],
|
||
|
'8.0'
|
||
|
],
|
||
|
'functionAttributeExists' => [
|
||
|
'<?php
|
||
|
namespace {
|
||
|
#[Attribute]
|
||
|
class Deprecated {}
|
||
|
}
|
||
|
|
||
|
namespace Foo\Bar {
|
||
|
#[\Deprecated]
|
||
|
function foo() : void {}
|
||
|
}',
|
||
|
[],
|
||
|
[],
|
||
|
'8.0'
|
||
|
],
|
||
|
'paramAttributeExists' => [
|
||
|
'<?php
|
||
|
namespace {
|
||
|
#[Attribute]
|
||
|
class Deprecated {}
|
||
|
}
|
||
|
|
||
|
namespace Foo\Bar {
|
||
|
function foo(#[\Deprecated] string $foo) : void {}
|
||
|
}',
|
||
|
[],
|
||
|
[],
|
||
|
'8.0'
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
||
|
*/
|
||
|
public function providerInvalidCodeParse(): iterable
|
||
|
{
|
||
|
return [
|
||
|
'missingAttributeOnClass' => [
|
||
|
'<?php
|
||
|
use Foo\Bar\Pure;
|
||
|
|
||
|
#[Pure]
|
||
|
class Video {}',
|
||
|
'error_message' => 'UndefinedAttributeClass',
|
||
|
[],
|
||
|
false,
|
||
|
'8.0'
|
||
|
],
|
||
|
'missingAttributeOnFunction' => [
|
||
|
'<?php
|
||
|
use Foo\Bar\Pure;
|
||
|
|
||
|
#[Pure]
|
||
|
function foo() : void {}',
|
||
|
'error_message' => 'UndefinedAttributeClass',
|
||
|
[],
|
||
|
false,
|
||
|
'8.0'
|
||
|
],
|
||
|
'missingAttributeOnParam' => [
|
||
|
'<?php
|
||
|
use Foo\Bar\Pure;
|
||
|
|
||
|
function foo(#[Pure] string $str) : void {}',
|
||
|
'error_message' => 'UndefinedAttributeClass',
|
||
|
[],
|
||
|
false,
|
||
|
'8.0'
|
||
|
],
|
||
|
'tooFewArgumentsToAttributeConstructor' => [
|
||
|
'<?php
|
||
|
namespace Foo;
|
||
|
|
||
|
#[\Attribute]
|
||
|
class Table {
|
||
|
public function __construct(public string $name) {}
|
||
|
}
|
||
|
|
||
|
#[Table()]
|
||
|
class Video {}',
|
||
|
'error_message' => 'TooFewArguments',
|
||
|
[],
|
||
|
false,
|
||
|
'8.0'
|
||
|
],
|
||
|
];
|
||
|
}
|
||
|
}
|