Support document formatting #8
parent
1bb2b4a86c
commit
a2af52075b
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
namespace TestNamespace;
|
||||
|
||||
|
||||
|
||||
|
||||
class TestClass
|
||||
{
|
||||
public $testProperty;
|
||||
|
||||
public function testMethod($testParameter)
|
||||
{
|
||||
$testVariable = 123;
|
||||
|
||||
if ( empty($testParameter)){
|
||||
echo 'Empty';
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace TestNamespace;
|
||||
|
||||
class TestClass
|
||||
{
|
||||
public $testProperty;
|
||||
public function testMethod($testParameter)
|
||||
{
|
||||
$testVariable = 123;
|
||||
if (empty($testParameter)) {
|
||||
echo 'Empty';
|
||||
}
|
||||
}
|
||||
}
|
|
@ -2,7 +2,8 @@
|
|||
|
||||
namespace LanguageServer\Server;
|
||||
|
||||
use PhpParser\{Error, Comment, Node, ParserFactory, NodeTraverser, Lexer, PrettyPrinter\Standard as PrettyPrinterStandard};
|
||||
use PhpParser\{Error, Comment, Node, ParserFactory, NodeTraverser, Lexer};
|
||||
use PhpParser\PrettyPrinter\Standard as PrettyPrinter;
|
||||
use PhpParser\NodeVisitor\NameResolver;
|
||||
use LanguageServer\{LanguageClient, ColumnCalculator, SymbolFinder};
|
||||
use LanguageServer\Protocol\{
|
||||
|
@ -137,10 +138,10 @@ class TextDocument
|
|||
public function formatting(TextDocumentIdentifier $textDocument, FormattingOptions $options)
|
||||
{
|
||||
$nodes = $this->asts[$textDocument->uri];
|
||||
if (empty($nodes)){
|
||||
if (empty($nodes)) {
|
||||
return [];
|
||||
}
|
||||
$prettyPrinter = new PrettyPrinterStandard();
|
||||
$prettyPrinter = new PrettyPrinter();
|
||||
$edit = new TextEdit();
|
||||
$edit->range = new Range(new Position(0, 0), new Position(PHP_INT_MAX, PHP_INT_MAX));
|
||||
$edit->newText = $prettyPrinter->prettyPrintFile($nodes);
|
||||
|
|
|
@ -40,7 +40,7 @@ class LanguageServerTest extends TestCase
|
|||
'workspaceSymbolProvider' => null,
|
||||
'codeActionProvider' => null,
|
||||
'codeLensProvider' => null,
|
||||
'documentFormattingProvider' => null,
|
||||
'documentFormattingProvider' => true,
|
||||
'documentRangeFormattingProvider' => null,
|
||||
'documentOnTypeFormattingProvider' => null,
|
||||
'renameProvider' => null
|
||||
|
|
|
@ -6,7 +6,7 @@ namespace LanguageServer\Tests\Server;
|
|||
use PHPUnit\Framework\TestCase;
|
||||
use LanguageServer\Tests\MockProtocolStream;
|
||||
use LanguageServer\{Server, Client, LanguageClient};
|
||||
use LanguageServer\Protocol\{TextDocumentItem, TextDocumentIdentifier, SymbolKind, DiagnosticSeverity};
|
||||
use LanguageServer\Protocol\{TextDocumentItem, TextDocumentIdentifier, SymbolKind, DiagnosticSeverity, FormattingOptions};
|
||||
use AdvancedJsonRpc\{Request as RequestBody, Response as ResponseBody};
|
||||
|
||||
class TextDocumentTest extends TestCase
|
||||
|
@ -197,4 +197,34 @@ class TextDocumentTest extends TestCase
|
|||
]]
|
||||
], json_decode(json_encode($args), true));
|
||||
}
|
||||
|
||||
public function testFormatting()
|
||||
{
|
||||
$textDocument = new Server\TextDocument(new LanguageClient(new MockProtocolStream()));
|
||||
// Trigger parsing of source
|
||||
$textDocumentItem = new TextDocumentItem();
|
||||
$textDocumentItem->uri = 'whatever';
|
||||
$textDocumentItem->languageId = 'php';
|
||||
$textDocumentItem->version = 1;
|
||||
$textDocumentItem->text = file_get_contents(__DIR__ . '/../../fixtures/Format.php');
|
||||
$textDocument->didOpen($textDocumentItem);
|
||||
|
||||
// how code should look after formatting
|
||||
$expected = file_get_contents(__DIR__ . '/../../fixtures/Format_expected.php');
|
||||
// Request formatting
|
||||
$result = $textDocument->formatting(new TextDocumentIdentifier('whatever'), new FormattingOptions());
|
||||
$this->assertEquals([0 => [
|
||||
'range' => [
|
||||
'start' => [
|
||||
'line' => 0,
|
||||
'character' => 0
|
||||
],
|
||||
'end' => [
|
||||
'line' => PHP_INT_MAX,
|
||||
'character' => PHP_INT_MAX
|
||||
]
|
||||
],
|
||||
'newText' => $expected
|
||||
]], json_decode(json_encode($result), true));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue