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
|
<?php
/**
* Tests for the TrustRoot module
*/
require_once "Auth/OpenID/TrustRoot.php";
require_once "Tests/Auth/OpenID/TestUtil.php";
require_once "PHPUnit.php";
class Tests_Auth_OpenID_TRParseCase extends PHPUnit_TestCase {
function Tests_Auth_OpenID_TRParseCase($desc, $case, $expected)
{
$this->setName($desc);
$this->case = $case;
$this->expected = $expected;
}
function runTest()
{
$is_sane = Auth_OpenID_TrustRoot::isSane($this->case);
$parsed = (bool)Auth_OpenID_TrustRoot::_parse($this->case);
switch ($this->expected) {
case 'sane':
$this->assertTrue($is_sane);
$this->assertTrue($parsed);
break;
case 'insane':
$this->assertTrue($parsed);
$this->assertFalse($is_sane);
break;
default:
$this->assertFalse($parsed);
$this->assertFalse($is_sane);
}
}
}
class Tests_Auth_OpenID_TRMatchCase extends PHPUnit_TestCase {
function Tests_Auth_OpenID_TRMatchCase($desc, $tr, $rt, $matches)
{
$this->setName($desc);
$this->tr = $tr;
$this->rt = $rt;
$this->matches = $matches;
}
function runTest()
{
$matches = Auth_OpenID_TrustRoot::match($this->tr, $this->rt);
$this->assertEquals((bool)$this->matches, (bool)$matches);
}
}
function Tests_Auth_OpenID_parseHeadings($data, $c)
{
$heading_pat = '/(^|\n)' . $c . '{40}\n([^\n]+)\n' . $c . '{40}\n()/';
$offset = 0;
$headings = array();
while (true) {
preg_match($heading_pat, substr($data, $offset), $matches,
PREG_OFFSET_CAPTURE);
if (!$matches) {
break;
}
$start = $matches[0][1];
$heading = $matches[2][0];
$end = $matches[3][1];
$headings[] = array('heading' => $heading,
'start' => $offset + $start,
'end' => $offset + $end,
);
$offset += $end;
}
return $headings;
}
function Tests_Auth_OpenID_getSections($data)
{
$headings = Tests_Auth_OpenID_parseHeadings($data, '-');
$sections = array();
$n = count($headings);
for ($i = 0; $i < $n; ) {
$secdata = $headings[$i];
list($numtests, $desc) = explode(': ', $secdata['heading']);
$start = $secdata['end'];
$i += 1;
if ($i < $n) {
$blob = substr($data, $start, $headings[$i]['start'] - $start);
} else {
$blob = substr($data, $start);
}
$lines = explode("\n", trim($blob));
if (count($lines) != $numtests) {
trigger_error('Parse failure: ' . var_export($secdata, true),
E_USER_ERROR);
}
$sections[] = array('desc' => $desc, 'lines' => $lines,);
}
return $sections;
}
function Tests_Auth_OpenID_trParseTests($head, $tests)
{
$tests = array('fail' => $tests[0],
'insane' => $tests[1],
'sane' => $tests[2]);
$testobjs = array();
foreach ($tests as $expected => $testdata) {
$lines = $testdata['lines'];
foreach ($lines as $line) {
$desc = sprintf("%s - %s: %s", $head,
$testdata['desc'], var_export($line, true));
$testobjs[] = new Tests_Auth_OpenID_TRParseCase(
$desc, $line, $expected);
}
}
return $testobjs;
}
function Tests_Auth_OpenID_trMatchTests($head, $tests)
{
$tests = array(true => $tests[0], false => $tests[1]);
$testobjs = array();
foreach ($tests as $expected => $testdata) {
$lines = $testdata['lines'];
foreach ($lines as $line) {
$pat = '/^([^ ]+) +([^ ]+)$/';
preg_match($pat, $line, $matches);
list($_, $tr, $rt) = $matches;
$desc = sprintf("%s - %s: %s %s", $head, $testdata['desc'],
var_export($tr, true), var_export($rt, true));
$testobjs[] = new Tests_Auth_OpenID_TRMatchCase(
$desc, $tr, $rt, $expected);
}
}
return $testobjs;
}
function Tests_Auth_OpenID_trustRootTests()
{
$data = Tests_Auth_OpenID_readdata('trustroot.txt');
list($parsehead, $matchhead) = Tests_Auth_OpenID_parseHeadings($data, '=');
$pe = $parsehead['end'];
$parsedata = substr($data, $pe, $matchhead['start'] - $pe);
$parsetests = Tests_Auth_OpenID_getSections($parsedata);
$parsecases = Tests_Auth_OpenID_trParseTests($parsehead['heading'],
$parsetests);
$matchdata = substr($data, $matchhead['end']);
$matchtests = Tests_Auth_OpenID_getSections($matchdata);
$matchcases = Tests_Auth_OpenID_trMatchTests($matchhead['heading'],
$matchtests);
return array_merge($parsecases, $matchcases);
}
class Tests_Auth_OpenID_TrustRoot extends PHPUnit_TestSuite {
function Tests_Auth_OpenID_TrustRoot($name)
{
$this->setName($name);
foreach (Tests_Auth_OpenID_trustRootTests() as $test) {
$this->addTest($test);
}
}
}
|