diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/lib1560.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/libtest/lib1560.c b/tests/libtest/lib1560.c index d161423e3..7f8accc7d 100644 --- a/tests/libtest/lib1560.c +++ b/tests/libtest/lib1560.c @@ -140,6 +140,26 @@ static struct testcase get_parts_list[] ={ "file | [11] | [12] | [13] | [14] | [15] | C:\\programs\\foo | [16] | [17]", CURLU_DEFAULT_SCHEME, 0, CURLUE_OK}, #endif + {"https://example.com/color/#green?no-black", + "https | [11] | [12] | [13] | example.com | [15] | /color/ | [16] | " + "green?no-black", + CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, + {"https://example.com/color/#green#no-black", + "https | [11] | [12] | [13] | example.com | [15] | /color/ | [16] | " + "green#no-black", + CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, + {"https://example.com/color/?green#no-black", + "https | [11] | [12] | [13] | example.com | [15] | /color/ | green | " + "no-black", + CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, + {"https://example.com/#color/?green#no-black", + "https | [11] | [12] | [13] | example.com | [15] | / | [16] | " + "color/?green#no-black", + CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, + {"https://example.#com/color/?green#no-black", + "https | [11] | [12] | [13] | example. | [15] | / | [16] | " + "com/color/?green#no-black", + CURLU_DEFAULT_SCHEME, 0, CURLUE_OK }, {"http://[ab.be:1]/x", "", CURLU_DEFAULT_SCHEME, 0, CURLUE_MALFORMED_INPUT}, {"http://[ab.be]/x", "", |