|
4 | 4 |
|
5 | 5 | namespace PHPMicroTemplate\Tests;
|
6 | 6 |
|
| 7 | +use ArrayAccess; |
| 8 | +use ArrayObject; |
7 | 9 | use PHPMicroTemplate\Exception\FileSystemException;
|
8 | 10 | use PHPMicroTemplate\Exception\SyntaxErrorException;
|
9 | 11 | use PHPMicroTemplate\Exception\UndefinedSymbolException;
|
10 | 12 | use PHPMicroTemplate\Render;
|
11 | 13 | use PHPMicroTemplate\Tests\Objects\Product;
|
12 | 14 | use PHPUnit\Framework\TestCase;
|
| 15 | +use stdClass; |
13 | 16 |
|
14 | 17 | /**
|
15 | 18 | * Class RenderTest
|
@@ -139,18 +142,28 @@ public function testWhitespaceTolerance(): void
|
139 | 142 |
|
140 | 143 | /**
|
141 | 144 | * Test multiple loops following each other
|
| 145 | + * |
| 146 | + * @dataProvider loopDataProvider |
142 | 147 | */
|
143 |
| - public function testMultipleLoops(): void |
| 148 | + public function testMultipleLoops($products): void |
| 149 | + { |
| 150 | + $result = $this->render->renderTemplate('multipleLoops.template', ['products' => $products]); |
| 151 | + |
| 152 | + $this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/multipleLoops', $result); |
| 153 | + } |
| 154 | + |
| 155 | + public function loopDataProvider(): array |
144 | 156 | {
|
145 | 157 | $products = [
|
146 | 158 | new Product('Hammer', true),
|
147 | 159 | new Product('Nails', true),
|
148 | 160 | new Product('Wood', true),
|
149 | 161 | ];
|
150 | 162 |
|
151 |
| - $result = $this->render->renderTemplate('multipleLoops.template', ['products' => $products]); |
152 |
| - |
153 |
| - $this->assertXmlStringEqualsXmlFile(__DIR__ . '/Expectations/multipleLoops', $result); |
| 163 | + return [ |
| 164 | + 'array' => [$products], |
| 165 | + 'ArrayObject' => [new ArrayObject($products)], |
| 166 | + ]; |
154 | 167 | }
|
155 | 168 |
|
156 | 169 | /**
|
@@ -283,4 +296,89 @@ public function resolveErrorDataProvider()
|
283 | 296 | 'object function call with parameters' => ['person.renderName(firstname, lastname)'],
|
284 | 297 | ];
|
285 | 298 | }
|
| 299 | + |
| 300 | + /** |
| 301 | + * @dataProvider nonExistingPropertyDataProvider |
| 302 | + */ |
| 303 | + public function testAccessExistingProperty($person): void |
| 304 | + { |
| 305 | + $this->assertSame( |
| 306 | + 'Schmidt, Hans', |
| 307 | + $this->render->renderTemplateString( |
| 308 | + '{{ person.lastName }}, {{ person.firstName }}', |
| 309 | + [ |
| 310 | + 'person' => $person, |
| 311 | + ] |
| 312 | + ) |
| 313 | + ); |
| 314 | + } |
| 315 | + |
| 316 | + /** |
| 317 | + * @dataProvider nonExistingPropertyDataProvider |
| 318 | + */ |
| 319 | + public function testAccessNonExistingPropertyFails($person): void |
| 320 | + { |
| 321 | + $this->expectException(UndefinedSymbolException::class); |
| 322 | + $this->expectExceptionMessage('Unknown variable person.age'); |
| 323 | + |
| 324 | + $this->render->renderTemplateString( |
| 325 | + '{{ person.age }}', |
| 326 | + [ |
| 327 | + 'person' => $person, |
| 328 | + ] |
| 329 | + ); |
| 330 | + } |
| 331 | + |
| 332 | + public function nonExistingPropertyDataProvider(): array |
| 333 | + { |
| 334 | + return [ |
| 335 | + 'array' => [ |
| 336 | + [ |
| 337 | + 'firstName' => 'Hans', |
| 338 | + 'lastName' => 'Schmidt', |
| 339 | + ], |
| 340 | + ], |
| 341 | + 'arrayAccess' => [$this->getArrayAccessObject()], |
| 342 | + 'object' => [$this->getPersonObject()], |
| 343 | + ]; |
| 344 | + } |
| 345 | + |
| 346 | + private function getArrayAccessObject(): ArrayAccess |
| 347 | + { |
| 348 | + return new class () implements ArrayAccess { |
| 349 | + private $data = [ |
| 350 | + 'firstName' => 'Hans', |
| 351 | + 'lastName' => 'Schmidt', |
| 352 | + ]; |
| 353 | + |
| 354 | + public function offsetExists($offset) |
| 355 | + { |
| 356 | + return array_key_exists($offset, $this->data); |
| 357 | + } |
| 358 | + |
| 359 | + public function offsetGet($offset) |
| 360 | + { |
| 361 | + return $this->data[$offset]; |
| 362 | + } |
| 363 | + |
| 364 | + public function offsetSet($offset, $value) |
| 365 | + { |
| 366 | + $this->data[$offset] = $value; |
| 367 | + } |
| 368 | + |
| 369 | + public function offsetUnset($offset) |
| 370 | + { |
| 371 | + unset($this->data[$offset]); |
| 372 | + } |
| 373 | + }; |
| 374 | + } |
| 375 | + |
| 376 | + public function getPersonObject(): stdClass |
| 377 | + { |
| 378 | + $person = new stdClass(); |
| 379 | + $person->lastName = 'Schmidt'; |
| 380 | + $person->firstName = 'Hans'; |
| 381 | + |
| 382 | + return $person; |
| 383 | + } |
286 | 384 | }
|
0 commit comments