File: AttrDefTest.php

package info (click to toggle)
php-htmlpurifier 4.4.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,888 kB
  • sloc: php: 27,456; xml: 1,767; makefile: 68; sh: 14
file content (32 lines) | stat: -rw-r--r-- 775 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

Mock::generatePartial(
        'HTMLPurifier_AttrDef',
        'HTMLPurifier_AttrDefTestable',
        array('validate'));

class HTMLPurifier_AttrDefTest extends HTMLPurifier_Harness
{

    function test_parseCDATA() {

        $def = new HTMLPurifier_AttrDefTestable();

        $this->assertIdentical('', $def->parseCDATA(''));
        $this->assertIdentical('', $def->parseCDATA("\t\n\r \t\t"));
        $this->assertIdentical('foo', $def->parseCDATA("\t\n\r foo\t\t"));
        $this->assertIdentical('translate to space', $def->parseCDATA("translate\nto\tspace"));

    }

    function test_make() {

        $def = new HTMLPurifier_AttrDefTestable();
        $def2 = $def->make('');
        $this->assertIdentical($def, $def2);

    }

}

// vim: et sw=4 sts=4