Commit 3303962d authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Describe tests with test keyword



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@2695 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 14427ee9
# Quis custodiet ipsos custodes?
#
# $Id$
test "basic default HTTP transactions"
server s1 -listen :9080 {
rxreq
txresp
......
# Quis custodiet ipsos custodes?
#
# $Id$
test "basic default HTTP transactions with expect"
server s1 -listen :9080 {
rxreq
expect req.request == GET
expect req.proto == HTTP/1.1
expect req.url == "/"
txresp -body "0123456789"
txresp
}
server s1 -start
......
# $Id$
test "basic default HTTP transactions with expect and options"
server s1 -listen :9080 {
rxreq
expect req.request == PUT
expect req.proto == HTTP/1.0
expect req.url == "/foo"
txresp -proto HTTP/1.2 -status 201 -msg Foo
}
server s1 -start
client c1 -connect localhost:9080 {
txreq -req PUT -proto HTTP/1.0 -url /foo
rxresp
expect resp.proto == HTTP/1.2
expect resp.status == 201
expect resp.msg == Foo
}
client c1 -run
server s1 -wait
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment