1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
<?php
/**
* @file
* Test the Scanner. This requires the InputStream tests are all good.
*/
namespace Masterminds\HTML5\Tests\Parser;
use Masterminds\HTML5\Parser\StringInputStream;
use Masterminds\HTML5\Parser\Scanner;
class ScannerTest extends \Masterminds\HTML5\Tests\TestCase
{
/**
* A canary test to make sure the basics are setup and working.
*/
public function testConstructDeprecated()
{
$is = new StringInputStream('abc');
$s = new Scanner($is);
$this->assertInstanceOf('\Masterminds\HTML5\Parser\Scanner', $s);
}
public function testConstruct()
{
$this->assertInstanceOf('\Masterminds\HTML5\Parser\Scanner', new Scanner('abc'));
}
public function testNextDeprecated()
{
$s = new Scanner(new StringInputStream('abc'));
$this->assertEquals('b', $s->next());
$this->assertEquals('c', $s->next());
}
public function testNext()
{
$s = new Scanner('abc');
$this->assertEquals('b', $s->next());
$this->assertEquals('c', $s->next());
}
public function testPosition()
{
$s = new Scanner('abc');
$this->assertEquals(0, $s->position());
$s->next();
$this->assertEquals(1, $s->position());
}
public function testPeek()
{
$s = new Scanner('abc');
$this->assertEquals('b', $s->peek());
$s->next();
$this->assertEquals('c', $s->peek());
}
public function testCurrent()
{
$s = new Scanner('abc');
// Before scanning the string begins the current is empty.
$this->assertEquals('a', $s->current());
$c = $s->next();
$this->assertEquals('b', $s->current());
// Test movement through the string.
$c = $s->next();
$this->assertEquals('c', $s->current());
}
public function testUnconsume()
{
$s = new Scanner('abcdefghijklmnopqrst');
// Get initial position.
$s->next();
$start = $s->position();
// Move forward a bunch of positions.
$amount = 7;
for ($i = 0; $i < $amount; ++$i) {
$s->next();
}
// Roll back the amount we moved forward.
$s->unconsume($amount);
$this->assertEquals($start, $s->position());
}
public function testGetHex()
{
$s = new Scanner('ab13ck45DE*');
$this->assertEquals('ab13c', $s->getHex());
$s->next();
$this->assertEquals('45DE', $s->getHex());
}
public function testGetAsciiAlpha()
{
$s = new Scanner('abcdef1%mnop*');
$this->assertEquals('abcdef', $s->getAsciiAlpha());
// Move past the 1% to scan the next group of text.
$s->next();
$s->next();
$this->assertEquals('mnop', $s->getAsciiAlpha());
}
public function testGetAsciiAlphaNum()
{
$s = new Scanner('abcdef1ghpo#mn94op');
$this->assertEquals('abcdef1ghpo', $s->getAsciiAlphaNum());
// Move past the # to scan the next group of text.
$s->next();
$this->assertEquals('mn94op', $s->getAsciiAlphaNum());
}
public function testGetNumeric()
{
$s = new Scanner('1784a 45 9867 #');
$this->assertEquals('1784', $s->getNumeric());
// Move past the 'a ' to scan the next group of text.
$s->next();
$s->next();
$this->assertEquals('45', $s->getNumeric());
}
public function testCurrentLine()
{
$s = new Scanner("1784a\n45\n9867 #\nThis is a test.");
$this->assertEquals(1, $s->currentLine());
// Move to the next line.
$s->getAsciiAlphaNum();
$s->next();
$this->assertEquals(2, $s->currentLine());
}
public function testColumnOffset()
{
$s = new Scanner("1784a a\n45 9867 #\nThis is a test.");
// Move the pointer to the space.
$s->getAsciiAlphaNum();
$this->assertEquals(5, $s->columnOffset());
// We move the pointer ahead. There must be a better way to do this.
$s->next();
$s->next();
$s->next();
$s->next();
$s->next();
$s->next();
$this->assertEquals(3, $s->columnOffset());
}
public function testRemainingChars()
{
$string = "\n45\n9867 #\nThis is a test.";
$s = new Scanner("1784a\n45\n9867 #\nThis is a test.");
$s->getAsciiAlphaNum();
$this->assertEquals($string, $s->remainingChars());
}
}
|