2013-01-25 18:36:16 +04:00
|
|
|
<?php
|
2013-06-28 11:53:53 +04:00
|
|
|
namespace Fenom;
|
2013-09-15 16:05:18 +04:00
|
|
|
use Fenom\Error\UnexpectedTokenException;
|
2013-06-28 11:53:53 +04:00
|
|
|
use Fenom\Tokenizer;
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
class TokenizerTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
public function testTokens()
|
|
|
|
{
|
|
|
|
$code = 'hello, please resolve this example: sin($x)+tan($x*$t) = {U|[0,1]}';
|
|
|
|
$tokens = new Tokenizer($code);
|
|
|
|
$this->assertSame(T_STRING, $tokens->key());
|
|
|
|
$this->assertSame("hello", $tokens->current());
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$this->assertTrue($tokens->isNext(","));
|
|
|
|
$this->assertFalse($tokens->isNext("="));
|
|
|
|
$this->assertFalse($tokens->isNext(T_STRING));
|
|
|
|
$this->assertFalse($tokens->isNext($tokens::MACRO_UNARY));
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$this->assertFalse($tokens->isNext("=", T_STRING, $tokens::MACRO_UNARY));
|
|
|
|
$this->assertTrue($tokens->isNext("=", T_STRING, $tokens::MACRO_UNARY, ","));
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$this->assertSame(",", $tokens->getNext());
|
|
|
|
$this->assertSame(",", $tokens->key());
|
|
|
|
$this->assertSame("please", $tokens->getNext(T_STRING));
|
|
|
|
$this->assertSame("resolve", $tokens->getNext($tokens::MACRO_UNARY, T_STRING));
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$tokens->next();
|
|
|
|
$tokens->next();
|
|
|
|
$tokens->next();
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$this->assertSame(":", $tokens->current());
|
|
|
|
$this->assertSame(":", $tokens->key());
|
2013-01-25 18:36:16 +04:00
|
|
|
|
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$this->assertSame("sin", $tokens->getNext($tokens::MACRO_STRING));
|
|
|
|
$this->assertSame("sin", $tokens->current());
|
2013-09-15 16:05:18 +04:00
|
|
|
$this->assertTrue($tokens->isPrev(":"));
|
2013-07-29 14:58:14 +04:00
|
|
|
$this->assertSame(T_STRING, $tokens->key());
|
|
|
|
$this->assertTrue($tokens->is(T_STRING));
|
|
|
|
$this->assertTrue($tokens->is($tokens::MACRO_STRING));
|
|
|
|
$this->assertFalse($tokens->is($tokens::MACRO_EQUALS));
|
|
|
|
$this->assertFalse($tokens->is(T_DNUMBER));
|
|
|
|
$this->assertFalse($tokens->is(":"));
|
|
|
|
$this->assertSame("(", $tokens->getNext("(", ")"));
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
$tokens->next();
|
|
|
|
$tokens->next();
|
|
|
|
$this->assertSame("+", $tokens->getNext($tokens::MACRO_BINARY));
|
2013-09-15 16:05:18 +04:00
|
|
|
|
|
|
|
$this->assertSame($code, $tokens->getSnippetAsString(-100, 100));
|
|
|
|
$this->assertSame('+', $tokens->getSnippetAsString(100, -100));
|
2013-07-29 14:58:14 +04:00
|
|
|
}
|
2013-01-25 18:36:16 +04:00
|
|
|
|
2013-07-29 14:58:14 +04:00
|
|
|
public function testSkip()
|
|
|
|
{
|
2013-01-25 18:36:16 +04:00
|
|
|
$text = "1 foo: bar ( 3 + double ) ";
|
|
|
|
$tokens = new Tokenizer($text);
|
|
|
|
|
|
|
|
$tokens->skip()->skip(T_STRING)->skip(':');
|
|
|
|
try {
|
|
|
|
$tokens->skip(T_STRING)->skip('(')->skip(':');
|
2013-07-29 14:58:14 +04:00
|
|
|
} catch (\Exception $e) {
|
2013-07-29 16:15:52 +04:00
|
|
|
$this->assertInstanceOf('Fenom\Error\UnexpectedTokenException', $e);
|
2013-02-07 17:37:16 +04:00
|
|
|
$this->assertStringStartsWith("Unexpected token '3' in expression, expect ':'", $e->getMessage());
|
2013-01-25 18:36:16 +04:00
|
|
|
}
|
|
|
|
$this->assertTrue($tokens->valid());
|
|
|
|
$this->assertSame("3", $tokens->current());
|
|
|
|
$this->assertSame(T_LNUMBER, $tokens->key());
|
|
|
|
$tokens->next();
|
|
|
|
}
|
2013-09-15 16:05:18 +04:00
|
|
|
|
2013-01-25 18:36:16 +04:00
|
|
|
}
|