Skip to content

Commit

Permalink
Merge pull request #9735 from tscni/fix/missing-global-override-file-…
Browse files Browse the repository at this point in the history
…storage

Fix missing global class type when scanning cached files
  • Loading branch information
orklah committed May 5, 2023
2 parents c9b192a + 8c9b0ee commit 8d15fa1
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Psalm/Internal/PhpVisitor/ReflectorVisitor.php
Expand Up @@ -238,6 +238,12 @@ public function enterNode(PhpParser\Node $node): ?int
$var_id = '$' . $var->name;

$functionlike_node_scanner->storage->global_variables[$var_id] = true;

if (isset($this->codebase->config->globals[$var_id])) {
$var_type = Type::parseString($this->codebase->config->globals[$var_id]);
/** @psalm-suppress UnusedMethodCall */
$var_type->queueClassLikesForScanning($this->codebase, $this->file_storage);
}
}
}
}
Expand Down
90 changes: 90 additions & 0 deletions tests/Internal/Scanner/FileScannerTest.php
@@ -0,0 +1,90 @@
<?php

namespace Psalm\Tests\Internal\Scanner;

use Psalm\Aliases;
use Psalm\Codebase;
use Psalm\Config;
use Psalm\Internal\Provider\FakeFileProvider;
use Psalm\Internal\Provider\Providers;
use Psalm\Internal\Scanner\FileScanner;
use Psalm\Storage\FileStorage;
use Psalm\Storage\FunctionStorage;
use Psalm\Tests\TestCase;
use Psalm\Tests\TestConfig;

class FileScannerTest extends TestCase
{
/**
* @dataProvider providerScan
*/
public function testScan(
Config $config,
string $file_contents,
FileStorage $expected_file_storage
): void {
$file_provider = new FakeFileProvider();
$codebase = new Codebase(
$config,
new Providers($file_provider),
);

$file_provider->registerFile('/dir/file.php', $file_contents);

$file_scanner = new FileScanner('/dir/file.php', 'file.php', true);
$file_storage = new FileStorage('/dir/file.php');
$file_scanner->scan(
$codebase,
$file_storage,
);

// Reset properties that are difficult to mock
foreach ($file_storage->functions as $function_storage) {
$function_storage->location = null;
$function_storage->stmt_location = null;
}

self::assertEquals($expected_file_storage, $file_storage);
}

/**
* @return iterable<string, list{Config, string, FileStorage}>
*/
public static function providerScan(): iterable
{
$config = new TestConfig();
$config->globals['$global'] = 'GlobalClass';

$function_storage_some_function = new FunctionStorage();
$function_storage_some_function->cased_name = 'some_function';
$function_storage_some_function->required_param_count = 0;
$function_storage_some_function->global_variables = [
'$global' => true,
];

$file_storage = new FileStorage('/dir/file.php');
$file_storage->deep_scan = true;
$file_storage->aliases = new Aliases();
$file_storage->functions = [
'some_function' => $function_storage_some_function,
];
$file_storage->declaring_function_ids = [
'some_function' => '/dir/file.php',
];
$file_storage->referenced_classlikes = [
'globalclass' => 'GlobalClass',
];
yield 'referenceConfiguredGlobalClass' => [
$config,
<<<'PHP'
<?php
function some_function()
{
global $global;
}
PHP,
$file_storage,
];
}
}

0 comments on commit 8d15fa1

Please sign in to comment.