|
135 | 135 | "description": "an invalid URI with comma in scheme", |
136 | 136 | "data": "bar,baz:foo", |
137 | 137 | "valid": false |
| 138 | + }, |
| 139 | + { |
| 140 | + "description": "invalid userinfo", |
| 141 | + "data": "https://[@example.org/test.txt", |
| 142 | + "valid": false |
| 143 | + }, |
| 144 | + { |
| 145 | + "description": "unescaped non US-ASCII characters", |
| 146 | + "data": "https://example.org/foobar®.txt", |
| 147 | + "valid": false |
| 148 | + }, |
| 149 | + { |
| 150 | + "description": "invalid backslash character", |
| 151 | + "data": "https://example.org/foobar\\.txt", |
| 152 | + "valid": false |
| 153 | + }, |
| 154 | + { |
| 155 | + "description": "invalid \" character", |
| 156 | + "data": "https://example.org/foobar\".txt", |
| 157 | + "valid": false |
| 158 | + }, |
| 159 | + { |
| 160 | + "description": "invalid <> characters", |
| 161 | + "data": "https://example.org/foobar<>.txt", |
| 162 | + "valid": false |
| 163 | + }, |
| 164 | + { |
| 165 | + "description": "invalid {} characters", |
| 166 | + "data": "https://example.org/foobar{}.txt", |
| 167 | + "valid": false |
| 168 | + }, |
| 169 | + { |
| 170 | + "description": "invalid ^ character", |
| 171 | + "data": "https://example.org/foobar^.txt", |
| 172 | + "valid": false |
| 173 | + }, |
| 174 | + { |
| 175 | + "description": "invalid ` character", |
| 176 | + "data": "https://example.org/foobar`.txt", |
| 177 | + "valid": false |
| 178 | + }, |
| 179 | + { |
| 180 | + "description": "invalid SPACE character", |
| 181 | + "data": "https://example.org/foo bar.txt", |
| 182 | + "valid": false |
| 183 | + }, |
| 184 | + { |
| 185 | + "description": "invalid | character", |
| 186 | + "data": "https://example.org/foobar|.txt", |
| 187 | + "valid": false |
138 | 188 | } |
139 | 189 | ] |
140 | 190 | } |
|
0 commit comments