2008-01-27 18:50:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @note Sample input files are located in the StringHashParser/ directory.
|
|
|
|
*/
|
2008-02-24 06:19:28 +00:00
|
|
|
class HTMLPurifier_ConfigSchema_StringHashParserTest extends UnitTestCase
|
2008-01-27 18:50:36 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instance of ConfigSchema_StringHashParser being tested.
|
|
|
|
*/
|
|
|
|
protected $parser;
|
|
|
|
|
|
|
|
function setup() {
|
2008-02-24 06:19:28 +00:00
|
|
|
$this->parser = new HTMLPurifier_ConfigSchema_StringHashParser();
|
2008-01-27 18:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert that $file gets parsed into the form of $expect
|
|
|
|
*/
|
|
|
|
function assertParse($file, $expect) {
|
|
|
|
$result = $this->parser->parseFile(dirname(__FILE__) . '/StringHashParser/' . $file);
|
|
|
|
$this->assertIdentical($result, $expect);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSimple() {
|
|
|
|
$this->assertParse('Simple.txt', array(
|
|
|
|
'ID' => 'Namespace.Directive',
|
|
|
|
'TYPE' => 'string',
|
2008-02-05 21:04:00 +00:00
|
|
|
'CHAIN-ME' => '2',
|
|
|
|
'DESCRIPTION' => "Multiline\nstuff\n",
|
|
|
|
'FOR-WHO' => "Single multiline\n",
|
2008-01-27 18:50:36 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testOverrideSingle() {
|
|
|
|
$this->assertParse('OverrideSingle.txt', array(
|
|
|
|
'KEY' => 'New',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testAppendMultiline() {
|
|
|
|
$this->assertParse('AppendMultiline.txt', array(
|
|
|
|
'KEY' => "Line1\nLine2\n",
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testDefault() {
|
|
|
|
$this->parser->default = 'NEW-ID';
|
|
|
|
$this->assertParse('Default.txt', array(
|
|
|
|
'NEW-ID' => 'DefaultValue',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|