mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-30 19:00:10 +02:00
[3.1.0] Add multi-parse capability for StringHash
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1624 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
18
tests/HTMLPurifier/StringHashParser/Multi.txt
Normal file
18
tests/HTMLPurifier/StringHashParser/Multi.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
Namespace.Directive
|
||||
TYPE: string
|
||||
CHAIN-ME: 2
|
||||
--DESCRIPTION--
|
||||
Multiline
|
||||
stuff
|
||||
--FOR-WHO--
|
||||
Single multiline
|
||||
----
|
||||
|
||||
Namespace.Directive2
|
||||
TYPE: integer
|
||||
CHAIN-ME: 3
|
||||
--DESCRIPTION--
|
||||
M
|
||||
stuff
|
||||
--FOR-WHO--
|
||||
Single multiline2
|
@@ -11,19 +11,19 @@ class HTMLPurifier_StringHashParserTest extends UnitTestCase
|
||||
*/
|
||||
protected $parser;
|
||||
|
||||
function setup() {
|
||||
public function setup() {
|
||||
$this->parser = new HTMLPurifier_StringHashParser();
|
||||
}
|
||||
|
||||
/**
|
||||
* Assert that $file gets parsed into the form of $expect
|
||||
*/
|
||||
function assertParse($file, $expect) {
|
||||
public function assertParse($file, $expect) {
|
||||
$result = $this->parser->parseFile(dirname(__FILE__) . '/StringHashParser/' . $file);
|
||||
$this->assertIdentical($result, $expect);
|
||||
}
|
||||
|
||||
function testSimple() {
|
||||
public function testSimple() {
|
||||
$this->assertParse('Simple.txt', array(
|
||||
'ID' => 'Namespace.Directive',
|
||||
'TYPE' => 'string',
|
||||
@@ -33,26 +33,26 @@ class HTMLPurifier_StringHashParserTest extends UnitTestCase
|
||||
));
|
||||
}
|
||||
|
||||
function testOverrideSingle() {
|
||||
public function testOverrideSingle() {
|
||||
$this->assertParse('OverrideSingle.txt', array(
|
||||
'KEY' => 'New',
|
||||
));
|
||||
}
|
||||
|
||||
function testAppendMultiline() {
|
||||
public function testAppendMultiline() {
|
||||
$this->assertParse('AppendMultiline.txt', array(
|
||||
'KEY' => "Line1\nLine2\n",
|
||||
));
|
||||
}
|
||||
|
||||
function testDefault() {
|
||||
public function testDefault() {
|
||||
$this->parser->default = 'NEW-ID';
|
||||
$this->assertParse('Default.txt', array(
|
||||
'NEW-ID' => 'DefaultValue',
|
||||
));
|
||||
}
|
||||
|
||||
function testError() {
|
||||
public function testError() {
|
||||
try {
|
||||
$this->parser->parseFile('NoExist.txt');
|
||||
} catch (HTMLPurifier_ConfigSchema_Exception $e) {
|
||||
@@ -60,4 +60,27 @@ class HTMLPurifier_StringHashParserTest extends UnitTestCase
|
||||
}
|
||||
}
|
||||
|
||||
public function testParseMultiple() {
|
||||
$result = $this->parser->parseMultiFile(dirname(__FILE__) . '/StringHashParser/Multi.txt');
|
||||
$this->assertIdentical(
|
||||
$result,
|
||||
array(
|
||||
array(
|
||||
'ID' => 'Namespace.Directive',
|
||||
'TYPE' => 'string',
|
||||
'CHAIN-ME' => '2',
|
||||
'DESCRIPTION' => "Multiline\nstuff\n",
|
||||
'FOR-WHO' => "Single multiline\n",
|
||||
),
|
||||
array(
|
||||
'ID' => 'Namespace.Directive2',
|
||||
'TYPE' => 'integer',
|
||||
'CHAIN-ME' => '3',
|
||||
'DESCRIPTION' => "M\nstuff\n",
|
||||
'FOR-WHO' => "Single multiline2\n",
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user