-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathRouterParamsTest.php
55 lines (43 loc) · 1.24 KB
/
RouterParamsTest.php
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
<?php
namespace Rareloop\Router\Test;
use PHPUnit\Framework\TestCase;
use Rareloop\Router\RouteParams;
class RouterParamsTest extends TestCase
{
/** @test */
public function can_get_param_by_key()
{
$params = new RouteParams(['key' => 'value']);
$this->assertSame('value', $params->key);
}
/** @test */
public function can_iterate_all_keys_and_values()
{
$params = new RouteParams([
'key1' => 'value1',
'key2' => 'value2',
'key3' => 'value3',
]);
$keys = [];
$values = [];
foreach ($params as $key => $value) {
$keys[] = $key;
$values[] = $value;
}
$this->assertSame(['key1', 'key2', 'key3'], $keys);
$this->assertSame(['value1', 'value2', 'value3'], $values);
}
/** @test */
public function return_null_when_a_key_is_not_found()
{
$params = new RouteParams(['key' => 'value']);
$this->assertNull($params->invalid);
}
/** @test */
public function can_get_params_as_array()
{
$data = ['key1' => 'value1', 'key2' => 'value2'];
$params = new RouteParams($data);
$this->assertSame($data, $params->toArray());
}
}