forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPMATestCase.php
More file actions
95 lines (81 loc) · 2.82 KB
/
Copy pathPMATestCase.php
File metadata and controls
95 lines (81 loc) · 2.82 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
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Base class for phpMyAdmin tests
*
* @package PhpMyAdmin-test
*/
class PMATestCase extends PHPUnit_Framework_TestCase
{
protected $restoreInstance = null;
protected $attrInstance = null;
/**
* This method is called before the first test of this test class is run.
*/
public static function setUpBeforeClass()
{
require 'libraries/config.default.php';
$GLOBALS['cfg'] = $cfg;
}
/**
* Creates mock of Response object for header testing
*
* @param mixed $param parameter for header method
*
* @return void
*/
public function mockResponse()
{
$this->restoreInstance = PMA\libraries\Response::getInstance();
$mockResponse = $this->getMockBuilder('PMA\libraries\Response')
->disableOriginalConstructor()
->setMethods(array(
'header', 'headersSent', 'disable', 'isAjax',
'setRequestStatus', 'addJSON', 'addHTML',
'getFooter', 'getHeader','httpResponseCode',
))
->getMock();
$mockResponse->expects($this->any())
->method('headersSent')
->with()
->will($this->returnValue(false));
$param = func_get_args();
if (count($param) > 0) {
if (is_array($param[0])) {
if (is_array($param[0][0]) && count($param) == 1) {
$param = $param[0];
if(is_int(end($param))){
$http_response_code_param = end($param);
$param = array_slice($param, 0, -1);
$header_method = $mockResponse->expects($this->once())
->method('httpResponseCode')->with($http_response_code_param);
}
}
$header_method = $mockResponse->expects($this->exactly(count($param)))
->method('header');
call_user_func_array(array($header_method, 'withConsecutive'), $param);
} else {
$mockResponse->expects($this->once())
->method('header')
->with($param[0]);
}
}
$this->attrInstance = new ReflectionProperty('PMA\libraries\Response', '_instance');
$this->attrInstance->setAccessible(true);
$this->attrInstance->setValue($mockResponse);
return $mockResponse;
}
/**
*Tear down function for mockResponse method
*
*@return void
*/
protected function tearDown()
{
if (! is_null($this->attrInstance) && ! is_null($this->restoreInstance)) {
$this->attrInstance->setValue($this->restoreInstance);
$this->restoreInstance = null;
$this->attrInstance = null;
}
}
}