public function XmlRpcValidatorTest::testValidator in xmlrpc 8
Run validator1 tests.
File
- src/
Tests/ XmlRpcValidatorTest.php, line 30
Class
- XmlRpcValidatorTest
- Test validation according to the XML-RPC.com validation suite.
Namespace
Drupal\xmlrpc\TestsCode
public function testValidator() {
srand();
mt_srand();
$array_1 = [
[
'curly' => mt_rand(-100, 100),
],
[
'curly' => mt_rand(-100, 100),
],
[
'larry' => mt_rand(-100, 100),
],
[
'larry' => mt_rand(-100, 100),
],
[
'moe' => mt_rand(-100, 100),
],
[
'moe' => mt_rand(-100, 100),
],
[
'larry' => mt_rand(-100, 100),
],
];
shuffle($array_1);
$l_res_1 = xmlrpc_test_array_of_structs_test($array_1);
$r_res_1 = $this
->xmlRpcGet([
'validator1.arrayOfStructsTest' => [
$array_1,
],
]);
$this
->assertIdentical($l_res_1, $r_res_1);
$string_2 = 't\'&>>zf"md>yr>xlcev<h<"k&j<og"w&&>">>uai"np&s>>q\'&b<>"&&&';
$l_res_2 = xmlrpc_test_count_the_entities($string_2);
$r_res_2 = $this
->xmlRpcGet([
'validator1.countTheEntities' => [
$string_2,
],
]);
$this
->assertIdentical($l_res_2, $r_res_2);
$struct_3 = [
'moe' => mt_rand(-100, 100),
'larry' => mt_rand(-100, 100),
'curly' => mt_rand(-100, 100),
'homer' => mt_rand(-100, 100),
];
$l_res_3 = xmlrpc_test_easy_struct_test($struct_3);
$r_res_3 = $this
->xmlRpcGet([
'validator1.easyStructTest' => [
$struct_3,
],
]);
$this
->assertIdentical($l_res_3, $r_res_3);
$struct_4 = [
'sub1' => [
'bar' => 13,
],
'sub2' => 14,
'sub3' => [
'foo' => 1,
'baz' => 2,
],
'sub4' => [
'ss' => [
'sss' => [
'ssss' => 'sssss',
],
],
],
];
$l_res_4 = xmlrpc_test_echo_struct_test($struct_4);
$r_res_4 = $this
->xmlRpcGet([
'validator1.echoStructTest' => [
$struct_4,
],
]);
$this
->assertIdentical($l_res_4, $r_res_4);
$int_5 = mt_rand(-100, 100);
$bool_5 = $int_5 % 2 == 0;
$string_5 = $this
->randomMachineName();
$double_5 = (double) (mt_rand(-1000, 1000) / 100);
$time_5 = \Drupal::time()
->getRequestTime();
$base64_5 = $this
->randomMachineName(100);
$l_res_5 = xmlrpc_test_many_types_test($int_5, $bool_5, $string_5, $double_5, xmlrpc_date($time_5), $base64_5);
// See http://drupal.org/node/37766 why this currently fails.
$l_res_5[5] = $l_res_5[5]->data;
$r_res_5 = $this
->xmlRpcGet([
'validator1.manyTypesTest' => [
$int_5,
$bool_5,
$string_5,
$double_5,
xmlrpc_date($time_5),
xmlrpc_base64($base64_5),
],
]);
// @todo Contains objects, objects are not equal.
$this
->assertEqual($l_res_5, $r_res_5);
$size = mt_rand(100, 200);
$array_6 = [];
for ($i = 0; $i < $size; $i++) {
$array_6[] = $this
->randomMachineName(mt_rand(8, 12));
}
$l_res_6 = xmlrpc_test_moderate_size_array_check($array_6);
$r_res_6 = $this
->xmlRpcGet([
'validator1.moderateSizeArrayCheck' => [
$array_6,
],
]);
$this
->assertIdentical($l_res_6, $r_res_6);
$struct_7 = [];
for ($y = 2000; $y < 2002; $y++) {
for ($m = 3; $m < 5; $m++) {
for ($d = 1; $d < 6; $d++) {
$ys = (string) $y;
$ms = sprintf('%02d', $m);
$ds = sprintf('%02d', $d);
$struct_7[$ys][$ms][$ds]['moe'] = mt_rand(-100, 100);
$struct_7[$ys][$ms][$ds]['larry'] = mt_rand(-100, 100);
$struct_7[$ys][$ms][$ds]['curly'] = mt_rand(-100, 100);
}
}
}
$l_res_7 = xmlrpc_test_nested_struct_test($struct_7);
$r_res_7 = $this
->xmlRpcGet([
'validator1.nestedStructTest' => [
$struct_7,
],
]);
$this
->assertIdentical($l_res_7, $r_res_7);
$int_8 = mt_rand(-100, 100);
$l_res_8 = xmlrpc_test_simple_struct_return_test($int_8);
$r_res_8 = $this
->xmlRpcGet([
'validator1.simpleStructReturnTest' => [
$int_8,
],
]);
$this
->assertIdentical($l_res_8, $r_res_8);
/* Now test multicall */
$x = [];
$x['validator1.arrayOfStructsTest'] = [
$array_1,
];
$x['validator1.countTheEntities'] = [
$string_2,
];
$x['validator1.easyStructTest'] = [
$struct_3,
];
$x['validator1.echoStructTest'] = [
$struct_4,
];
$x['validator1.manyTypesTest'] = [
$int_5,
$bool_5,
$string_5,
$double_5,
xmlrpc_date($time_5),
xmlrpc_base64($base64_5),
];
$x['validator1.moderateSizeArrayCheck'] = [
$array_6,
];
$x['validator1.nestedStructTest'] = [
$struct_7,
];
$x['validator1.simpleStructReturnTest'] = [
$int_8,
];
$a_l_res = [
$l_res_1,
$l_res_2,
$l_res_3,
$l_res_4,
$l_res_5,
$l_res_6,
$l_res_7,
$l_res_8,
];
$a_r_res = $this
->xmlRpcGet($x);
$this
->assertEqual($a_l_res, $a_r_res);
}