<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Twig\Token; use Twig\TokenStream; class Twig_Tests_TokenStreamTest extends \PHPUnit\Framework\TestCase { protected static $tokens; protected function setUp() { self::$tokens = [ new Token(Token::TEXT_TYPE, 1, 1), new Token(Token::TEXT_TYPE, 2, 1), new Token(Token::TEXT_TYPE, 3, 1), new Token(Token::TEXT_TYPE, 4, 1), new Token(Token::TEXT_TYPE, 5, 1), new Token(Token::TEXT_TYPE, 6, 1), new Token(Token::TEXT_TYPE, 7, 1), new Token(Token::EOF_TYPE, 0, 1), ]; } public function testNext() { $stream = new TokenStream(self::$tokens); $repr = []; while (!$stream->isEOF()) { $token = $stream->next(); $repr[] = $token->getValue(); } $this->assertEquals('1, 2, 3, 4, 5, 6, 7', implode(', ', $repr), '->next() advances the pointer and returns the current token'); } /** * @expectedException \Twig\Error\SyntaxError * @expectedExceptionMessage Unexpected end of template */ public function testEndOfTemplateNext() { $stream = new TokenStream([ new Token(Token::BLOCK_START_TYPE, 1, 1), ]); while (!$stream->isEOF()) { $stream->next(); } } /** * @expectedException \Twig\Error\SyntaxError * @expectedExceptionMessage Unexpected end of template */ public function testEndOfTemplateLook() { $stream = new TokenStream([ new Token(Token::BLOCK_START_TYPE, 1, 1), ]); while (!$stream->isEOF()) { $stream->look(); $stream->next(); } } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Cache | Folder | 0755 |
|
|
Extension | Folder | 0755 |
|
|
Fixtures | Folder | 0755 |
|
|
Loader | Folder | 0755 |
|
|
Node | Folder | 0755 |
|
|
NodeVisitor | Folder | 0755 |
|
|
Profiler | Folder | 0755 |
|
|
Util | Folder | 0755 |
|
|
CompilerTest.php | File | 1.15 KB | 0644 |
|
ContainerRuntimeLoaderTest.php | File | 1.17 KB | 0644 |
|
CustomExtensionTest.php | File | 1.96 KB | 0644 |
|
EnvironmentTest.php | File | 16.97 KB | 0644 |
|
ErrorTest.php | File | 7.48 KB | 0644 |
|
ExpressionParserTest.php | File | 13.8 KB | 0644 |
|
FactoryRuntimeLoaderTest.php | File | 749 B | 0644 |
|
FileExtensionEscapingStrategyTest.php | File | 1.28 KB | 0644 |
|
FilesystemHelper.php | File | 688 B | 0644 |
|
IntegrationTest.php | File | 8.66 KB | 0644 |
|
LexerTest.php | File | 13.5 KB | 0644 |
|
ParserTest.php | File | 6.02 KB | 0644 |
|
TemplateTest.php | File | 24.03 KB | 0644 |
|
TemplateWrapperTest.php | File | 2.22 KB | 0644 |
|
TokenStreamTest.php | File | 1.9 KB | 0644 |
|
escapingTest.php | File | 10.37 KB | 0644 |
|