63 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
| <?php
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| namespace LanguageServer\Tests\Server\TextDocument\Definition;
 | |
| 
 | |
| use LanguageServer\Tests\MockProtocolStream;
 | |
| use LanguageServer\Tests\Server\ServerTestCase;
 | |
| use LanguageServer\{
 | |
|     Server, LanguageClient, PhpDocumentLoader, DefinitionResolver
 | |
| };
 | |
| use LanguageServer\Index\{Index, ProjectIndex, DependenciesIndex};
 | |
| use LanguageServer\ContentRetriever\FileSystemContentRetriever;
 | |
| use LanguageServer\Protocol\{TextDocumentIdentifier, Position, Range, Location};
 | |
| 
 | |
| class GlobalFallbackTest extends ServerTestCase
 | |
| {
 | |
|     public function setUp()
 | |
|     {
 | |
|         $projectIndex = new ProjectIndex(new Index, new DependenciesIndex);
 | |
|         $projectIndex->setComplete();
 | |
|         $client = new LanguageClient(new MockProtocolStream, new MockProtocolStream);
 | |
|         $definitionResolver = new DefinitionResolver($projectIndex);
 | |
|         $contentRetriever = new FileSystemContentRetriever;
 | |
|         $loader = new PhpDocumentLoader($contentRetriever, $projectIndex, $definitionResolver);
 | |
|         $this->textDocument = new Server\TextDocument($loader, $definitionResolver, $client, $projectIndex);
 | |
|         $loader->open('global_fallback', file_get_contents(__DIR__ . '/../../../../fixtures/global_fallback.php'));
 | |
|         $loader->open('global_symbols', file_get_contents(__DIR__ . '/../../../../fixtures/global_symbols.php'));
 | |
|     }
 | |
| 
 | |
|     public function testClassDoesNotFallback()
 | |
|     {
 | |
|         // $obj = new TestClass();
 | |
|         // Get definition for TestClass should not fall back to global
 | |
|         $result = $this->textDocument->definition(
 | |
|             new TextDocumentIdentifier('global_fallback'),
 | |
|             new Position(9, 16)
 | |
|         )->wait();
 | |
|         $this->assertEquals([], $result);
 | |
|     }
 | |
| 
 | |
|     public function testFallsBackForConstants()
 | |
|     {
 | |
|         // echo TEST_CONST;
 | |
|         // Get definition for TEST_CONST
 | |
|         $result = $this->textDocument->definition(
 | |
|             new TextDocumentIdentifier('global_fallback'),
 | |
|             new Position(6, 10)
 | |
|         )->wait();
 | |
|         $this->assertEquals(new Location('global_symbols', new Range(new Position(9, 6), new Position(9, 22))), $result);
 | |
|     }
 | |
| 
 | |
|     public function testFallsBackForFunctions()
 | |
|     {
 | |
|         // test_function();
 | |
|         // Get definition for test_function
 | |
|         $result = $this->textDocument->definition(
 | |
|             new TextDocumentIdentifier('global_fallback'),
 | |
|             new Position(5, 6)
 | |
|         )->wait();
 | |
|         $this->assertEquals(new Location('global_symbols', new Range(new Position(78, 0), new Position(81, 1))), $result);
 | |
|     }
 | |
| }
 |