mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-07-11 17:56:19 +02:00
[1.7.0] Refactor HTMLModule unit tests
- AttrCollections does not barf when an inclusion is not present - HTMLDefinition configuration directives now use new syntax - Added %HTML.AllowedModules and %HTML.CoreModules for testing - Extend Harness so that it can accept a default configuration object member variable - Refactor modules to use Scaffolding, which defines some custom attributes that allows for the easy testing of attribute collections git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1082 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
@ -7,6 +7,11 @@ class HTMLPurifier_HTMLModule_HypertextTest extends HTMLPurifier_HTMLModuleHarne
|
||||
|
||||
function test() {
|
||||
|
||||
$this->setupScaffold('Hypertext', array(
|
||||
'Attr.AllowedRel' => 'nofollow',
|
||||
'Attr.AllowedRev' => 'index'
|
||||
));
|
||||
|
||||
// max
|
||||
$this->assertResult(
|
||||
'<span>
|
||||
@ -14,13 +19,11 @@ class HTMLPurifier_HTMLModule_HypertextTest extends HTMLPurifier_HTMLModuleHarne
|
||||
href="http://www.example.com/"
|
||||
rel="nofollow"
|
||||
rev="index"
|
||||
ac:common="true"
|
||||
>
|
||||
#PCDATA <span>Inline</span>
|
||||
</a>
|
||||
</span>', true, array(
|
||||
'Attr.AllowedRel' => 'nofollow',
|
||||
'Attr.AllowedRev' => 'index'
|
||||
)
|
||||
</span>', true
|
||||
);
|
||||
|
||||
// invalid children
|
||||
|
Reference in New Issue
Block a user