-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathIcingaConfigHelperTest.php
More file actions
133 lines (119 loc) · 5.82 KB
/
IcingaConfigHelperTest.php
File metadata and controls
133 lines (119 loc) · 5.82 KB
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
<?php
namespace Tests\Icinga\Module\Director\IcingaConfig;
use Icinga\Module\Director\IcingaConfig\IcingaConfigHelper as c;
use Icinga\Module\Director\Test\BaseTestCase;
class IcingaConfigHelperTest extends BaseTestCase
{
public function testWhetherIntervalStringIsCorrectlyParsed()
{
$this->assertEquals(c::parseInterval('0'), 0);
$this->assertEquals(c::parseInterval('0s'), 0);
$this->assertEquals(c::parseInterval('10'), 10);
$this->assertEquals(c::parseInterval('70s'), 70);
$this->assertEquals(c::parseInterval('5m 10s'), 310);
$this->assertEquals(c::parseInterval('5m 60s'), 360);
$this->assertEquals(c::parseInterval('1h 5m 60s'), 3960);
}
public function testWhetherInvalidIntervalStringRaisesException()
{
$this->expectException(\InvalidArgumentException::class);
c::parseInterval('1h 5m 60x');
}
public function testWhetherAnEmptyValueGivesNull()
{
$this->assertNull(c::parseInterval(''));
$this->assertNull(c::parseInterval(null));
}
public function testWhetherIntervalStringIsCorrectlyRendered()
{
$this->assertEquals(c::renderInterval(10), '10s');
$this->assertEquals(c::renderInterval(60), '1m');
$this->assertEquals(c::renderInterval(121), '121s');
$this->assertEquals(c::renderInterval(3600), '1h');
$this->assertEquals(c::renderInterval(86400), '1d');
$this->assertEquals(c::renderInterval(86459), '86459s');
}
public function testCorrectlyIdentifiesReservedWords()
{
$this->assertTrue(c::isReserved('include'), 'include is a reserved word');
$this->assertFalse(c::isReserved(0), '(int) 0 is not a reserved word');
$this->assertFalse(c::isReserved(1), '(int) 1 is not a reserved word');
$this->assertFalse(c::isReserved(true), '(boolean) true is not a reserved word');
$this->assertTrue(c::isReserved('true'), '(string) true is a reserved word');
}
public function testWhetherDictionaryRendersCorrectly()
{
$dict = (object) [
'key1' => 'bla',
'include' => 'reserved',
'spe cial' => 'value',
'0' => 'numeric',
];
$this->assertEquals(
c::renderDictionary($dict),
rtrim($this->loadRendered('dict1'))
);
}
protected function loadRendered($name)
{
return file_get_contents(__DIR__ . '/rendered/' . $name . '.out');
}
public function testRenderStringIsCorrectlyRendered()
{
$this->assertEquals(c::renderString('val1\\\val2'), '"val1\\\\\\\\val2"');
$this->assertEquals(c::renderString('"val1"'), '"\"val1\""');
$this->assertEquals(c::renderString('\$val\$'), '"\\\\$val\\\\$"');
$this->assertEquals(c::renderString('\t'), '"\\\\t"');
$this->assertEquals(c::renderString('\r'), '"\\\\r"');
$this->assertEquals(c::renderString('\n'), '"\\\\n"');
$this->assertEquals(c::renderString('\f'), '"\\\\f"');
}
public function testMacrosAreDetected()
{
$this->assertFalse(c::stringHasMacro('$$vars$'));
$this->assertFalse(c::stringHasMacro('$$'));
$this->assertTrue(c::stringHasMacro('$vars$$'));
$this->assertTrue(c::stringHasMacro('$multiple$$vars.nested.name$$vars$ is here'));
$this->assertTrue(c::stringHasMacro('some $vars.nested.name$ is here'));
$this->assertTrue(c::stringHasMacro('some $vars.nested.name$$vars.even.more$'));
$this->assertTrue(c::stringHasMacro('$vars.nested.name$$a$$$$not$'));
$this->assertTrue(c::stringHasMacro('MSSQL$$$config$'));
$this->assertTrue(c::stringHasMacro('MSSQL$$$config$', 'config'));
$this->assertTrue(c::stringHasMacro('MSSQL$$$nix$ and $config$', 'config'));
$this->assertFalse(c::stringHasMacro('MSSQL$$$nix$config$ and $$', 'config'));
$this->assertFalse(c::stringHasMacro('MSSQL$$$nix$ and $$config$', 'config'));
$this->assertFalse(c::stringHasMacro('MSSQL$$$config$', 'conf'));
}
public function testRenderStringWithVariables()
{
$this->assertEquals('"Before " + var', c::renderStringWithVariables('Before $var$'));
$this->assertEquals(c::renderStringWithVariables('$var$ After'), 'var + " After"');
$this->assertEquals(c::renderStringWithVariables('$var$'), 'var');
$this->assertEquals(c::renderStringWithVariables('$$var$$'), '"$$var$$"');
$this->assertEquals(c::renderStringWithVariables('Before $$var$$ After'), '"Before $$var$$ After"');
$this->assertEquals(
'"Before " + name1 + " " + name2 + " After"',
c::renderStringWithVariables('Before $name1$ $name2$ After')
);
$this->assertEquals(c::renderStringWithVariables('$config.bar$', ['config']), 'config.bar');
$this->assertEquals(c::renderStringWithVariables('foo $config.bar$', ['config']), '"foo " + config.bar');
$this->assertEquals(c::renderStringWithVariables('foo $quux.bar$', ['config']), '"foo $quux.bar$');
$this->assertEquals(c::renderStringWithVariables('foo $config.bar$', ['quux']), '"foo $config.bar$');
}
public function testRenderStringWithVariablesX()
{
$this->assertEquals(
'"Before " + var1 + " " + var2 + " After"',
c::renderStringWithVariables('Before $var1$ $var2$ After')
);
$this->assertEquals(
'host.vars.custom',
c::renderStringWithVariables('$host.vars.custom$')
);
$this->assertEquals('"$var\"$"', c::renderStringWithVariables('$var"$'));
$this->assertEquals(
'"\\\\tI am\\\\rrendering\\\\nproperly\\\\fand I " + support + " \"multiple\" " + variables + "\\\\$"',
c::renderStringWithVariables('\tI am\rrendering\nproperly\fand I $support$ "multiple" $variables$\$')
);
}
}