mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 09:37:59 +01:00
9be7fceb59
Fix https://github.com/vimeo/psalm/issues/8680 See also https://github.com/vimeo/psalm/issues/9295
187 lines
6.5 KiB
PHP
187 lines
6.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
|
|
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;
|
|
|
|
class ArrayKeysTest extends TestCase
|
|
{
|
|
use InvalidCodeAnalysisTestTrait;
|
|
use ValidCodeAnalysisTestTrait;
|
|
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'arrayKeysOfEmptyArrayReturnsListOfEmpty' => [
|
|
'code' => '<?php
|
|
$keys = array_keys([]);
|
|
',
|
|
'assertions' => [
|
|
'$keys' => 'list<never>',
|
|
],
|
|
],
|
|
'arrayKeysOfKeyedArrayReturnsNonEmptyListOfStrings' => [
|
|
'code' => '<?php
|
|
$keys = array_keys(["foo" => "bar"]);
|
|
',
|
|
'assertions' => [
|
|
'$keys' => 'non-empty-list<string>',
|
|
],
|
|
],
|
|
'arrayKeysOfListReturnsNonEmptyListOfInts' => [
|
|
'code' => '<?php
|
|
$keys = array_keys(["foo", "bar"]);
|
|
',
|
|
'assertions' => [
|
|
'$keys' => 'non-empty-list<int<0, 1>>',
|
|
],
|
|
],
|
|
'arrayKeysOfKeyedStringIntArrayReturnsNonEmptyListOfIntsOrStrings' => [
|
|
'code' => '<?php
|
|
$keys = array_keys(["foo" => "bar", 42]);
|
|
',
|
|
'assertions' => [
|
|
'$keys' => 'non-empty-list<int|string>',
|
|
],
|
|
],
|
|
'arrayKeysOfArrayConformsToArrayKeys' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @return list<array-key>
|
|
*/
|
|
function getKeys(array $array) {
|
|
return array_keys($array);
|
|
}
|
|
',
|
|
],
|
|
'arrayKeysOfKeyedArrayConformsToCorrectLiteralStringList' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @return non-empty-list<"foo"|"bar">
|
|
*/
|
|
function getKeys() {
|
|
return array_keys(["foo" => 42, "bar" => 42]);
|
|
}
|
|
',
|
|
],
|
|
'arrayKeysOfLiteralListConformsToCorrectLiteralOffsets' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @return non-empty-list<0|1>
|
|
*/
|
|
function getKeys() {
|
|
return array_keys(["foo", "bar"]);
|
|
}
|
|
',
|
|
],
|
|
'arrayKeyFirstOfLiteralListConformsToCorrectLiteralOffsets' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @return 0|1
|
|
*/
|
|
function getKey() {
|
|
return array_key_first(["foo", "bar"]);
|
|
}
|
|
',
|
|
],
|
|
'arrayKeyLastOfLiteralListConformsToCorrectLiteralOffsets' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @return 0|1
|
|
*/
|
|
function getKey() {
|
|
return array_key_last(["foo", "bar"]);
|
|
}
|
|
',
|
|
],
|
|
'literalStringAsIntArrayKey' => [
|
|
'code' => '<?php
|
|
class a {
|
|
private const REDIRECTS = [
|
|
"a" => [
|
|
"from" => "79268724911",
|
|
"to" => "74950235931",
|
|
],
|
|
"b" => [
|
|
"from" => "79313044964",
|
|
"to" => "78124169167",
|
|
],
|
|
];
|
|
|
|
private const SIP_FORMAT = "sip:%s@voip.test.com:9090";
|
|
|
|
/** @return array<int, string> */
|
|
public function test(): array {
|
|
$redirects = [];
|
|
foreach (self::REDIRECTS as $redirect) {
|
|
$redirects[$redirect["from"]] = sprintf(self::SIP_FORMAT, $redirect["to"]);
|
|
}
|
|
|
|
return $redirects;
|
|
}
|
|
}',
|
|
],
|
|
];
|
|
}
|
|
|
|
public function providerInvalidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'arrayKeysOfStringArrayDoesntConformsToIntList' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @param array<string, mixed> $array
|
|
* @return list<int>
|
|
*/
|
|
function getKeys(array $array) {
|
|
return array_keys($array);
|
|
}
|
|
',
|
|
'error_message' => 'InvalidReturnStatement',
|
|
],
|
|
'arrayKeysOfStringKeyedArrayDoesntConformToIntList' => [
|
|
'code' => '<?php
|
|
/**
|
|
* @return list<int>
|
|
*/
|
|
function getKeys() {
|
|
return array_keys(["foo" => 42, "bar" => 42]);
|
|
}
|
|
',
|
|
'error_message' => 'InvalidReturnStatement',
|
|
],
|
|
'literalStringAsIntArrayKey' => [
|
|
'code' => '<?php
|
|
class a {
|
|
private const REDIRECTS = [
|
|
"a" => [
|
|
"from" => "79268724911",
|
|
"to" => "74950235931",
|
|
],
|
|
"b" => [
|
|
"from" => "79313044964",
|
|
"to" => "78124169167",
|
|
],
|
|
];
|
|
|
|
private const SIP_FORMAT = "sip:%s@voip.test.com:9090";
|
|
|
|
/** @return array<string, string> */
|
|
public function test(): array {
|
|
$redirects = [];
|
|
foreach (self::REDIRECTS as $redirect) {
|
|
$redirects[$redirect["from"]] = sprintf(self::SIP_FORMAT, $redirect["to"]);
|
|
}
|
|
|
|
return $redirects;
|
|
}
|
|
}',
|
|
'error_message' => 'InvalidReturnStatement',
|
|
],
|
|
];
|
|
}
|
|
}
|