forked from apereo/phpCAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultiRequestTest.php
More file actions
executable file
·152 lines (135 loc) · 4.72 KB
/
MultiRequestTest.php
File metadata and controls
executable file
·152 lines (135 loc) · 4.72 KB
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
<?php
/**
* Licensed to Jasig under one or more contributor license
* agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* Jasig licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
require_once dirname(__FILE__).'/../harness/DummyRequest.php';
require_once dirname(__FILE__).'/../harness/DummyMultiRequest.php';
require_once dirname(__FILE__).'/../harness/BasicResponse.php';
/**
* Test class for verifying the operation of service tickets.
*
*
* Generated by PHPUnit on 2010-09-07 at 13:33:53.
*/
class MultiRequestTest extends PHPUnit_Framework_TestCase
{
/**
* @var CAS_Client
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
/*********************************************************
* Enumerate our responses
*********************************************************/
$response = new CAS_TestHarness_BasicResponse('http', 'www.jasig.org', '/some/path');
$response->ensureIsGet();
$response->setResponseHeaders(array(
'HTTP/1.1 200 OK',
'Date: Wed, 29 Sep 2010 19:20:57 GMT',
'Server: Apache-Coyote/1.1',
'Pragma: no-cache',
'Expires: Thu, 01 Jan 1970 00:00:00 GMT',
'Cache-Control: no-cache, no-store',
'Content-Type: text/html;charset=UTF-8',
'Content-Language: en-US',
'Via: 1.1 cas.example.edu',
'Connection: close',
'Transfer-Encoding: chunked',
));
$response->setResponseBody(
"I am Jasig");
CAS_TestHarness_DummyRequest::addResponse($response);
$response = new CAS_TestHarness_BasicResponse('http', 'www.example.org', '/some/other/path');
$response->ensureIsGet();
$response->setResponseHeaders(array(
'HTTP/1.1 200 OK',
'Date: Wed, 29 Sep 2010 19:20:57 GMT',
'Server: Apache-Coyote/1.1',
'Pragma: no-cache',
'Expires: Thu, 01 Jan 1970 00:00:00 GMT',
'Cache-Control: no-cache, no-store',
'Content-Type: text/html;charset=UTF-8',
'Content-Language: en-US',
'Via: 1.1 cas.example.edu',
'Connection: close',
'Transfer-Encoding: chunked',
));
$response->setResponseBody(
"I am Example");
CAS_TestHarness_DummyRequest::addResponse($response);
$response = new CAS_TestHarness_BasicResponse('http', 'www.educause.edu', '/path');
$response->ensureIsGet();
$response->setResponseHeaders(array(
'HTTP/1.1 200 OK',
'Date: Wed, 29 Sep 2010 19:20:57 GMT',
'Server: Apache-Coyote/1.1',
'Pragma: no-cache',
'Expires: Thu, 01 Jan 1970 00:00:00 GMT',
'Cache-Control: no-cache, no-store',
'Content-Type: text/html;charset=UTF-8',
'Content-Language: en-US',
'Via: 1.1 cas.example.edu',
'Connection: close',
'Transfer-Encoding: chunked',
));
$response->setResponseBody(
"I am Educause");
CAS_TestHarness_DummyRequest::addResponse($response);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
CAS_TestHarness_DummyRequest::clearResponses();
}
/**
* Test a single request
*/
public function test_single() {
$request = new CAS_TestHarness_DummyRequest();
$request->setUrl('http://www.example.org/some/other/path');
$this->assertTrue($request->send());
$this->assertEquals("I am Example", $request->getResponseBody());
}
/**
* Test a multiple requests
*/
public function test_multiple() {
$multi = new CAS_TestHarness_DummyMultiRequest();
$request1 = new CAS_TestHarness_DummyRequest();
$request1->setUrl('http://www.jasig.org/some/path');
$multi->addRequest($request1);
$request2 = new CAS_TestHarness_DummyRequest();
$request2->setUrl('http://www.example.org/some/other/path');
$multi->addRequest($request2);
$request3 = new CAS_TestHarness_DummyRequest();
$request3->setUrl('http://www.educause.edu/path');
$multi->addRequest($request3);
$multi->send();
$this->assertEquals("I am Jasig", $request1->getResponseBody());
$this->assertEquals("I am Example", $request2->getResponseBody());
$this->assertEquals("I am Educause", $request3->getResponseBody());
}
}
?>