summaryrefslogtreecommitdiff
path: root/_test/cases/lib/exe/css_css_compress.test.php
blob: 026caad3c495c00b87d3b42be19b2e7811d360a9 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php

require_once DOKU_INC.'lib/exe/css.php';


class css_css_compress_test extends UnitTestCase {

    function test_mlcom1(){
        $text = '/**
                  * A multi
                  * line *test*
                  * check
                  */';
        $this->assertEqual(css_compress($text), '');
    }

    function test_mlcom2(){
        $text = '#comment/* */ {
                    color: lime;
                }';
        $this->assertEqual(css_compress($text), '#comment/* */{color:lime;}');
    }

    function test_slcom1(){
        $text = '// this is a comment';
        $this->assertEqual(css_compress($text), '');
    }

    function test_slcom2(){
        $text = '#foo {
                    color: lime; // another comment
                }';
        $this->assertEqual(css_compress($text), '#foo{color:lime;}');
    }

    function test_slcom3(){
        $text = '#foo {
                    background-image: url(http://foo.bar/baz.jpg);
                }';
        $this->assertEqual(css_compress($text), '#foo{background-image:url(http://foo.bar/baz.jpg);}');
    }

    function test_hack(){
        $text = '/* Mac IE will not see this and continue with inline-block */
                 /* \\*/
                 display: inline; 
                 /* */';
        $this->assertEqual(css_compress($text), '/* \\*/display:inline;/* */');
    }

    function test_hack2(){
        $text = '/* min-height hack for Internet Explorer http://www.cssplay.co.uk/boxes/minheight.html */
                 /*\\*/
                 * html .page {
                     height: 450px;
                 }
                 /**/';
        $this->assertEqual(css_compress($text), '/*\\*/* html .page{height:450px;}/**/');
    }

    function test_nl1(){
        $text = "a{left:20px;\ntop:20px}";
        $this->assertEqual(css_compress($text), 'a{left:20px;top:20px}');
    }

}

//Setup VIM: ex: et ts=4 enc=utf-8 :