-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathEncoderTest.php
170 lines (142 loc) · 4.79 KB
/
EncoderTest.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/**
* League.Uri (https://uri.thephpleague.com)
*
* (c) Ignace Nyamagana Butera <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\Uri;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
use Stringable;
final class EncoderTest extends TestCase
{
#[Test]
#[DataProvider('provideEncodedPath')]
public function it_can_tell_whether_the_path_is_encoded_or_not(Stringable|string|null $encoded, bool $expected): void
{
self::assertSame($expected, Encoder::isPathEncoded($encoded));
}
public static function provideEncodedPath(): iterable
{
yield 'the path is null' => [
'encoded' => null,
'expected' => true,
];
yield 'the path is empty' => [
'encoded' => '',
'expected' => true,
];
yield 'the path contains only valid encoded characters' => [
'encoded' => 'toto%2f%23le$20heros',
'expected' => true,
];
yield 'the path contains invalid encoded characters' => [
'encoded' => 'toto%2%23le$20heros',
'expected' => false,
];
}
#[Test]
#[DataProvider('provideEncodedQuery')]
public function it_can_tell_whether_the_query_is_encoded_or_not(Stringable|string|null $encoded, bool $expected): void
{
self::assertSame($expected, Encoder::isQueryEncoded($encoded));
}
public static function provideEncodedQuery(): iterable
{
yield 'the query is null' => [
'encoded' => null,
'expected' => true,
];
yield 'the query is empty' => [
'encoded' => '',
'expected' => true,
];
yield 'the query contains only valid encoded characters' => [
'encoded' => 'toto%2f%23le%20heros=?++',
'expected' => true,
];
yield 'the query contains invalid encoded characters' => [
'encoded' => 'toto%2%23le%20heros#',
'expected' => false,
];
}
#[Test]
#[DataProvider('provideEncodedFragment')]
public function it_can_tell_whether_the_fragment_is_encoded_or_not(Stringable|string|null $encoded, bool $expected): void
{
self::assertSame($expected, Encoder::isFragmentEncoded($encoded));
}
public static function provideEncodedFragment(): iterable
{
yield 'the fragment is null' => [
'encoded' => null,
'expected' => true,
];
yield 'the fragment is empty' => [
'encoded' => '',
'expected' => true,
];
yield 'the fragment contains only valid encoded characters' => [
'encoded' => 'toto%2f%23le%20heros=?++',
'expected' => true,
];
yield 'the query contains invalid encoded characters' => [
'encoded' => 'toto%2%23le%20herosé',
'expected' => false,
];
}
#[Test]
#[DataProvider('provideEncodedUser')]
public function it_can_tell_whether_the_user_is_encoded_or_not(Stringable|string|null $encoded, bool $expected): void
{
self::assertSame($expected, Encoder::isUserEncoded($encoded));
}
public static function provideEncodedUser(): iterable
{
yield 'the user is null' => [
'encoded' => null,
'expected' => true,
];
yield 'the user is empty' => [
'encoded' => '',
'expected' => true,
];
yield 'the user contains only valid encoded characters' => [
'encoded' => 'toto%2f%23le%20heros',
'expected' => true,
];
yield 'the query contains invalid encoded characters' => [
'encoded' => 'toto%2%23le%20heros?@',
'expected' => false,
];
}
#[Test]
#[DataProvider('provideEncodedUser')]
public function it_can_tell_whether_the_password_is_encoded_or_not(Stringable|string|null $encoded, bool $expected): void
{
self::assertSame($expected, Encoder::isPasswordEncoded($encoded));
}
public static function provideEncodedPassword(): iterable
{
yield 'the password is null' => [
'encoded' => null,
'expected' => true,
];
yield 'the password is empty' => [
'encoded' => '',
'expected' => true,
];
yield 'the password contains only valid encoded characters' => [
'encoded' => 'toto%2f%23le%20heros',
'expected' => true,
];
yield 'the password contains invalid encoded characters' => [
'encoded' => 'toto%2%23le%20heros?@',
'expected' => false,
];
}
}