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
|
<?php
/**
* A driver for the PHP OpenID unit tests.
*
* PHP versions 4 and 5
*
* LICENSE: See the COPYING file included in this distribution.
*
* @package OpenID
* @author JanRain, Inc. <openid@janrain.com>
* @copyright 2005 Janrain, Inc.
* @license http://www.gnu.org/copyleft/lesser.html LGPL
*/
require_once 'PHPUnit.php';
require_once 'PHPUnit/GUI/HTML.php';
error_reporting(E_ALL);
$__test_errors = array();
function __handler($code, $message)
{
global $__test_errors;
if ($code == E_USER_WARNING) {
$__test_errors[] = $message;
}
}
function __raiseError($message)
{
set_error_handler('__handler');
trigger_error($message, E_USER_WARNING);
restore_error_handler();
}
function __getError()
{
global $__test_errors;
if ($__test_errors) {
return array_pop($__test_errors);
}
return null;
}
/**
* Load the tests that are defined in the named modules.
*
* If you have Tests/Foo.php which defines a test class called
* Tests_Foo, the call would look like:
*
* loadTests('Tests/', array('Foo'))
*
* @param string $test_dir The root of the test hierarchy. Must end
* with a /
*
* @param array $test_names The names of the modules in which the
* tests are defined. This should not include the root of the test
* hierarchy.
*/
function loadTests($test_dir, $test_names)
{
$suites = array();
foreach ($test_names as $filename) {
$filename = $test_dir . $filename . '.php';
$class_name = str_replace(DIRECTORY_SEPARATOR, '_', $filename);
$class_name = basename($class_name, '.php');
global_require_once($filename);
$test = new $class_name($class_name);
if (is_a($test, 'PHPUnit_TestCase')) {
$s = new PHPUnit_TestSuite();
$s->setName($class_name);
$s->addTestSuite($class_name);
$test = $s;
$tc_array_name = $class_name . '_other';
if (array_key_exists($tc_array_name, $GLOBALS) &&
is_array($GLOBALS[$tc_array_name])) {
foreach ($GLOBALS[$tc_array_name] as $tc) {
$test->addTestSuite(get_class($tc));
}
}
}
$suites[] = $test;
}
return $suites;
}
function global_require_once($name)
{
require_once $name;
foreach (get_defined_vars() as $k => $v) {
if (!in_array($k, array('name', 'GLOBALS'))) {
$GLOBALS[$k] = $v;
}
}
}
$_test_dir = 'Tests/Auth/OpenID/';
$_test_names = array(
'Association',
'BigMath',
'Consumer',
'CryptUtil',
'DiffieHellman',
'HMACSHA1',
'KVForm',
'Util',
'Parse',
'StoreTest',
'Server',
'TrustRoot',
'Discover',
'OpenID_Yadis'
);
function selectTests($names)
{
global $_test_names;
$lnames = array_map('strtolower', $names);
$include = array();
$exclude = array();
foreach ($_test_names as $t) {
$l = strtolower($t);
if (in_array($l, $lnames)) {
$include[] = $t;
}
if (in_array("/$l", $lnames)) {
$exclude[] = $t;
}
}
if (!count($include)) {
$include = $_test_names;
}
return array_diff($include, $exclude);
}
// Load OpenID library tests
function loadSuite($names=null)
{
global $_test_names;
global $_test_dir;
if ($names === null) {
$names = $_test_names;
}
$selected = selectTests($names);
return loadTests($_test_dir, $selected);
}
?>
|