mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 16:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10579 201d5d3c-b55e-5fd7-737f-ddc643e51545
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
Mock::generatePartial(
|
|
'HTMLPurifier_AttrTransform',
|
|
'HTMLPurifier_AttrTransformTestable',
|
|
array('transform'));
|
|
|
|
class HTMLPurifier_AttrTransformTest extends HTMLPurifier_Harness
|
|
{
|
|
|
|
function test_prependCSS() {
|
|
|
|
$t = new HTMLPurifier_AttrTransformTestable();
|
|
|
|
$attr = array();
|
|
$t->prependCSS($attr, 'style:new;');
|
|
$this->assertIdentical(array('style' => 'style:new;'), $attr);
|
|
|
|
$attr = array('style' => 'style:original;');
|
|
$t->prependCSS($attr, 'style:new;');
|
|
$this->assertIdentical(array('style' => 'style:new;style:original;'), $attr);
|
|
|
|
$attr = array('style' => 'style:original;', 'misc' => 'un-related');
|
|
$t->prependCSS($attr, 'style:new;');
|
|
$this->assertIdentical(array('style' => 'style:new;style:original;', 'misc' => 'un-related'), $attr);
|
|
|
|
}
|
|
|
|
function test_confiscateAttr() {
|
|
|
|
$t = new HTMLPurifier_AttrTransformTestable();
|
|
|
|
$attr = array('flavor' => 'sweet');
|
|
$this->assertIdentical('sweet', $t->confiscateAttr($attr, 'flavor'));
|
|
$this->assertIdentical(array(), $attr);
|
|
|
|
$attr = array('flavor' => 'sweet');
|
|
$this->assertIdentical(null, $t->confiscateAttr($attr, 'color'));
|
|
$this->assertIdentical(array('flavor' => 'sweet'), $attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|