-
Notifications
You must be signed in to change notification settings - Fork 75
/
dav_chunked.t
102 lines (67 loc) · 1.77 KB
/
dav_chunked.t
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
#!/usr/bin/perl
# (C) Maxim Dounin
# Tests for nginx dav module with chunked request body.
###############################################################################
use warnings;
use strict;
use Test::More;
use Socket qw/ CRLF /;
BEGIN { use FindBin; chdir($FindBin::Bin); }
use lib 'lib';
use Test::Nginx;
###############################################################################
select STDERR; $| = 1;
select STDOUT; $| = 1;
my $t = Test::Nginx->new()->has(qw/http dav/)->plan(6);
$t->write_file_expand('nginx.conf', <<'EOF');
%%TEST_GLOBALS%%
daemon off;
events {
}
http {
%%TEST_GLOBALS_HTTP%%
server {
listen 127.0.0.1:8080;
server_name localhost;
client_header_buffer_size 1k;
client_body_buffer_size 2k;
location / {
dav_methods PUT;
}
}
}
EOF
$t->run();
###############################################################################
my $r;
$r = http(<<EOF);
PUT /file HTTP/1.1
Host: localhost
Connection: close
Transfer-Encoding: chunked
a
1234567890
0
EOF
like($r, qr/201 Created.*(Content-Length|\x0d\0a0\x0d\x0a)/ms, 'put chunked');
is($t->read_file('file'), '1234567890', 'put content');
$r = http(<<EOF);
PUT /file HTTP/1.1
Host: localhost
Connection: close
Transfer-Encoding: chunked
0
EOF
like($r, qr/204 No Content/, 'put chunked empty');
is($t->read_file('file'), '', 'put empty content');
my $body = ('a' . CRLF . '1234567890' . CRLF) x 1024 . '0' . CRLF . CRLF;
$r = http(<<EOF);
PUT /file HTTP/1.1
Host: localhost
Connection: close
Transfer-Encoding: chunked
$body
EOF
like($r, qr/204 No Content/, 'put chunked big');
is($t->read_file('file'), '1234567890' x 1024, 'put big content');
###############################################################################