7 require_once('../../lib/ParameterParser.php');
10 function userError($sError)
12 throw new Exception($sError);
15 class ParameterParserTest extends \PHPUnit_Framework_TestCase
19 public function testGetBool()
21 $oParams = new ParameterParser([
29 $this->assertSame(false, $oParams->getBool('non-exists'));
30 $this->assertSame(true, $oParams->getBool('non-exists', true));
31 $this->assertSame(true, $oParams->getBool('bool1'));
32 $this->assertSame(false, $oParams->getBool('bool2'));
33 $this->assertSame(true, $oParams->getBool('bool3'));
34 $this->assertSame(true, $oParams->getBool('bool4'));
35 $this->assertSame(false, $oParams->getBool('bool5'));
39 public function testGetInt()
41 $oParams = new ParameterParser([
47 $this->assertSame(false, $oParams->getInt('non-exists'));
48 $this->assertSame(999, $oParams->getInt('non-exists', 999));
49 $this->assertSame(5, $oParams->getInt('int1'));
51 $this->assertSame(-1, $oParams->getInt('int2'));
52 $this->assertSame(0, $oParams->getInt('int3'));
56 public function testGetIntWithNonNumber()
58 $this->setExpectedException(Exception::class, "Integer number expected for parameter 'int4'");
59 (new ParameterParser(['int4' => 'a']))->getInt('int4');
63 public function testGetIntWithEmpytString()
65 $this->setExpectedException(Exception::class, "Integer number expected for parameter 'int5'");
66 (new ParameterParser(['int5' => '']))->getInt('int5');
70 public function testGetFloat()
73 $oParams = new ParameterParser([
79 $this->assertSame(false, $oParams->getFloat('non-exists'));
80 $this->assertSame(999, $oParams->getFloat('non-exists', 999));
81 $this->assertSame(1.0, $oParams->getFloat('float1'));
82 $this->assertSame(-5.0, $oParams->getFloat('float2'));
83 $this->assertSame(0.0, $oParams->getFloat('float3'));
86 public function testGetFloatWithEmptyString()
88 $this->setExpectedException(Exception::class, "Floating-point number expected for parameter 'float4'");
89 (new ParameterParser(['float4' => '']))->getFloat('float4');
92 public function testGetFloatWithTextString()
94 $this->setExpectedException(Exception::class, "Floating-point number expected for parameter 'float5'");
95 (new ParameterParser(['float5' => 'a']))->getFloat('float5');
99 public function testGetFloatWithInvalidNumber()
101 $this->setExpectedException(Exception::class, "Floating-point number expected for parameter 'float6'");
102 (new ParameterParser(['float6' => '-55.']))->getFloat('float6');
106 public function testGetString()
108 $oParams = new ParameterParser([
114 $this->assertSame(false, $oParams->getString('non-exists'));
115 $this->assertSame('default', $oParams->getString('non-exists', 'default'));
116 $this->assertSame('abc', $oParams->getString('str1'));
117 $this->assertSame(false, $oParams->getStringList('str2'));
118 $this->assertSame(false, $oParams->getStringList('str3')); // FIXME: should be 0 instead?
122 public function testGetSet()
124 $oParams = new ParameterParser([
130 $this->assertSame(false, $oParams->getSet('non-exists', ['foo', 'bar']));
131 // FIXME: unclear if the default value has to be part of the set
132 $this->assertSame('default', $oParams->getSet('non-exists', ['foo', 'bar'], 'default'));
133 $this->assertSame('foo', $oParams->getSet('val1', ['foo', 'bar']));
135 $this->assertSame(false, $oParams->getSet('val2', ['foo', 'bar']));
136 $this->assertSame(0, $oParams->getSet('val3', ['foo', 'bar']));
140 public function testGetSetWithValueNotInSet()
142 $this->setExpectedException(Exception::class, "Parameter 'val4' must be one of: foo, bar");
143 (new ParameterParser(['val4' => 'faz']))->getSet('val4', ['foo', 'bar']);
147 public function testGetStringList()
149 $oParams = new ParameterParser([
150 'list1' => ',a,b,c,,c,d',
156 $this->assertSame(false, $oParams->getStringList('non-exists'));
157 $this->assertSame(['a', 'b'], $oParams->getStringList('non-exists', ['a', 'b']));
158 // FIXME: unclear if empty string items should be removed
159 $this->assertSame(['', 'a', 'b', 'c', '', 'c', 'd'], $oParams->getStringList('list1'));
160 $this->assertSame(['a'], $oParams->getStringList('list2'));
161 $this->assertSame(false, $oParams->getStringList('list3'));
162 $this->assertSame(false, $oParams->getStringList('list4'));
166 public function testGetPreferredLanguages()
168 $oParams = new ParameterParser(['accept-language' => '']);
170 'short_name:default' => 'short_name:default',
171 'name:default' => 'name:default',
172 'short_name' => 'short_name',
175 'official_name:default' => 'official_name:default',
176 'official_name' => 'official_name',
179 ], $oParams->getPreferredLanguages('default'));
181 $oParams = new ParameterParser(['accept-language' => 'de,en']);
183 'short_name:de' => 'short_name:de',
184 'name:de' => 'name:de',
185 'short_name:en' => 'short_name:en',
186 'name:en' => 'name:en',
187 'short_name' => 'short_name',
190 'official_name:de' => 'official_name:de',
191 'official_name:en' => 'official_name:en',
192 'official_name' => 'official_name',
195 ], $oParams->getPreferredLanguages('default'));
197 $oParams = new ParameterParser(['accept-language' => 'fr-ca,fr;q=0.8,en-ca;q=0.5,en;q=0.3']);
199 'short_name:fr-ca' => 'short_name:fr-ca',
200 'name:fr-ca' => 'name:fr-ca',
201 'short_name:fr' => 'short_name:fr',
202 'name:fr' => 'name:fr',
203 'short_name:en-ca' => 'short_name:en-ca',
204 'name:en-ca' => 'name:en-ca',
205 'short_name:en' => 'short_name:en',
206 'name:en' => 'name:en',
207 'short_name' => 'short_name',
210 'official_name:fr-ca' => 'official_name:fr-ca',
211 'official_name:fr' => 'official_name:fr',
212 'official_name:en-ca' => 'official_name:en-ca',
213 'official_name:en' => 'official_name:en',
214 'official_name' => 'official_name',
217 ], $oParams->getPreferredLanguages('default'));