source: frontend/node_modules/fast-uri/test/fixtures/uri-js-serialize.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 1.6 KB
Line 
1[
2 [
3 {
4 "host": "10.10.10.10.example.com"
5 },
6 "//10.10.10.10.example.com"
7 ],
8 [
9 {
10 "host": "2001:db8::7"
11 },
12 "//[2001:db8::7]"
13 ],
14 [
15 {
16 "host": "::ffff:129.144.52.38"
17 },
18 "//[::ffff:129.144.52.38]"
19 ],
20 [
21 {
22 "host": "2606:2800:220:1:248:1893:25c8:1946"
23 },
24 "//[2606:2800:220:1:248:1893:25c8:1946]"
25 ],
26 [
27 {
28 "host": "10.10.10.10.example.com"
29 },
30 "//10.10.10.10.example.com"
31 ],
32 [
33 {
34 "host": "10.10.10.10"
35 },
36 "//10.10.10.10"
37 ],
38 [
39 {
40 "path": "?query"
41 },
42 "%3Fquery"
43 ],
44 [
45 {
46 "path": "foo:bar"
47 },
48 "foo%3Abar"
49 ],
50 [
51 {
52 "path": "//path"
53 },
54 "/%2Fpath"
55 ],
56 [
57 {
58 "scheme": "uri",
59 "host": "example.com",
60 "port": "9000"
61 },
62 "uri://example.com:9000"
63 ],
64 [
65 {
66 "scheme": "uri",
67 "userinfo": "foo:bar",
68 "host": "example.com",
69 "port": 1,
70 "path": "path",
71 "query": "query",
72 "fragment": "fragment"
73 },
74 "uri://foo:bar@example.com:1/path?query#fragment"
75 ],
76 [
77 {
78 "scheme": "",
79 "userinfo": "",
80 "host": "",
81 "port": 0,
82 "path": "",
83 "query": "",
84 "fragment": ""
85 },
86 "//@:0?#"
87 ],
88 [
89 {},
90 ""
91 ],
92 [
93 {
94 "host": "fe80::a%en1"
95 },
96 "//[fe80::a%25en1]"
97 ],
98 [
99 {
100 "host": "fe80::a%25en1"
101 },
102 "//[fe80::a%25en1]"
103 ],
104 [
105 {
106 "scheme": "wss",
107 "host": "example.com",
108 "path": "/foo",
109 "query": "bar"
110 },
111 "wss://example.com/foo?bar"
112 ],
113 [
114 {
115 "scheme": "scheme",
116 "path": "with:colon"
117 },
118 "scheme:with:colon"
119 ]
120]
Note: See TracBrowser for help on using the repository browser.