PATH:
home
/
letacommog
/
crmleta
/
consumerportal
/
include
/
htmlpurify
/
tests
/
HTMLPurifier
<?php /** * @note Sample input files are located in the StringHashParser/ directory. */ class HTMLPurifier_StringHashParserTest extends UnitTestCase { /** * Instance of ConfigSchema_StringHashParser being tested. */ protected $parser; public function setup() { $this->parser = new HTMLPurifier_StringHashParser(); } /** * Assert that $file gets parsed into the form of $expect */ protected 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", 'EMPTY' => '', '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', )); } function testError() { try { $this->parser->parseFile('NoExist.txt'); } catch (HTMLPurifier_ConfigSchema_Exception $e) { $this->assertIdentical($e->getMessage(), 'File NoExist.txt does not exist'); } } 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", ) ) ); } } // vim: et sw=4 sts=4
[+]
..
[+]
ConfigSchema
[-] AttrDefTest.php
[edit]
[-] EntityParserTest.php
[edit]
[-] VarParserHarness.php
[edit]
[-] URITest.php
[edit]
[-] ErrorCollectorTest.php
[edit]
[+]
URIFilter
[-] GeneratorTest.php
[edit]
[-] HTMLModuleTest.php
[edit]
[-] PercentEncoderTest.php
[edit]
[-] UnitConverterTest.php
[edit]
[+]
Injector
[+]
AttrTransform
[+]
AttrDef
[-] ConfigSchemaTest.php
[edit]
[-] EntityLookupTest.php
[edit]
[-] InjectorHarness.php
[edit]
[-] ErrorsHarness.php
[edit]
[-] DoctypeRegistryTest.php
[edit]
[-] URIFilterHarness.php
[edit]
[-] HTMLModuleHarness.php
[edit]
[-] ChildDefHarness.php
[edit]
[-] URIDefinitionTest.php
[edit]
[-] AttrCollectionsTest.php
[edit]
[-] ConfigTest.php
[edit]
[+]
PHPT
[-] URIHarness.php
[edit]
[-] TokenTest.php
[edit]
[-] LexerTest.php
[edit]
[-] IDAccumulatorTest.php
[edit]
[+]
SimpleTest
[-] DefinitionCacheFactoryTest.php
[edit]
[-] ConfigTest-finalize.ini
[edit]
[+]
VarParser
[-] AttrValidator_ErrorsTest.php
[edit]
[-] ConfigTest-loadIni.ini
[edit]
[-] StringHashTest.php
[edit]
[-] ElementDefTest.php
[edit]
[-] HTMLDefinitionTest.php
[edit]
[-] DefinitionTest.php
[edit]
[-] ConfigTest-create.ini
[edit]
[-] HTMLModuleManagerTest.php
[edit]
[+]
Filter
[+]
HTMLT
[-] Harness.php
[edit]
[-] DefinitionTestable.php
[edit]
[+]
HTMLModule
[-] URISchemeRegistryTest.php
[edit]
[-] AttrTransformHarness.php
[edit]
[-] AttrTypesTest.php
[edit]
[-] ErrorCollectorEMock.php
[edit]
[-] LanguageTest.php
[edit]
[-] TokenFactoryTest.php
[edit]
[-] AttrDefHarness.php
[edit]
[+]
Strategy
[-] EncoderTest.php
[edit]
[-] DefinitionCacheHarness.php
[edit]
[-] ContextTest.php
[edit]
[-] TagTransformTest.php
[edit]
[-] ComplexHarness.php
[edit]
[+]
StringHashParser
[-] LanguageFactoryTest.php
[edit]
[-] HTMLT.php
[edit]
[-] DefinitionCacheTest.php
[edit]
[-] URIParserTest.php
[edit]
[+]
ChildDef
[-] StrategyHarness.php
[edit]
[-] URISchemeTest.php
[edit]
[-] PropertyListTest.php
[edit]
[-] LengthTest.php
[edit]
[-] AttrTransformTest.php
[edit]
[+]
DefinitionCache
[+]
Lexer
[-] StringHashParserTest.php
[edit]