| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- require_once '../Mustache.php';
- /**
- * @group pragmas
- */
- class MustachePragmaTest extends PHPUnit_Framework_TestCase {
- public function testUnknownPragmaException() {
- $m = new Mustache();
- try {
- $m->render('{{%I-HAVE-THE-GREATEST-MUSTACHE}}');
- } catch (MustacheException $e) {
- $this->assertEquals(MustacheException::UNKNOWN_PRAGMA, $e->getCode(), 'Caught exception code was not MustacheException::UNKNOWN_PRAGMA');
- return;
- }
- $this->fail('Mustache should have thrown an unknown pragma exception');
- }
- public function testSuppressUnknownPragmaException() {
- $m = new LessWhinyMustache();
- try {
- $this->assertEquals('', $m->render('{{%I-HAVE-THE-GREATEST-MUSTACHE}}'));
- } catch (MustacheException $e) {
- if ($e->getCode() == MustacheException::UNKNOWN_PRAGMA) {
- $this->fail('Mustache should have thrown an unknown pragma exception');
- } else {
- throw $e;
- }
- }
- }
- public function testPragmaReplace() {
- $m = new Mustache();
- $this->assertEquals('', $m->render('{{%UNESCAPED}}'), 'Pragma tag not removed');
- }
- public function testPragmaReplaceMultiple() {
- $m = new Mustache();
- $this->assertEquals('', $m->render('{{% UNESCAPED }}'), 'Pragmas should allow whitespace');
- $this->assertEquals('', $m->render('{{% UNESCAPED foo=bar }}'), 'Pragmas should allow whitespace');
- $this->assertEquals('', $m->render("{{%UNESCAPED}}\n{{%UNESCAPED}}"), 'Multiple pragma tags not removed');
- $this->assertEquals(' ', $m->render('{{%UNESCAPED}} {{%UNESCAPED}}'), 'Multiple pragma tags not removed');
- }
- public function testPragmaReplaceNewline() {
- $m = new Mustache();
- $this->assertEquals('', $m->render("{{%UNESCAPED}}\n"), 'Trailing newline after pragma tag not removed');
- $this->assertEquals("\n", $m->render("\n{{%UNESCAPED}}\n"), 'Too many newlines removed with pragma tag');
- $this->assertEquals("1\n23", $m->render("1\n2{{%UNESCAPED}}\n3"), 'Wrong newline removed with pragma tag');
- }
- public function testPragmaReset() {
- $m = new Mustache('', array('symbol' => '>>>'));
- $this->assertEquals('>>>', $m->render('{{{symbol}}}'));
- $this->assertEquals('>>>', $m->render('{{%UNESCAPED}}{{symbol}}'));
- $this->assertEquals('>>>', $m->render('{{{symbol}}}'));
- }
- }
- class LessWhinyMustache extends Mustache {
- protected $_throwsExceptions = array(
- MustacheException::UNKNOWN_VARIABLE => false,
- MustacheException::UNCLOSED_SECTION => true,
- MustacheException::UNEXPECTED_CLOSE_SECTION => true,
- MustacheException::UNKNOWN_PARTIAL => false,
- MustacheException::UNKNOWN_PRAGMA => false,
- );
- }
|