Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[test] add Neon node re-print tests for list #63

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions tests/Neon/Node.printer.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

declare(strict_types=1);

use Nette\Neon\Lexer;
use Nette\Neon\Parser;
use Tester\Assert;

require __DIR__ . '/../bootstrap.php';

$lexer = new Lexer();
$fileContents = file_get_contents(__DIR__ . '/fixtures/nested-list.neon');
$tokens = $lexer->tokenize($fileContents);

$parser = new Parser();
$node = $parser->parse($tokens);

$reprintedNode = $node->toString();

// this is current incorrect behavior
Assert::matchFile(
__DIR__ . '/fixtures/nested-list-actualy-reprint.neon',
$reprintedNode
);

Assert::matchFile(
__DIR__ . '/fixtures/nested-list.neon',
$reprintedNode
);

2 changes: 2 additions & 0 deletions tests/Neon/fixtures/nested-list-actualy-reprint.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
services:
key: value
2 changes: 2 additions & 0 deletions tests/Neon/fixtures/nested-list.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
services:
key: value