2021-09-09 16:04:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
2021-12-04 21:55:53 +01:00
|
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
|
2021-09-09 16:04:12 +02:00
|
|
|
class CoreStubsTest extends TestCase
|
|
|
|
{
|
2021-12-04 21:55:53 +01:00
|
|
|
use ValidCodeAnalysisTestTrait;
|
2021-09-09 16:04:12 +02:00
|
|
|
|
|
|
|
public function providerValidCodeParse(): iterable
|
|
|
|
{
|
|
|
|
yield 'RecursiveArrayIterator::CHILD_ARRAYS_ONLY (#6464)' => [
|
2022-01-13 19:49:37 +01:00
|
|
|
'code' => '<?php
|
2021-09-09 16:04:12 +02:00
|
|
|
|
|
|
|
new RecursiveArrayIterator([], RecursiveArrayIterator::CHILD_ARRAYS_ONLY);'
|
|
|
|
];
|
2022-01-20 13:54:37 +01:00
|
|
|
yield 'proc_open() named arguments' => [
|
2022-01-22 18:05:32 +01:00
|
|
|
'code' => '<?php
|
2022-01-20 13:54:37 +01:00
|
|
|
|
|
|
|
proc_open(
|
|
|
|
command: "ls",
|
|
|
|
descriptor_spec: [],
|
|
|
|
pipes: $pipes,
|
|
|
|
cwd: null,
|
|
|
|
env_vars: null,
|
|
|
|
options: null
|
|
|
|
);',
|
|
|
|
'assertions' => [],
|
2022-01-22 18:05:32 +01:00
|
|
|
'ignored_issues' => [],
|
2022-01-20 13:54:37 +01:00
|
|
|
'php_version' => '8.0',
|
|
|
|
];
|
2022-07-25 15:37:49 +02:00
|
|
|
yield 'Iterating over \DatePeriod (#5954) PHP7 Traversable' => [
|
2022-10-17 10:21:26 +02:00
|
|
|
'code' => '<?php
|
2022-07-25 15:37:49 +02:00
|
|
|
|
|
|
|
$period = new DatePeriod(
|
|
|
|
new DateTimeImmutable("now"),
|
|
|
|
DateInterval::createFromDateString("1 day"),
|
|
|
|
new DateTime("+1 week")
|
|
|
|
);
|
|
|
|
$dt = null;
|
|
|
|
foreach ($period as $dt) {
|
|
|
|
echo $dt->format("Y-m-d");
|
|
|
|
}',
|
|
|
|
'assertions' => [
|
|
|
|
'$period' => 'DatePeriod<DateTimeImmutable>',
|
|
|
|
'$dt' => 'DateTimeInterface|null'
|
|
|
|
],
|
2022-11-05 22:34:42 +01:00
|
|
|
'ignored_issues' => [],
|
2022-07-25 15:37:49 +02:00
|
|
|
'php_version' => '7.3',
|
|
|
|
];
|
|
|
|
yield 'Iterating over \DatePeriod (#5954) PHP8 IteratorAggregate' => [
|
2022-10-17 10:21:26 +02:00
|
|
|
'code' => '<?php
|
2022-07-22 15:03:45 +02:00
|
|
|
|
|
|
|
$period = new DatePeriod(
|
|
|
|
new DateTimeImmutable("now"),
|
|
|
|
DateInterval::createFromDateString("1 day"),
|
|
|
|
new DateTime("+1 week")
|
|
|
|
);
|
|
|
|
$dt = null;
|
|
|
|
foreach ($period as $dt) {
|
|
|
|
echo $dt->format("Y-m-d");
|
|
|
|
}',
|
|
|
|
'assertions' => [
|
|
|
|
'$period' => 'DatePeriod<DateTimeImmutable>',
|
|
|
|
'$dt' => 'DateTimeImmutable|null'
|
|
|
|
],
|
2022-11-05 22:34:42 +01:00
|
|
|
'ignored_issues' => [],
|
2022-07-25 15:37:49 +02:00
|
|
|
'php_version' => '8.0',
|
2022-07-22 15:03:45 +02:00
|
|
|
];
|
|
|
|
yield 'Iterating over \DatePeriod (#5954), ISO string' => [
|
2022-10-17 10:21:26 +02:00
|
|
|
'code' => '<?php
|
2022-07-22 15:03:45 +02:00
|
|
|
|
|
|
|
$period = new DatePeriod("R4/2012-07-01T00:00:00Z/P7D");
|
|
|
|
$dt = null;
|
|
|
|
foreach ($period as $dt) {
|
|
|
|
echo $dt->format("Y-m-d");
|
|
|
|
}',
|
|
|
|
'assertions' => [
|
|
|
|
'$period' => 'DatePeriod<string>',
|
|
|
|
'$dt' => 'DateTime|null'
|
|
|
|
],
|
2022-11-05 22:34:42 +01:00
|
|
|
'ignored_issues' => [],
|
2022-07-25 15:37:49 +02:00
|
|
|
'php_version' => '8.0',
|
|
|
|
];
|
|
|
|
yield 'DatePeriod implements only Traversable on PHP 7' => [
|
2022-10-17 10:21:26 +02:00
|
|
|
'code' => '<?php
|
2022-07-25 15:37:49 +02:00
|
|
|
|
|
|
|
$period = new DatePeriod("R4/2012-07-01T00:00:00Z/P7D");
|
|
|
|
if ($period instanceof IteratorAggregate) {}',
|
|
|
|
'assertions' => [],
|
2022-11-05 22:34:42 +01:00
|
|
|
'ignored_issues' => [],
|
2022-07-25 15:37:49 +02:00
|
|
|
'php_version' => '7.3',
|
|
|
|
];
|
|
|
|
yield 'DatePeriod implements IteratorAggregate on PHP 8' => [
|
2022-10-17 10:21:26 +02:00
|
|
|
'code' => '<?php
|
2022-07-25 15:37:49 +02:00
|
|
|
|
|
|
|
$period = new DatePeriod("R4/2012-07-01T00:00:00Z/P7D");
|
|
|
|
if ($period instanceof IteratorAggregate) {}',
|
|
|
|
'assertions' => [],
|
2022-11-05 22:34:42 +01:00
|
|
|
'ignored_issues' => ['RedundantCondition'],
|
2022-07-25 15:37:49 +02:00
|
|
|
'php_version' => '8.0',
|
2022-07-22 15:03:45 +02:00
|
|
|
];
|
2021-09-09 16:04:12 +02:00
|
|
|
}
|
|
|
|
}
|