summaryrefslogtreecommitdiff
path: root/tests/url/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-07-29 11:39:56 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-07-29 11:39:56 +0200
commitae148a31b891c760eb08a6f9a2c279f6d7dd6ec2 (patch)
tree2319b9055a49554ea98455da1afcf69784216147 /tests/url/GNUmakefile
parentff98cc74fd06ef167eb2404ce93051d92dd75caf (diff)
downloadcrawler-ae148a31b891c760eb08a6f9a2c279f6d7dd6ec2.tar.gz
crawler-ae148a31b891c760eb08a6f9a2c279f6d7dd6ec2.tar.bz2
started to add simple parseUrl implementation
Diffstat (limited to 'tests/url/GNUmakefile')
-rw-r--r--tests/url/GNUmakefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/url/GNUmakefile b/tests/url/GNUmakefile
index 81d7a0e..be50549 100644
--- a/tests/url/GNUmakefile
+++ b/tests/url/GNUmakefile
@@ -27,5 +27,10 @@ local_clean:
local_distclean:
local_test:
- @-./exec_test test1 "output normal URL" http://www.andreasbaumann.cc/index.html
- @-./exec_test test2 "normalize a relative URL" http://www.andreasbaumann.cc/index.html /software.html
+ @-./exec_test test1 test1 "parse illegal protocol" www.andreasbaumann.cc
+ @-./exec_test test1 test2 "parse normal start URL without slash" http://www.andreasbaumann.cc
+ @-./exec_test test1 test3 "parse normal start URL with slash" http://www.andreasbaumann.cc/
+ @-./exec_test test1 test4 "parse normal URL" http://www.andreasbaumann.cc/index.html
+ @-./exec_test test1 test5 "parse normal URL with default port" http://www.andreasbaumann.cc:80/index.html
+ @-./exec_test test1 test6 "parse normal URL with non-standard port" http://www.andreasbaumann.cc:8080/index.html
+ @-./exec_test test2 test100 "normalize a relative URL" http://www.andreasbaumann.cc/index.html /software.html