1<testcase> 2<info> 3<keywords> 4HTTP 5HTTP GET 6--fail 7</keywords> 8</info> 9 10# Server-side 11<reply> 12<data nocheck="yes"> 13HTTP/1.0 401 BAD BOY 14Server: swsclose 15Content-Type: text/html 16 17This contains a response code >= 400, so curl shouldn't display this. Even 18though it's a response code that triggers authentication, we're not using 19authentication so we should still fail. 20</data> 21</reply> 22 23# Client-side 24<client> 25<server> 26http 27</server> 28<name> 29HTTP GET with an error code that might trick authentication and --fail 30</name> 31<command> 32http://%HOSTIP:%HTTPPORT/%TESTNUMBER --fail 33</command> 34</client> 35 36# Verify data after the test has been "shot" 37<verify> 38<protocol> 39GET /%TESTNUMBER HTTP/1.1 40Host: %HOSTIP:%HTTPPORT 41User-Agent: curl/%VERSION 42Accept: */* 43 44</protocol> 45<errorcode> 4622 47</errorcode> 48</verify> 49</testcase> 50