summaryrefslogtreecommitdiffstats
path: root/test/php/library/Director/PropertyModifier/PropertyModifierParseURLTest.php
blob: a5ccb796fa1323247aff80150317d07b59f5be2c (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
141
142
143
144
145
146
147
<?php

namespace Tests\Icinga\Module\Director\PropertyModifier;

use Icinga\Module\Director\PropertyModifier\PropertyModifierParseURL;
use Icinga\Module\Director\Test\BaseTestCase;

class PropertyModifierParseURLTest extends BaseTestCase
{
    protected static $validurl = 'https://www.icinga.org/path/file.html?foo=bar#section';
    protected static $invalidurl = 'http:///www.icinga.org/';


    public function testModifierDoesNotSupportArraysItself()
    {
        $modifier = new PropertyModifierParseURL();
        $this->assertFalse($modifier->hasArraySupport());
    }

    public function testEmptyPropertyReturnsNullOnfailureNull()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'query',
            'on_failure' => 'null',
        ]);

        $this->assertNull($modifier->transform(''));
    }

    public function testMissingComponentReturnsNullOnfailureNull()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'query',
            'on_failure' => 'null',
        ]);

        $this->assertNull($modifier->transform('https://www.icinga.org/path/'));
    }

    public function testMissingComponentReturnsPropertyOnfailureKeep()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'query',
            'on_failure' => 'keep',
        ]);

        $this->assertEquals('http://www.icinga.org/path/', $modifier->transform('http://www.icinga.org/path/'));
    }

    /**
     * @expectedException \Icinga\Exception\InvalidPropertyException
     */
    public function testMissingComponentThrowsExceptionOnfailureFail()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'query',
            'on_failure' => 'fail',
        ]);

        $modifier->transform('http://www.icinga.org/path/');
    }


    public function testInvalidUrlReturnsNullOnfailureNull()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'host',
            'on_failure' => 'null',
        ]);

        $this->assertNull($modifier->transform(self::$invalidurl));
    }

    public function testInvalidUrlReturnsItselfOnfailureKeep()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'host',
            'on_failure' => 'keep',
        ]);

        $this->assertEquals(self::$invalidurl, $modifier->transform(self::$invalidurl));
    }

    /**
     * @expectedException \Icinga\Exception\InvalidPropertyException
     */
    public function testInvalidUrlThrowsExceptionOnfailureFail()
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => 'host',
            'on_failure' => 'fail',
        ]);

        $modifier->transform(self::$invalidurl);
    }


    /**
     * @dataProvider dataURLcomponentProvider
     */
    public function testSuccessfullyParse($component, $result)
    {
        $modifier = new PropertyModifierParseURL();
        $modifier->setSettings([
            'url_component' => $component,
            'on_failure' => 'null',
        ]);

        $this->assertEquals($result, $modifier->transform(self::$validurl));
    }
    public function dataURLcomponentProvider()
    {
        return [
            'scheme' => [
                    'scheme',
                    'https',
                ],
                'host' => [
                        'host',
                        'www.icinga.org',
                ],
                'port' => [
                    'port',
                    '',
                ],
                'path' => [
                        'path',
                        '/path/file.html',
                ],
                'query' => [
                        'query',
                        'foo=bar',
                ],
                'fragment' => [
                        'fragment',
                        'section',
                ],
        ];
    }
}