1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
INCLUDE $TOP/test/config.htb
# XXX TODO NOTE FIXME
CLIENT
_REQ $YOUR_HOST $YOUR_PORT
__GET /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__
_EXPECT . "HTTP/1.1 200 OK"
_EXPECT . "AS1"
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__POST /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__Content-Length: 9
__
__==RQ1==
_EXPECT . "HTTP/1.1 200 OK"
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__POST /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__Content-Length: AUTO
__
__==RQ1==
_EXPECT . "HTTP/1.1 200 OK"
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__POST /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__Transfer-Encoding: chunked
_FLUSH
__==RQ1==
_CHUNK
__
__0
__
_EXPECT . "HTTP/1.1 200 OK"
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__GET /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__
_EXPECT . "HTTP/1.1 200 OK"
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__GET /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__
_MATCH headers "Foobar: (.*)" MY_VAR
_MATCH body "<id xsl:foo>(.*)</id>" MY_VAR2
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__GET /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__Foobar1: $MY_VAR
__Foobar2: $MY_VAR2
__
_WAIT
_REQ $YOUR_HOST $YOUR_PORT
__GET /your/path/to/your/resource?your=params HTTP/1.1
__Host: $YOUR_HOST
__User-Agent: mozilla
__
_EXPECT . "==AS1 - 7=="
_WAIT
END
SERVER $YOUR_PORT
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Length: AUTO
__Content-Type: text/html
__
__==AS1 - 0==
__
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Length: AUTO
__Content-Type: text/html
__
__==AS1 - 1==
__
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Length: AUTO
__Content-Type: text/html
__
__==AS1 - 2==
__
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Length: AUTO
__Content-Type: text/html
__
__==AS1 - 3==
__
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Type: text/html
__Transfer-Encoding: chunked
_FLUSH
__==AS1 - 4 - 0==
_CHUNK
__==AS1 - 4 - 1==
_CHUNK
__==AS1 - 4 - 2==
_CHUNK
__
_CHUNK
_CHUNK
__
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Length: AUTO
__Content-Type: text/html
__Foobar: Hello World
__
__<id xsl:foo>Hallo Welt </id>
__==AS1 - 5==
__
_RES
_EXPECT . "Hello World"
_EXPECT . "Hallo Welt"
_WAIT
__HTTP/1.1 200 OK
__Content-Length: AUTO
__Content-Type: text/html
__
__==AS1 - 6==
__
_RES
_WAIT
__HTTP/1.1 200 OK
__Content-Type: text/html
__Connection: close
__
__==AS1 - 7==
__==AS1 - 7==
__
__
__
__
__
__==AS1 - 7==
__
_CLOSE
END
|