summaryrefslogtreecommitdiff
path: root/tests/data/test432
blob: fd056c36808479277a0fb28c0670ff4744ae17db (plain)
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
<testcase>
# Derived from on https://github.com/curl/curl/issues/5120
<info>
<keywords>
--next
--config
POST
</keywords>
</info>

#
# Server-side
<reply>
<data1>
HTTP/1.1 200 OK
Content-Length: 6
Content-Type: text/1

-foo-
</data1>
<data2>
HTTP/1.1 200 OK
Content-Length: 6
Content-Type: text/2

-foo-
</data2>
<data3>
HTTP/1.1 200 OK
Content-Length: 6
Content-Type: text/3

-foo-
</data3>
</reply>

#
# Client-side
<client>
<file1 name="%LOGDIR/config%TESTNUMBER">
--next
url = %HOSTIP:%HTTPPORT/%TESTNUMBER0001
header = "a: a"
data = "a"
--next
url = %HOSTIP:%HTTPPORT/%TESTNUMBER0002
header = "b: b"
data = "b"
config = "%LOGDIR/config%TESTNUMBER-c"
</file1>
<file2 name="%LOGDIR/config%TESTNUMBER-c">
--next
url = %HOSTIP:%HTTPPORT/%TESTNUMBER0003
header = "c: c"
data = "c"
</file2>

<server>
http
</server>
 <name>
Use -K with --next and --config from within
 </name>
 <command>
-K %LOGDIR/config%TESTNUMBER
</command>
</client>

#
# Verify data after the test has been "shot"
<verify>
<protocol nonewline="yes">
POST /%TESTNUMBER0001 HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
a: a
Content-Length: 1
Content-Type: application/x-www-form-urlencoded

aPOST /%TESTNUMBER0002 HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
b: b
Content-Length: 1
Content-Type: application/x-www-form-urlencoded

bPOST /%TESTNUMBER0003 HTTP/1.1
Host: %HOSTIP:%HTTPPORT
User-Agent: curl/%VERSION
Accept: */*
c: c
Content-Length: 1
Content-Type: application/x-www-form-urlencoded

c
</protocol>
</verify>
</testcase>