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