aboutsummaryrefslogtreecommitdiff
path: root/vendors/simpletest/test/user_agent_test.php
blob: 657c7e1555e37df70b8430da0b10c8557907e37a (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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?php
// $Id: user_agent_test.php 1509 2007-05-08 22:11:49Z lastcraft $
require_once(dirname(__FILE__) . '/../autorun.php');
require_once(dirname(__FILE__) . '/../user_agent.php');
require_once(dirname(__FILE__) . '/../authentication.php');
require_once(dirname(__FILE__) . '/../http.php');
require_once(dirname(__FILE__) . '/../encoding.php');
Mock::generate('SimpleHttpRequest');
Mock::generate('SimpleHttpResponse');
Mock::generate('SimpleHttpHeaders');
Mock::generatePartial('SimpleUserAgent', 'MockRequestUserAgent', array('_createHttpRequest'));

class TestOfFetchingUrlParameters extends UnitTestCase {
    
    function setUp() {
        $this->_headers = &new MockSimpleHttpHeaders();
        
        $this->_response = &new MockSimpleHttpResponse();
        $this->_response->setReturnValue('isError', false);
        $this->_response->setReturnReference('getHeaders', new MockSimpleHttpHeaders());
        
        $this->_request = &new MockSimpleHttpRequest();
        $this->_request->setReturnReference('fetch', $this->_response);
    }
    
    function testGetRequestWithoutIncidentGivesNoErrors() {
        $url = new SimpleUrl('http://test:secret@this.com/page.html');
        $url->addRequestParameters(array('a' => 'A', 'b' => 'B'));
        
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReference('_createHttpRequest', $this->_request);
        $agent->SimpleUserAgent();
        
        $response = &$agent->fetchResponse(
                new SimpleUrl('http://test:secret@this.com/page.html'),
                new SimpleGetEncoding(array('a' => 'A', 'b' => 'B')));
        $this->assertFalse($response->isError());
    }
}

class TestOfAdditionalHeaders extends UnitTestCase {
    
    function testAdditionalHeaderAddedToRequest() {
        $response = &new MockSimpleHttpResponse();
        $response->setReturnReference('getHeaders', new MockSimpleHttpHeaders());
        
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference('fetch', $response);
        $request->expectOnce(
                'addHeaderLine',
                array('User-Agent: SimpleTest'));
        
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReference('_createHttpRequest', $request);
        $agent->SimpleUserAgent();
        $agent->addHeader('User-Agent: SimpleTest');
        $response = &$agent->fetchResponse(new SimpleUrl('http://this.host/'), new SimpleGetEncoding());
    }
}

class TestOfBrowserCookies extends UnitTestCase {

    function &_createStandardResponse() {
        $response = &new MockSimpleHttpResponse();
        $response->setReturnValue("isError", false);
        $response->setReturnValue("getContent", "stuff");
        $response->setReturnReference("getHeaders", new MockSimpleHttpHeaders());
        return $response;
    }
    
    function &_createCookieSite($header_lines) {
        $headers = &new SimpleHttpHeaders($header_lines);
        
        $response = &new MockSimpleHttpResponse();
        $response->setReturnValue("isError", false);
        $response->setReturnReference("getHeaders", $headers);
        $response->setReturnValue("getContent", "stuff");
        
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference("fetch", $response);
        return $request;
    }
    
    function &_createMockedRequestUserAgent(&$request) {
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReference('_createHttpRequest', $request);
        $agent->SimpleUserAgent();
        return $agent;
    }
    
    function testCookieJarIsSentToRequest() {
        $jar = new SimpleCookieJar();
        $jar->setCookie('a', 'A');
        
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference('fetch', $this->_createStandardResponse());
        $request->expectOnce('readCookiesFromJar', array($jar, '*'));
        
        $agent = &$this->_createMockedRequestUserAgent($request);
        $agent->setCookie('a', 'A');
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
    }
      
    function testNoCookieJarIsSentToRequestWhenCookiesAreDisabled() {
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference('fetch', $this->_createStandardResponse());
        $request->expectNever('readCookiesFromJar');
        
        $agent = &$this->_createMockedRequestUserAgent($request);
        $agent->setCookie('a', 'A');
        $agent->ignoreCookies();
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
    }
  
    function testReadingNewCookie() {
        $request = &$this->_createCookieSite('Set-cookie: a=AAAA');
        $agent = &$this->_createMockedRequestUserAgent($request);
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
        $this->assertEqual($agent->getCookieValue("this.com", "this/path/", "a"), "AAAA");
    }
  
    function testIgnoringNewCookieWhenCookiesDisabled() {
        $request = &$this->_createCookieSite('Set-cookie: a=AAAA');
        $agent = &$this->_createMockedRequestUserAgent($request);
        $agent->ignoreCookies();
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
        $this->assertIdentical($agent->getCookieValue("this.com", "this/path/", "a"), false);
    }
   
    function testOverwriteCookieThatAlreadyExists() {
        $request = &$this->_createCookieSite('Set-cookie: a=AAAA');
        $agent = &$this->_createMockedRequestUserAgent($request);
        $agent->setCookie('a', 'A');
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
        $this->assertEqual($agent->getCookieValue("this.com", "this/path/", "a"), "AAAA");
    }
   
    function testClearCookieBySettingExpiry() {
        $request = &$this->_createCookieSite('Set-cookie: a=b');
        $agent = &$this->_createMockedRequestUserAgent($request);
        
        $agent->setCookie("a", "A", "this/path/", "Wed, 25-Dec-02 04:24:21 GMT");
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
        $this->assertIdentical(
                $agent->getCookieValue("this.com", "this/path/", "a"),
                "b");
        $agent->restart("Wed, 25-Dec-02 04:24:20 GMT");
        $this->assertIdentical(
                $agent->getCookieValue("this.com", "this/path/", "a"),
                false);
    }
    
    function testAgeingAndClearing() {
        $request = &$this->_createCookieSite('Set-cookie: a=A; expires=Wed, 25-Dec-02 04:24:21 GMT; path=/this/path');
        $agent = &$this->_createMockedRequestUserAgent($request);
        
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
        $agent->restart("Wed, 25-Dec-02 04:24:20 GMT");
        $this->assertIdentical(
                $agent->getCookieValue("this.com", "this/path/", "a"),
                "A");
        $agent->ageCookies(2);
        $agent->restart("Wed, 25-Dec-02 04:24:20 GMT");
        $this->assertIdentical(
                $agent->getCookieValue("this.com", "this/path/", "a"),
                false);
    }
    
    function testReadingIncomingAndSettingNewCookies() {
        $request = &$this->_createCookieSite('Set-cookie: a=AAA');
        $agent = &$this->_createMockedRequestUserAgent($request);
        
        $this->assertNull($agent->getBaseCookieValue("a", false));
        $agent->fetchResponse(
                new SimpleUrl('http://this.com/this/path/page.html'),
                new SimpleGetEncoding());
        $agent->setCookie("b", "BBB", "this.com", "this/path/");
        $this->assertEqual(
                $agent->getBaseCookieValue("a", new SimpleUrl('http://this.com/this/path/page.html')),
                "AAA");
        $this->assertEqual(
                $agent->getBaseCookieValue("b", new SimpleUrl('http://this.com/this/path/page.html')),
                "BBB");
    }
}

class TestOfHttpRedirects extends UnitTestCase {
    
    function &createRedirect($content, $redirect) {
        $headers = &new MockSimpleHttpHeaders();
        $headers->setReturnValue('isRedirect', (boolean)$redirect);
        $headers->setReturnValue('getLocation', $redirect);
        
        $response = &new MockSimpleHttpResponse();
        $response->setReturnValue('getContent', $content);
        $response->setReturnReference('getHeaders', $headers);
        
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference('fetch', $response);
        return $request;
    }
    
    function testDisabledRedirects() {
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReference(
                '_createHttpRequest',
                $this->createRedirect('stuff', 'there.html'));
        $agent->expectOnce('_createHttpRequest');
        $agent->SimpleUserAgent();
        
        $agent->setMaximumRedirects(0);
        $response = &$agent->fetchResponse(new SimpleUrl('here.html'), new SimpleGetEncoding());
        $this->assertEqual($response->getContent(), 'stuff');
    }
    
    function testSingleRedirect() {
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReferenceAt(
                0,
                '_createHttpRequest',
                $this->createRedirect('first', 'two.html'));
        $agent->setReturnReferenceAt(
                1,
                '_createHttpRequest',
                $this->createRedirect('second', 'three.html'));
        $agent->expectCallCount('_createHttpRequest', 2);
        $agent->SimpleUserAgent();
        
        $agent->setMaximumRedirects(1);
        $response = &$agent->fetchResponse(new SimpleUrl('one.html'), new SimpleGetEncoding());
        $this->assertEqual($response->getContent(), 'second');
    }
    
    function testDoubleRedirect() {
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReferenceAt(
                0,
                '_createHttpRequest',
                $this->createRedirect('first', 'two.html'));
        $agent->setReturnReferenceAt(
                1,
                '_createHttpRequest',
                $this->createRedirect('second', 'three.html'));
        $agent->setReturnReferenceAt(
                2,
                '_createHttpRequest',
                $this->createRedirect('third', 'four.html'));
        $agent->expectCallCount('_createHttpRequest', 3);
        $agent->SimpleUserAgent();
        
        $agent->setMaximumRedirects(2);
        $response = &$agent->fetchResponse(new SimpleUrl('one.html'), new SimpleGetEncoding());
        $this->assertEqual($response->getContent(), 'third');
    }
    
    function testSuccessAfterRedirect() {
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReferenceAt(
                0,
                '_createHttpRequest',
                $this->createRedirect('first', 'two.html'));
        $agent->setReturnReferenceAt(
                1,
                '_createHttpRequest',
                $this->createRedirect('second', false));
        $agent->setReturnReferenceAt(
                2,
                '_createHttpRequest',
                $this->createRedirect('third', 'four.html'));
        $agent->expectCallCount('_createHttpRequest', 2);
        $agent->SimpleUserAgent();
        
        $agent->setMaximumRedirects(2);
        $response = &$agent->fetchResponse(new SimpleUrl('one.html'), new SimpleGetEncoding());
        $this->assertEqual($response->getContent(), 'second');
    }
    
    function testRedirectChangesPostToGet() {
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReferenceAt(
                0,
                '_createHttpRequest',
                $this->createRedirect('first', 'two.html'));
        $agent->expectArgumentsAt(0, '_createHttpRequest', array('*', new IsAExpectation('SimplePostEncoding')));
        $agent->setReturnReferenceAt(
                1,
                '_createHttpRequest',
                $this->createRedirect('second', 'three.html'));
        $agent->expectArgumentsAt(1, '_createHttpRequest', array('*', new IsAExpectation('SimpleGetEncoding')));
        $agent->expectCallCount('_createHttpRequest', 2);
        $agent->SimpleUserAgent();
        $agent->setMaximumRedirects(1);
        $response = &$agent->fetchResponse(new SimpleUrl('one.html'), new SimplePostEncoding());
    }
}

class TestOfBadHosts extends UnitTestCase {
    
    function &_createSimulatedBadHost() {
        $response = &new MockSimpleHttpResponse();
        $response->setReturnValue('isError', true);
        $response->setReturnValue('getError', 'Bad socket');
        $response->setReturnValue('getContent', false);
        
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference('fetch', $response);
        return $request;
    }
    
    function testUntestedHost() {
        $request = &$this->_createSimulatedBadHost();
        
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReference('_createHttpRequest', $request);
        $agent->SimpleUserAgent();
        
        $response = &$agent->fetchResponse(
                new SimpleUrl('http://this.host/this/path/page.html'),
                new SimpleGetEncoding());
        $this->assertTrue($response->isError());
    }
}

class TestOfAuthorisation extends UnitTestCase {
    
    function testAuthenticateHeaderAdded() {
        $response = &new MockSimpleHttpResponse();
        $response->setReturnReference('getHeaders', new MockSimpleHttpHeaders());
        
        $request = &new MockSimpleHttpRequest();
        $request->setReturnReference('fetch', $response);
        $request->expectOnce(
                'addHeaderLine',
                array('Authorization: Basic ' . base64_encode('test:secret')));
        
        $agent = &new MockRequestUserAgent();
        $agent->setReturnReference('_createHttpRequest', $request);
        $agent->SimpleUserAgent();
        $response = &$agent->fetchResponse(
                new SimpleUrl('http://test:secret@this.host'),
                new SimpleGetEncoding());
    }
}
?>