diff options
author | Omar Polo <op@omarpolo.com> | 2022-07-04 08:15:39 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-07-04 08:15:39 +0000 |
commit | 5e41063f1b0cd8f096ec925777bc4cf4ef6ba828 (patch) | |
tree | 466aab4a55073ff0ae293e9b290caeafe2ac8bf5 /regress/iri_test.c | |
parent | df9b3790817d4d64fee06e046a479a67d4a91b13 (diff) |
bugfix: allow @ and : in paths
gmid would disallow the '@' and ':' characters in paths (unless
percent-encoded.) Issue reported by freezr.
Diffstat (limited to 'regress/iri_test.c')
-rw-r--r-- | regress/iri_test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/regress/iri_test.c b/regress/iri_test.c index 6595f92..c6725b5 100644 --- a/regress/iri_test.c +++ b/regress/iri_test.c @@ -198,6 +198,10 @@ main(void) PASS, IRI("http", "a", "", "", "", ""), "avoid infinite loops (see v1.6.1)"); + TEST("gemini://example.com/@f:b!(z$&)/baz", + PASS, + IRI("gemini", "example.com", "", "@f:b!(z$&)/baz", "", ""), + "allow @, :, !, (), $ and & in paths"); /* query */ TEST("foo://example.com/foo/?gne", |