mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-04 13:18:00 +02:00
[3.1.0] Move ConfigSchema to HTMLPurifier core
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1576 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
55
tests/HTMLPurifier/ConfigSchema/StringHashParserTest.php
Normal file
55
tests/HTMLPurifier/ConfigSchema/StringHashParserTest.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @note Sample input files are located in the StringHashParser/ directory.
|
||||
*/
|
||||
class HTMLPurifier_ConfigSchema_StringHashParserTest extends UnitTestCase
|
||||
{
|
||||
|
||||
/**
|
||||
* Instance of ConfigSchema_StringHashParser being tested.
|
||||
*/
|
||||
protected $parser;
|
||||
|
||||
function setup() {
|
||||
$this->parser = new HTMLPurifier_ConfigSchema_StringHashParser();
|
||||
}
|
||||
|
||||
/**
|
||||
* 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',
|
||||
'CHAIN-ME' => '2',
|
||||
'DESCRIPTION' => "Multiline\nstuff\n",
|
||||
'FOR-WHO' => "Single multiline\n",
|
||||
));
|
||||
}
|
||||
|
||||
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',
|
||||
));
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user