summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/tests/Filter/AttributeFilterTest.php
blob: e4de74aaf385a40c8de80ef26db3a0926ad3adaa (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
namespace PicoFeed\Filter;

use PHPUnit_Framework_TestCase;

use PicoFeed\Client\Url;


class AttributeFilterTest extends PHPUnit_Framework_TestCase
{
    public function testFilterEmptyAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->filterEmptyAttribute('abbr', 'title', 'test'));
        $this->assertFalse($filter->filterEmptyAttribute('abbr', 'title', ''));
        $this->assertEquals(array('title' => 'test'), $filter->filter('abbr', array('title' => 'test')));
        $this->assertEquals(array(), $filter->filter('abbr', array('title' => '')));
    }

    public function testFilterAllowedAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->filterAllowedAttribute('abbr', 'title', 'test'));
        $this->assertFalse($filter->filterAllowedAttribute('script', 'type', 'text/javascript'));

        $this->assertEquals(array(), $filter->filter('script', array('type' => 'text/javascript')));
        $this->assertEquals(array(), $filter->filter('a', array('onclick' => 'javascript')));
        $this->assertEquals(array('href' => 'http://google.com/'), $filter->filter('a', array('href' => 'http://google.com')));
    }

    public function testFilterIntegerAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->filterIntegerAttribute('abbr', 'title', 'test'));
        $this->assertTrue($filter->filterIntegerAttribute('iframe', 'width', '0'));
        $this->assertTrue($filter->filterIntegerAttribute('iframe', 'width', '450'));
        $this->assertFalse($filter->filterIntegerAttribute('iframe', 'width', 'test'));

        $this->assertEquals(array('width' => '10', 'src' => 'http://www.youtube.com/test'), $filter->filter('iframe', array('width' => '10', 'src' => 'http://www.youtube.com/test')));
        $this->assertEquals(array('src' => 'http://www.youtube.com/test'), $filter->filter('iframe', array('width' => 'test', 'src' => 'http://www.youtube.com/test')));
    }

    public function testFilterAbsoluteUrlAttribute()
    {
        $filter = new Attribute(new Url('http://www.la-grange.net'));
        $url = '/2014/08/03/4668-noisettes';
        $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
        $this->assertEquals('http://www.la-grange.net/2014/08/03/4668-noisettes', $url);

        $filter = new Attribute(new Url('http://google.com'));

        $url = 'test';
        $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
        $this->assertEquals('http://google.com/test', $url);

        $url = 'http://127.0.0.1:8000/test';
        $this->assertTrue($filter->filterAbsoluteUrlAttribute('img', 'src', $url));
        $this->assertEquals('http://127.0.0.1:8000/test', $url);

        $url = '//example.com';
        $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
        $this->assertEquals('http://example.com/', $url);

        $filter = new Attribute(new Url('https://google.com'));
        $url = '//example.com/?youpi';
        $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
        $this->assertEquals('https://example.com/?youpi', $url);

        $filter = new Attribute(new Url('https://127.0.0.1:8000/here/'));
        $url = 'image.png?v=2';
        $this->assertTrue($filter->filterAbsoluteUrlAttribute('a', 'href', $url));
        $this->assertEquals('https://127.0.0.1:8000/here/image.png?v=2', $url);

        $filter = new Attribute(new Url('https://truc/'));
        $this->assertEquals(array('src' => 'https://www.youtube.com/test'), $filter->filter('iframe', array('width' => 'test', 'src' => '//www.youtube.com/test')));

        $filter = new Attribute(new Url('http://truc/'));
        $this->assertEquals(array('href' => 'http://google.fr/'), $filter->filter('a', array('href' => '//google.fr')));
    }

    public function testFilterIframeAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->filterIframeAttribute('iframe', 'src', 'http://www.youtube.com/test'));
        $this->assertTrue($filter->filterIframeAttribute('iframe', 'src', 'https://www.youtube.com/test'));
        $this->assertFalse($filter->filterIframeAttribute('iframe', 'src', '//www.youtube.com/test'));
        $this->assertFalse($filter->filterIframeAttribute('iframe', 'src', '//www.bidule.com/test'));

        $this->assertEquals(array('src' => 'http://www.youtube.com/test'), $filter->filter('iframe', array('src' => '//www.youtube.com/test')));
    }

    public function testFilterBlacklistAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->filterBlacklistResourceAttribute('a', 'href', 'http://google.fr/'));
        $this->assertFalse($filter->filterBlacklistResourceAttribute('a', 'href', 'http://res3.feedsportal.com/truc'));

        $this->assertEquals(array('href' => 'http://google.fr/'), $filter->filter('a', array('href' => 'http://google.fr/')));
        $this->assertEquals(array(), $filter->filter('a', array('href' => 'http://res3.feedsportal.com/')));
    }

    public function testFilterProtocolAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->filterProtocolUrlAttribute('a', 'href', 'http://google.fr/'));
        $this->assertFalse($filter->filterProtocolUrlAttribute('a', 'href', 'bla://google.fr/'));
        $this->assertFalse($filter->filterProtocolUrlAttribute('a', 'href', 'javascript:alert("test")'));

        $this->assertEquals(array('href' => 'http://google.fr/'), $filter->filter('a', array('href' => 'http://google.fr/')));
        $this->assertEquals(array(), $filter->filter('a', array('href' => 'bla://google.fr/')));
    }

    public function testRequiredAttribute()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertTrue($filter->hasRequiredAttributes('a', array('href' => 'bla')));
        $this->assertTrue($filter->hasRequiredAttributes('img', array('src' => 'bla')));
        $this->assertTrue($filter->hasRequiredAttributes('source', array('src' => 'bla')));
        $this->assertTrue($filter->hasRequiredAttributes('audio', array('src' => 'bla')));
        $this->assertTrue($filter->hasRequiredAttributes('iframe', array('src' => 'bla')));
        $this->assertTrue($filter->hasRequiredAttributes('p', array('class' => 'bla')));
        $this->assertFalse($filter->hasRequiredAttributes('a', array('title' => 'bla')));
    }

    public function testHtml()
    {
        $filter = new Attribute(new Url('http://google.com'));

        $this->assertEquals('title="A &amp; B"', $filter->toHtml(array('title' => 'A & B')));
        $this->assertEquals('title="&quot;a&quot;"', $filter->toHtml(array('title' => '"a"')));
        $this->assertEquals('title="ç" alt="b"', $filter->toHtml(array('title' => 'ç', 'alt' => 'b')));
    }
}