USING: http tools.test multiline tuple-syntax io.streams.string kernel arrays splitting sequences assocs io.sockets db db.sqlite continuations urls ; IN: http.tests : lf>crlf "\n" split "\r\n" join ; STRING: read-request-test-1 GET http://foo/bar HTTP/1.1 Some-Header: 1 Some-Header: 2 Content-Length: 4 blah ; [ TUPLE{ request url: TUPLE{ url protocol: "http" port: 80 path: "/bar" } method: "GET" version: "1.1" header: H{ { "some-header" "1; 2" } { "content-length" "4" } } post-data: "blah" cookies: V{ } } ] [ read-request-test-1 lf>crlf [ read-request ] with-string-reader ] unit-test STRING: read-request-test-1' GET /bar HTTP/1.1 content-length: 4 some-header: 1; 2 blah ; read-request-test-1' 1array [ read-request-test-1 lf>crlf [ read-request ] with-string-reader [ write-request ] with-string-writer ! normalize crlf string-lines "\n" join ] unit-test STRING: read-request-test-2 HEAD http://foo/bar HTTP/1.1 Host: www.sex.com ; [ TUPLE{ request url: TUPLE{ url protocol: "http" port: 80 host: "www.sex.com" path: "/bar" } method: "HEAD" version: "1.1" header: H{ { "host" "www.sex.com" } } cookies: V{ } } ] [ read-request-test-2 lf>crlf [ read-request ] with-string-reader ] unit-test STRING: read-request-test-3 GET nested HTTP/1.0 ; [ read-request-test-3 [ read-request ] with-string-reader ] [ "Bad request: URL" = ] must-fail-with STRING: read-response-test-1 HTTP/1.1 404 not found Content-Type: text/html; charset=UTF8 blah ; [ TUPLE{ response version: "1.1" code: 404 message: "not found" header: H{ { "content-type" "text/html; charset=UTF8" } } cookies: V{ } content-type: "text/html" content-charset: "UTF8" } ] [ read-response-test-1 lf>crlf [ read-response ] with-string-reader ] unit-test STRING: read-response-test-1' HTTP/1.1 404 not found content-type: text/html; charset=UTF8 ; read-response-test-1' 1array [ read-response-test-1 lf>crlf [ read-response ] with-string-reader [ write-response ] with-string-writer ! normalize crlf string-lines "\n" join ] unit-test [ t ] [ "rmid=732423sdfs73242; path=/; domain=.example.net; expires=Fri, 31-Dec-2010 23:59:59 GMT" dup parse-cookies unparse-cookies = ] unit-test ! Live-fire exercise USING: http.server http.server.static furnace.sessions furnace.actions furnace.auth.login furnace.db http.client io.server io.files io io.encodings.ascii accessors namespaces threads http.server.responses http.server.redirection http.server.dispatchers ; : add-quit-action [ stop-server "Goodbye" "text/html" ] >>display "quit" add-responder ; : test-db "test.db" temp-file sqlite-db ; [ test-db drop delete-file ] ignore-errors test-db [ init-sessions-table ] with-db [ ] [ [ add-quit-action "resource:extra/http/test" >>default "nested" add-responder [ URL" redirect-loop" ] >>display "redirect-loop" add-responder main-responder set [ 1237 httpd ] "HTTPD test" spawn drop ] with-scope ] unit-test [ ] [ 100 sleep ] unit-test [ t ] [ "resource:extra/http/test/foo.html" ascii file-contents "http://localhost:1237/nested/foo.html" http-get = ] unit-test [ "http://localhost:1237/redirect-loop" http-get ] [ too-many-redirects? ] must-fail-with [ "Goodbye" ] [ "http://localhost:1237/quit" http-get ] unit-test ! Dispatcher bugs [ ] [ [ f "" add-responder add-quit-action "a" add-main-responder "d" add-responder test-db main-responder set [ 1237 httpd ] "HTTPD test" spawn drop ] with-scope ] unit-test [ ] [ 100 sleep ] unit-test : 404? [ download-failed? ] [ response>> code>> 404 = ] bi and ; ! This should give a 404 not an infinite redirect loop [ "http://localhost:1237/d/blah" http-get ] [ 404? ] must-fail-with ! This should give a 404 not an infinite redirect loop [ "http://localhost:1237/blah/" http-get ] [ 404? ] must-fail-with [ "Goodbye" ] [ "http://localhost:1237/quit" http-get ] unit-test [ ] [ [ [ [ "Hi" write ] "text/plain" ] >>display "" add-responder add-quit-action test-db main-responder set [ 1237 httpd ] "HTTPD test" spawn drop ] with-scope ] unit-test [ ] [ 100 sleep ] unit-test [ "Hi" ] [ "http://localhost:1237/" http-get ] unit-test [ "Goodbye" ] [ "http://localhost:1237/quit" http-get ] unit-test