1
0
Fork 0
php-language-server/tests/LanguageServerTest.php

123 lines
5.1 KiB
PHP
Raw Normal View History

2016-08-25 13:27:14 +00:00
<?php
declare(strict_types = 1);
namespace LanguageServer\Tests;
use PHPUnit\Framework\TestCase;
use LanguageServer\LanguageServer;
2016-11-07 12:16:14 +00:00
use LanguageServer\Protocol\{Message, ClientCapabilities, TextDocumentSyncKind, MessageType, Content};
2016-10-20 01:31:12 +00:00
use AdvancedJsonRpc;
2016-11-07 12:16:14 +00:00
use Webmozart\Glob\Glob;
use Webmozart\PathUtil\Path;
2016-11-07 10:52:24 +00:00
use Sabre\Event\Promise;
2016-11-07 12:16:14 +00:00
use Exception;
2016-11-07 10:52:24 +00:00
use function LanguageServer\pathToUri;
2016-08-25 13:27:14 +00:00
class LanguageServerTest extends TestCase
{
public function testInitialize()
{
$reader = new MockProtocolStream();
$writer = new MockProtocolStream();
$server = new LanguageServer($reader, $writer);
2016-11-07 12:16:14 +00:00
$promise = new Promise;
$writer->once('message', [$promise, 'fulfill']);
2016-10-20 01:31:12 +00:00
$reader->write(new Message(new AdvancedJsonRpc\Request(1, 'initialize', [
2016-08-25 13:27:14 +00:00
'rootPath' => __DIR__,
'processId' => getmypid(),
'capabilities' => new ClientCapabilities()
])));
2016-11-07 12:16:14 +00:00
$msg = $promise->wait();
2016-10-31 10:47:21 +00:00
$this->assertNotNull($msg, 'message event should be emitted');
2016-10-20 01:31:12 +00:00
$this->assertInstanceOf(AdvancedJsonRpc\SuccessResponse::class, $msg->body);
2016-08-25 13:27:14 +00:00
$this->assertEquals((object)[
'capabilities' => (object)[
'textDocumentSync' => TextDocumentSyncKind::FULL,
'documentSymbolProvider' => true,
'hoverProvider' => true,
2016-08-25 13:27:14 +00:00
'completionProvider' => null,
'signatureHelpProvider' => null,
2016-10-08 12:59:08 +00:00
'definitionProvider' => true,
'referencesProvider' => true,
2016-08-25 13:27:14 +00:00
'documentHighlightProvider' => null,
'workspaceSymbolProvider' => true,
2016-08-25 13:27:14 +00:00
'codeActionProvider' => null,
'codeLensProvider' => null,
2016-09-06 10:54:34 +00:00
'documentFormattingProvider' => true,
2016-08-25 13:27:14 +00:00
'documentRangeFormattingProvider' => null,
'documentOnTypeFormattingProvider' => null,
'renameProvider' => null
]
], $msg->body->result);
}
2016-11-07 10:52:24 +00:00
2016-11-07 12:16:14 +00:00
public function testIndexingWithDirectFileAccess()
2016-11-07 10:52:24 +00:00
{
$promise = new Promise;
$input = new MockProtocolStream;
$output = new MockProtocolStream;
$output->on('message', function (Message $msg) use ($promise) {
if ($msg->body->method === 'window/logMessage') {
if ($msg->body->params->type === MessageType::ERROR) {
$promise->reject();
} else if (strpos($msg->body->params->message, 'All 10 PHP files parsed') !== false) {
$promise->fulfill();
}
}
});
$server = new LanguageServer($input, $output);
$capabilities = new ClientCapabilities;
$server->initialize(getmypid(), $capabilities, realpath(__DIR__ . '/../fixtures'));
$promise->wait();
}
2016-11-07 12:16:14 +00:00
public function testIndexingWithGlobAndContentRequests()
{
$promise = new Promise;
$globCalled = false;
$contentCalled = false;
$rootPath = realpath(__DIR__ . '/../fixtures');
$input = new MockProtocolStream;
$output = new MockProtocolStream;
$output->on('message', function (Message $msg) use ($promise, $input, $rootPath, &$globCalled, &$contentCalled) {
if ($msg->body->method === 'textDocument/xcontent') {
// Document content requested
$contentCalled = true;
$input->write(new Message(new AdvancedJsonRpc\SuccessResponse(
$msg->body->id,
new Content(file_get_contents($msg->body->params->textDocument->uri))
)));
} else if ($msg->body->method === 'workspace/xglob') {
// Glob requested
$globCalled = true;
$files = array_map(
'\\LanguageServer\\pathToUri',
array_merge(...array_map(function (string $pattern) use ($rootPath) {
return Glob::glob(Path::makeAbsolute($pattern, $rootPath));
}, $msg->body->params->patterns))
);
$input->write(new Message(new AdvancedJsonRpc\SuccessResponse($msg->body->id, $files)));
} else if ($msg->body->method === 'window/logMessage') {
// Message logged
if ($msg->body->params->type === MessageType::ERROR) {
// Error happened during indexing, fail test
if ($promise->state === Promise::PENDING) {
$promise->reject(new Exception($msg->body->params->message));
}
} else if (strpos($msg->body->params->message, 'All 10 PHP files parsed') !== false) {
// Indexing finished
$promise->fulfill();
}
}
});
$server = new LanguageServer($input, $output);
$capabilities = new ClientCapabilities;
$capabilities->xglobProvider = true;
$capabilities->xcontentProvider = true;
$server->initialize(getmypid(), $capabilities, $rootPath);
$promise->wait();
$this->assertTrue($globCalled);
$this->assertTrue($contentCalled);
}
2016-08-25 13:27:14 +00:00
}