-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
WsTest.php
101 lines (91 loc) · 2.73 KB
/
WsTest.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
<?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 League\Uri\Exceptions\SyntaxError;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;
#[CoversClass(\League\Uri\Uri::class)]
#[Group('ws')]
#[Group('uri')]
class WsTest extends TestCase
{
#[DataProvider('validUrlProvider')]
public function testCreateFromString(string $input, string $expected): void
{
self::assertSame($expected, (string) Uri::new($input));
}
public static function validUrlProvider(): array
{
return [
'with default port' => [
'Ws://ExAmpLe.CoM:80/foo/bar?foo=bar',
'ws://example.com/foo/bar?foo=bar',
],
'with user info' => [
'wss://login:[email protected]/',
'wss://login:[email protected]/',
],
'network path' => [
'//ExAmpLe.CoM:21',
'//example.com:21',
],
'absolute path' => [
'/path/to/my/file',
'/path/to/my/file',
],
'relative path' => [
'.././path/../is/./relative',
'.././path/../is/./relative',
],
'empty string' => [
'',
'',
],
];
}
#[DataProvider('invalidUrlProvider')]
public function testConstructorThrowInvalidArgumentException(string $uri): void
{
self::expectException(SyntaxError::class);
Uri::new($uri);
}
public static function invalidUrlProvider(): array
{
return [
['wss:example.com'],
['wss:/example.com'],
['wss://example.com:80/foo/bar?foo=bar#content'],
];
}
public function testModificationFailedWithEmptyAuthority(): void
{
self::expectException(SyntaxError::class);
Uri::new('wss://example.com/path')
->withScheme(null)
->withHost(null)
->withPath('//toto');
}
#[DataProvider('portProvider')]
public function testPort(string $uri, ?int $port): void
{
self::assertSame($port, Uri::new($uri)->getPort());
}
public static function portProvider(): array
{
return [
['ws://www.example.com:443/', 443],
['ws://www.example.com:80/', null],
['ws://www.example.com', null],
['//www.example.com:80/', 80],
];
}
}