summaryrefslogtreecommitdiffstats
path: root/3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/ImportantDecoratorTest.php
blob: b201b5fea05b1a57ebbfddbb003b6298491bfc75 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

class HTMLPurifier_AttrDef_CSS_ImportantDecoratorTest extends HTMLPurifier_AttrDefHarness
{

    /** Mock AttrDef decorator is wrapping */
    protected $mock;

    function setUp() {
        generate_mock_once('HTMLPurifier_AttrDef');
        $this->mock = new HTMLPurifier_AttrDefMock();
        $this->def  = new HTMLPurifier_AttrDef_CSS_ImportantDecorator($this->mock, true);
    }

    protected function setMock($input, $output = null) {
        if ($output === null) $output = $input;
        $this->mock->expectOnce('validate', array($input, $this->config, $this->context));
        $this->mock->setReturnValue('validate', $output);
    }

    function testImportant() {
        $this->setMock('23');
        $this->assertDef('23 !important');
    }

    function testImportantInternalDefChanged() {
        $this->setMock('23', '24');
        $this->assertDef('23 !important', '24 !important');
    }

    function testImportantWithSpace() {
        $this->setMock('23');
        $this->assertDef('23 !  important  ', '23 !important');
    }

    function testFakeImportant() {
        $this->setMock('! foo important');
        $this->assertDef('! foo important');
    }

    function testStrip() {
        $this->def  = new HTMLPurifier_AttrDef_CSS_ImportantDecorator($this->mock, false);
        $this->setMock('23');
        $this->assertDef('23 !  important  ', '23');
    }

}

// vim: et sw=4 sts=4