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 | | |
| inherit "../pike_async_process_test_common"; | | | string simple_check( ) | { | return | common_wait( ([ 2:"Illegal headers", | 3:"Illegal data", | 4:"Connection failed", | 5:"Bad protocol value in reply", | 6:"Bad response code in reply", | 7:"No date header", | 8:"Bad or no content-length header", | 9:"Bad or no last-modified header", | 11:"Did not expect headers", | 12:"Did not expect data", | 13:"Did not expect connection", | 14:"Did not expect valid reply", | ]) ); | } | | function run( string script, string file, int|string ... ma ) | { | return lambda() { | run_pikescript( script, file, @((array(string))ma) ); | }; | } | | #define rtest( COMMENT, SCRIPT, PATH, ARGS...) \ | atest(COMMENT, run(SCRIPT, PATH, ARGS), simple_check) | | | constant descriptions = ({ | "Trivial", | "Bad path", | "Bad path suffix", | "Bad HTTP version", | "No Connection header", | "Bad Connection header", | "No Upgrade header", | "Bad Upgrade header", | "No Sec-WebSocket-Version header", | "Bad Sec-WebSocket-Version header", | "No Sec-WebSocket-Key header", | "Bad Sec-WebSocket-Key header", | }); | | void setup( ) | { | foreach(descriptions; int i; string descr) { | rtest(descr, "http/websocket.pike", "/websocket_example/", i, descr); | } | } | | |
|