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
|
<?php
/**
* Tests for the Consumer parsing functions.
*
* PHP versions 4 and 5
*
* LICENSE: See the COPYING file included in this distribution.
*
* @package OpenID
* @author JanRain, Inc. <openid@janrain.com>
* @copyright 2005-2008 Janrain, Inc.
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache
*/
require_once 'Tests/Auth/OpenID/TestUtil.php';
require_once 'Auth/OpenID/Parse.php';
class Tests_Auth_OpenID_Link extends PHPUnit_Framework_TestCase {
function Tests_Auth_OpenID_Link($case)
{
list($desc, $markup, $links, $case_text) = $case;
$this->desc = $desc;
$this->markup = $markup;
$this->expected_links = $links;
$this->case_text = $case_text;
$this->parser = new Auth_OpenID_Parse();
}
function getName()
{
return $this->desc;
}
function runTest()
{
$parsed = $this->parser->parseLinkAttrs($this->markup);
$i = 0;
foreach ($this->expected_links as $expected) {
list($is_optional_link, $expected_link) = $expected;
if ($is_optional_link &&
($i >= count($parsed))) {
continue;
}
if (count($parsed) <= $i) {
$i++;
continue;
}
$act_link = $parsed[$i];
$increment = true;
foreach ($expected_link as $attr => $data) {
list($is_optional_attr, $value) = $data;
if ($is_optional_attr) {
$actual_value = null;
if (array_key_exists($attr, $act_link)) {
$actual_value = $act_link[$attr];
} else {
continue;
}
} else {
$actual_value = $act_link[$attr];
}
if ($is_optional_link &&
($value != $actual_value)) {
$increment = false;
break;
}
$this->assertEquals($value, $actual_value);
}
if ($increment) {
$i++;
}
}
$this->assertEquals($i, count($parsed));
}
}
class NumTestCases extends PHPUnit_Framework_TestCase {
function NumTestCases($test_cases, $num_tests)
{
$this->test_cases = $test_cases;
$this->num_tests = $num_tests;
}
function runTest()
{
$this->assertEquals(count($this->test_cases),
$this->num_tests);
}
}
class Tests_Auth_OpenID_Parse extends PHPUnit_Framework_TestSuite {
function getName()
{
return "Tests_Auth_OpenID_Parse";
}
function _parseCheck($cond, $where)
{
if (!$cond) {
trigger_error('Parse error in ' . $where, E_USER_ERROR);
}
}
function parseLink($line)
{
$parts = explode(" ", $line);
$optional = intval($parts[0] == 'Link*:');
$this->_parseCheck($optional || ($parts[0] == 'Link:'), __FUNCTION__);
$attrs = array();
foreach (array_slice($parts, 1) as $attr) {
list($k, $v) = explode("=", $attr, 2);
if ($k[strlen($k) - 1] == '*') {
$attr_optional = 1;
$k = substr($k, 0, strlen($k) - 1);
} else {
$attr_optional = 0;
}
$attrs[$k] = array($attr_optional, $v);
}
return array($optional, $attrs);
}
function parseCase($s)
{
list($header, $markup) = explode("\n\n", $s, 2);
$lines = explode("\n", $header);
$name = array_shift($lines);
$this->_parseCheck(strpos($name, 'Name: ') == 0, __FUNCTION__);
$desc = substr($name, 6);
$parsed = array();
foreach ($lines as $line) {
$parsed[] = $this->parseLink($line);
}
return array($desc, $markup, $parsed);
}
function parseTests($s)
{
$tests = array();
$cases = explode("\n\n\n", $s);
$header = array_shift($cases);
list($tests_line, $unused) = explode("\n", $header, 2);
list($k, $v) = explode(": ", $tests_line);
$this->_parseCheck(('Num Tests' == $k), __FUNCTION__);
$num_tests = intval($v);
foreach (array_slice($cases, 0, count($cases) - 1) as $case) {
list($desc, $markup, $links) = $this->parseCase($case);
$tests[] = array($desc, $markup, $links, $case);
}
return array($num_tests, $tests);
}
function Tests_Auth_OpenID_Parse()
{
$test_data = Tests_Auth_OpenID_readdata('linkparse.txt');
list($num_tests, $test_cases) = $this->parseTests($test_data);
$this->addTest(new NumTestCases($test_cases, $num_tests));
foreach ($test_cases as $case) {
$this->addTest(new Tests_Auth_OpenID_Link($case));
}
}
}
|