Avoid testsuite failure on php 5.2 with DateTimes
[plcapi.git] / test / testsuite.php
1 <?php
2
3 include(dirname(__FILE__).'/parse_args.php');
4
5 require_once('xmlrpc.inc');
6 require_once('xmlrpcs.inc');
7 require_once('xmlrpc_wrappers.inc');
8
9 require_once 'phpunit.php';
10 //require_once 'PHPUnit/TestDecorator.php';
11
12 // let testuite run for the needed time
13 if ((int)ini_get('max_execution_time') < 180)
14     ini_set('max_execution_time', 180);
15
16 $suite = new PHPUnit_TestSuite();
17
18 // array with list of failed tests
19 $failed_tests = array();
20
21 class LocalhostTests extends PHPUnit_TestCase
22 {
23     var $client = null;
24     var $method = 'http';
25     var $timeout = 10;
26     var $request_compression = null;
27     var $accepted_compression = '';
28
29     function fail($message = '')
30     {
31         PHPUnit_TestCase::fail($message);
32         // save in global var that this particular test has failed
33         // (but only if not called from subclass objects / multitests)
34         if (function_exists('debug_backtrace') && strtolower(get_class($this)) == 'localhosttests')
35         {
36             global $failed_tests;
37             $trace = debug_backtrace();
38             for ($i = 0; $i < count($trace); $i++)
39             {
40                 if (strpos($trace[$i]['function'], 'test') === 0)
41                 {
42                     $failed_tests[$trace[$i]['function']] = true;
43                     break;
44                 }
45             }
46         }
47     }
48
49     function setUp()
50     {
51         global $DEBUG, $LOCALSERVER, $URI;
52         $server = explode(':', $LOCALSERVER);
53         if(count($server) > 1)
54         {
55             $this->client=new xmlrpc_client($URI, $server[0], $server[1]);
56         }
57         else
58         {
59             $this->client=new xmlrpc_client($URI, $LOCALSERVER);
60         }
61         if($DEBUG)
62         {
63             $this->client->setDebug($DEBUG);
64         }
65         $this->client->request_compression = $this->request_compression;
66         $this->client->accepted_compression = $this->accepted_compression;
67     }
68
69     function send($msg, $errrorcode=0, $return_response=false)
70     {
71         $r = $this->client->send($msg, $this->timeout, $this->method);
72         // for multicall, return directly array of responses
73         if(is_array($r))
74         {
75             return $r;
76         }
77         $this->assertEquals($r->faultCode(), $errrorcode, 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
78         if(!$r->faultCode())
79         {
80             if($return_response)
81                 return $r;
82             else
83                 return $r->value();
84         }
85         else
86         {
87             return null;
88         }
89     }
90
91     function testString()
92     {
93         $sendstring="here are 3 \"entities\": < > & " .
94             "and here's a dollar sign: \$pretendvarname and a backslash too: " . chr(92) .
95             " - isn't that great? \\\"hackery\\\" at it's best " .
96             " also don't want to miss out on \$item[0]. ".
97             "The real weird stuff follows: CRLF here".chr(13).chr(10).
98             "a simple CR here".chr(13).
99             "a simple LF here".chr(10).
100             "and then LFCR".chr(10).chr(13).
101             "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne, and an xml comment closing tag: -->";
102         $f=new xmlrpcmsg('examples.stringecho', array(
103             new xmlrpcval($sendstring, 'string')
104         ));
105         $v=$this->send($f);
106         if($v)
107         {
108             // when sending/receiving non-US-ASCII encoded strings, XML says cr-lf can be normalized.
109             // so we relax our tests...
110             $l1 = strlen($sendstring);
111             $l2 = strlen($v->scalarval());
112             if ($l1 == $l2)
113                 $this->assertEquals($sendstring, $v->scalarval());
114             else
115                 $this->assertEquals(str_replace(array("\r\n", "\r"), array("\n", "\n"), $sendstring), $v->scalarval());
116         }
117     }
118
119     function testAddingDoubles()
120     {
121         // note that rounding errors mean we
122         // keep precision to sensible levels here ;-)
123         $a=12.13; $b=-23.98;
124         $f=new xmlrpcmsg('examples.addtwodouble',array(
125             new xmlrpcval($a, 'double'),
126             new xmlrpcval($b, 'double')
127         ));
128         $v=$this->send($f);
129         if($v)
130         {
131             $this->assertEquals($a+$b,$v->scalarval());
132         }
133     }
134
135     function testAdding()
136     {
137         $f=new xmlrpcmsg('examples.addtwo',array(
138             new xmlrpcval(12, 'int'),
139             new xmlrpcval(-23, 'int')
140         ));
141         $v=$this->send($f);
142         if($v)
143         {
144             $this->assertEquals(12-23, $v->scalarval());
145         }
146     }
147
148     function testInvalidNumber()
149     {
150         $f=new xmlrpcmsg('examples.addtwo',array(
151             new xmlrpcval('fred', 'int'),
152             new xmlrpcval("\"; exec('ls')", 'int')
153         ));
154         $v=$this->send($f);
155         /// @todo a fault condition should be generated here
156         /// by the server, which we pick up on
157         if($v)
158         {
159             $this->assertEquals(0, $v->scalarval());
160         }
161     }
162
163     function testBoolean()
164     {
165         $f=new xmlrpcmsg('examples.invertBooleans', array(
166             new xmlrpcval(array(
167                 new xmlrpcval(true, 'boolean'),
168                 new xmlrpcval(false, 'boolean'),
169                 new xmlrpcval(1, 'boolean'),
170                 new xmlrpcval(0, 'boolean'),
171                 //new xmlrpcval('true', 'boolean'),
172                 //new xmlrpcval('false', 'boolean')
173             ),
174             'array'
175             )));
176         $answer='0101';
177         $v=$this->send($f);
178         if($v)
179         {
180             $sz=$v->arraysize();
181             $got='';
182             for($i=0; $i<$sz; $i++)
183             {
184                 $b=$v->arraymem($i);
185                 if($b->scalarval())
186                 {
187                     $got.='1';
188                 }
189                 else
190                 {
191                     $got.='0';
192                 }
193             }
194             $this->assertEquals($answer, $got);
195         }
196     }
197
198     function testBase64()
199     {
200         $sendstring='Mary had a little lamb,
201 Whose fleece was white as snow,
202 And everywhere that Mary went
203 the lamb was sure to go.
204
205 Mary had a little lamb
206 She tied it to a pylon
207 Ten thousand volts went down its back
208 And turned it into nylon';
209         $f=new xmlrpcmsg('examples.decode64',array(
210             new xmlrpcval($sendstring, 'base64')
211         ));
212         $v=$this->send($f);
213         if($v)
214         {
215             if (strlen($sendstring) == strlen($v->scalarval()))
216                 $this->assertEquals($sendstring, $v->scalarval());
217             else
218                 $this->assertEquals(str_replace(array("\r\n", "\r"), array("\n", "\n"), $sendstring), $v->scalarval());
219         }
220     }
221
222     function testDateTime()
223     {
224         $time = time();
225         $t1 = new xmlrpcval($time, 'dateTime.iso8601');
226         $t2 = new xmlrpcval(iso8601_encode($time), 'dateTime.iso8601');
227         $this->assertEquals($t1->serialize(), $t2->serialize());
228         if (class_exists('DateTime'))
229         {
230             $datetime = new DateTime();
231             // skip this test for php 5.2. It is a bit harder there to build a DateTime from unix timestamp with proper TZ info
232             if(is_callable(array($datetime,'setTimestamp')))
233             {
234                 $t3 = new xmlrpcval($datetime->setTimestamp($time), 'dateTime.iso8601');
235                 $this->assertEquals($t1->serialize(), $t3->serialize());
236             }
237         }
238     }
239
240     function testCountEntities()
241     {
242         $sendstring = "h'fd>onc>>l>>rw&bpu>q>e<v&gxs<ytjzkami<";
243         $f = new xmlrpcmsg('validator1.countTheEntities',array(
244             new xmlrpcval($sendstring, 'string')
245         ));
246         $v = $this->send($f);
247         if($v)
248         {
249             $got = '';
250             $expected = '37210';
251             $expect_array = array('ctLeftAngleBrackets','ctRightAngleBrackets','ctAmpersands','ctApostrophes','ctQuotes');
252             while(list(,$val) = each($expect_array))
253             {
254                 $b = $v->structmem($val);
255                 $got .= $b->me['int'];
256             }
257             $this->assertEquals($expected, $got);
258         }
259     }
260
261     function _multicall_msg($method, $params)
262     {
263         $struct['methodName'] = new xmlrpcval($method, 'string');
264         $struct['params'] = new xmlrpcval($params, 'array');
265         return new xmlrpcval($struct, 'struct');
266     }
267
268     function testServerMulticall()
269     {
270         // We manually construct a system.multicall() call to ensure
271         // that the server supports it.
272
273         // NB: This test will NOT pass if server does not support system.multicall.
274
275         // Based on http://xmlrpc-c.sourceforge.net/hacks/test_multicall.py
276         $good1 = $this->_multicall_msg(
277             'system.methodHelp',
278             array(php_xmlrpc_encode('system.listMethods')));
279         $bad = $this->_multicall_msg(
280             'test.nosuch',
281             array(php_xmlrpc_encode(1), php_xmlrpc_encode(2)));
282         $recursive = $this->_multicall_msg(
283             'system.multicall',
284             array(new xmlrpcval(array(), 'array')));
285         $good2 = $this->_multicall_msg(
286             'system.methodSignature',
287             array(php_xmlrpc_encode('system.listMethods')));
288         $arg = new xmlrpcval(
289             array($good1, $bad, $recursive, $good2),
290             'array'
291         );
292
293         $f = new xmlrpcmsg('system.multicall', array($arg));
294         $v = $this->send($f);
295         if($v)
296         {
297             //$this->assertTrue($r->faultCode() == 0, "fault from system.multicall");
298             $this->assertTrue($v->arraysize() == 4, "bad number of return values");
299
300             $r1 = $v->arraymem(0);
301             $this->assertTrue(
302                 $r1->kindOf() == 'array' && $r1->arraysize() == 1,
303                 "did not get array of size 1 from good1"
304             );
305
306             $r2 = $v->arraymem(1);
307             $this->assertTrue(
308                 $r2->kindOf() == 'struct',
309                 "no fault from bad"
310             );
311
312             $r3 = $v->arraymem(2);
313             $this->assertTrue(
314                 $r3->kindOf() == 'struct',
315                 "recursive system.multicall did not fail"
316             );
317
318             $r4 = $v->arraymem(3);
319             $this->assertTrue(
320                 $r4->kindOf() == 'array' && $r4->arraysize() == 1,
321                 "did not get array of size 1 from good2"
322             );
323         }
324     }
325
326     function testClientMulticall1()
327     {
328         // NB: This test will NOT pass if server does not support system.multicall.
329
330         $this->client->no_multicall = false;
331
332         $good1 = new xmlrpcmsg('system.methodHelp',
333             array(php_xmlrpc_encode('system.listMethods')));
334         $bad = new xmlrpcmsg('test.nosuch',
335             array(php_xmlrpc_encode(1), php_xmlrpc_encode(2)));
336         $recursive = new xmlrpcmsg('system.multicall',
337             array(new xmlrpcval(array(), 'array')));
338         $good2 = new xmlrpcmsg('system.methodSignature',
339             array(php_xmlrpc_encode('system.listMethods'))
340         );
341
342         $r = $this->send(array($good1, $bad, $recursive, $good2));
343         if($r)
344         {
345             $this->assertTrue(count($r) == 4, "wrong number of return values");
346         }
347
348         $this->assertTrue($r[0]->faultCode() == 0, "fault from good1");
349         if(!$r[0]->faultCode())
350         {
351             $val = $r[0]->value();
352             $this->assertTrue(
353                 $val->kindOf() == 'scalar' && $val->scalartyp() == 'string',
354                 "good1 did not return string"
355             );
356         }
357         $this->assertTrue($r[1]->faultCode() != 0, "no fault from bad");
358         $this->assertTrue($r[2]->faultCode() != 0, "no fault from recursive system.multicall");
359         $this->assertTrue($r[3]->faultCode() == 0, "fault from good2");
360         if(!$r[3]->faultCode())
361         {
362             $val = $r[3]->value();
363             $this->assertTrue($val->kindOf() == 'array', "good2 did not return array");
364         }
365         // This is the only assert in this test which should fail
366         // if the test server does not support system.multicall.
367         $this->assertTrue($this->client->no_multicall == false,
368             "server does not support system.multicall"
369         );
370     }
371
372     function testClientMulticall2()
373     {
374         // NB: This test will NOT pass if server does not support system.multicall.
375
376         $this->client->no_multicall = true;
377
378         $good1 = new xmlrpcmsg('system.methodHelp',
379             array(php_xmlrpc_encode('system.listMethods')));
380         $bad = new xmlrpcmsg('test.nosuch',
381             array(php_xmlrpc_encode(1), php_xmlrpc_encode(2)));
382         $recursive = new xmlrpcmsg('system.multicall',
383             array(new xmlrpcval(array(), 'array')));
384         $good2 = new xmlrpcmsg('system.methodSignature',
385             array(php_xmlrpc_encode('system.listMethods'))
386         );
387
388         $r = $this->send(array($good1, $bad, $recursive, $good2));
389         if($r)
390         {
391             $this->assertTrue(count($r) == 4, "wrong number of return values");
392         }
393
394         $this->assertTrue($r[0]->faultCode() == 0, "fault from good1");
395         if(!$r[0]->faultCode())
396         {
397             $val = $r[0]->value();
398             $this->assertTrue(
399                 $val->kindOf() == 'scalar' && $val->scalartyp() == 'string',
400                 "good1 did not return string");
401         }
402         $this->assertTrue($r[1]->faultCode() != 0, "no fault from bad");
403         $this->assertTrue($r[2]->faultCode() == 0, "fault from (non recursive) system.multicall");
404         $this->assertTrue($r[3]->faultCode() == 0, "fault from good2");
405         if(!$r[3]->faultCode())
406         {
407             $val = $r[3]->value();
408             $this->assertTrue($val->kindOf() == 'array', "good2 did not return array");
409         }
410     }
411
412     function testClientMulticall3()
413     {
414         // NB: This test will NOT pass if server does not support system.multicall.
415
416         $this->client->return_type = 'phpvals';
417         $this->client->no_multicall = false;
418
419         $good1 = new xmlrpcmsg('system.methodHelp',
420             array(php_xmlrpc_encode('system.listMethods')));
421         $bad = new xmlrpcmsg('test.nosuch',
422             array(php_xmlrpc_encode(1), php_xmlrpc_encode(2)));
423         $recursive = new xmlrpcmsg('system.multicall',
424             array(new xmlrpcval(array(), 'array')));
425         $good2 = new xmlrpcmsg('system.methodSignature',
426             array(php_xmlrpc_encode('system.listMethods'))
427         );
428
429         $r = $this->send(array($good1, $bad, $recursive, $good2));
430         if($r)
431         {
432             $this->assertTrue(count($r) == 4, "wrong number of return values");
433         }
434         $this->assertTrue($r[0]->faultCode() == 0, "fault from good1");
435         if(!$r[0]->faultCode())
436         {
437             $val = $r[0]->value();
438             $this->assertTrue(
439                 is_string($val) , "good1 did not return string");
440         }
441         $this->assertTrue($r[1]->faultCode() != 0, "no fault from bad");
442         $this->assertTrue($r[2]->faultCode() != 0, "no fault from recursive system.multicall");
443         $this->assertTrue($r[3]->faultCode() == 0, "fault from good2");
444         if(!$r[3]->faultCode())
445         {
446             $val = $r[3]->value();
447             $this->assertTrue(is_array($val), "good2 did not return array");
448         }
449         $this->client->return_type = 'xmlrpcvals';
450     }
451
452     function testCatchWarnings()
453     {
454         $f = new xmlrpcmsg('examples.generatePHPWarning', array(
455             new xmlrpcval('whatever', 'string')
456         ));
457         $v = $this->send($f);
458         if($v)
459         {
460             $this->assertEquals($v->scalarval(), true);
461         }
462     }
463
464     function testCatchExceptions()
465     {
466         global $URI;
467         $f = new xmlrpcmsg('examples.raiseException', array(
468             new xmlrpcval('whatever', 'string')
469         ));
470         $v = $this->send($f, $GLOBALS['xmlrpcerr']['server_error']);
471         $this->client->path = $URI.'?EXCEPTION_HANDLING=1';
472         $v = $this->send($f, 1);
473         $this->client->path = $URI.'?EXCEPTION_HANDLING=2';
474         $v = $this->send($f, $GLOBALS['xmlrpcerr']['invalid_return']);
475     }
476
477     function testZeroParams()
478     {
479         $f = new xmlrpcmsg('system.listMethods');
480         $v = $this->send($f);
481     }
482
483     function testCodeInjectionServerSide()
484     {
485         $f = new xmlrpcmsg('system.MethodHelp');
486         $f->payload = "<?xml version=\"1.0\"?><methodCall><methodName>validator1.echoStructTest</methodName><params><param><value><struct><member><name>','')); echo('gotcha!'); die(); //</name></member></struct></value></param></params></methodCall>";
487         $v = $this->send($f);
488         //$v = $r->faultCode();
489         if ($v)
490         {
491             $this->assertEquals(0, $v->structsize());
492         }
493     }
494
495     function testAutoRegisteredFunction()
496     {
497         $f=new xmlrpcmsg('examples.php.getStateName',array(
498             new xmlrpcval(23, 'int')
499         ));
500         $v=$this->send($f);
501         if($v)
502         {
503             $this->assertEquals('Michigan', $v->scalarval());
504         }
505         else
506         {
507             $this->fail('Note: server can only auto register functions if running with PHP 5.0.3 and up');
508         }
509     }
510
511     function testAutoRegisteredClass()
512     {
513         $f=new xmlrpcmsg('examples.php2.getStateName',array(
514             new xmlrpcval(23, 'int')
515         ));
516         $v=$this->send($f);
517         if($v)
518         {
519             $this->assertEquals('Michigan', $v->scalarval());
520             $f=new xmlrpcmsg('examples.php3.getStateName',array(
521             new xmlrpcval(23, 'int')
522         ));
523             $v=$this->send($f);
524             if($v)
525             {
526                 $this->assertEquals('Michigan', $v->scalarval());
527             }
528         }
529         else
530         {
531             $this->fail('Note: server can only auto register class methods if running with PHP 5.0.3 and up');
532         }
533     }
534
535     function testAutoRegisteredMethod()
536     {
537         $func=wrap_xmlrpc_method($this->client, 'examples.getStateName');
538         if($func == '')
539         {
540             $this->fail('Registration of examples.getStateName failed');
541         }
542         else
543         {
544             $v=$func(23);
545             $this->assertEquals('Michigan', $v);
546         }
547     }
548
549     function testGetCookies()
550     {
551         // let server set to us some cookies we tell it
552         $cookies = array(
553             //'c1' => array(),
554             'c2' => array('value' => 'c2'),
555             'c3' => array('value' => 'c3', 'expires' => time()+60*60*24*30),
556             'c4' => array('value' => 'c4', 'expires' => time()+60*60*24*30, 'path' => '/'),
557             'c5' => array('value' => 'c5', 'expires' => time()+60*60*24*30, 'path' => '/', 'domain' => 'localhost'),
558         );
559         $cookiesval = php_xmlrpc_encode($cookies);
560         $f=new xmlrpcmsg('examples.setcookies',array($cookiesval));
561         $r=$this->send($f, 0, true);
562         if($r)
563         {
564             $v = $r->value();
565             $this->assertEquals(1, $v->scalarval());
566             // now check if we decoded the cookies as we had set them
567             $rcookies = $r->cookies();
568             // remove extra cookies which might have been set by proxies
569             foreach($rcookies as $c => $v)
570                 if(!in_array($c, array('c2', 'c3', 'c4', 'c5')))
571                     unset($rcookies[$c]);
572             foreach($cookies as $c => $v)
573                 // format for date string in cookies: 'Mon, 31 Oct 2005 13:50:56 GMT'
574                 // but PHP versions differ on that, some use 'Mon, 31-Oct-2005 13:50:56 GMT'...
575                 if(isset($v['expires']))
576                 {
577                     if (isset($rcookies[$c]['expires']) && strpos($rcookies[$c]['expires'], '-'))
578                     {
579                         $cookies[$c]['expires'] = gmdate('D, d\-M\-Y H:i:s \G\M\T' ,$cookies[$c]['expires']);
580                     }
581                     else
582                     {
583                         $cookies[$c]['expires'] = gmdate('D, d M Y H:i:s \G\M\T' ,$cookies[$c]['expires']);
584                     }
585                 }
586             $this->assertEquals($cookies, $rcookies);
587         }
588     }
589
590     function testSetCookies()
591     {
592         // let server set to us some cookies we tell it
593         $cookies = array(
594             'c0' => null,
595             'c1' => 1,
596             'c2' => '2 3',
597             'c3' => '!@#$%^&*()_+|}{":?><,./\';[]\\=-'
598         );
599         $f=new xmlrpcmsg('examples.getcookies',array());
600         foreach ($cookies as $cookie => $val)
601         {
602             $this->client->setCookie($cookie, $val);
603             $cookies[$cookie] = (string) $cookies[$cookie];
604         }
605         $r = $this->client->send($f, $this->timeout, $this->method);
606         $this->assertEquals($r->faultCode(), 0, 'Error '.$r->faultCode().' connecting to server: '.$r->faultString());
607         if(!$r->faultCode())
608         {
609             $v = $r->value();
610             $v = php_xmlrpc_decode($v);
611             // on IIS and Apache getallheaders returns something slightly different...
612             $this->assertEquals($v, $cookies);
613         }
614     }
615
616     function testSendTwiceSameMsg()
617     {
618         $f=new xmlrpcmsg('examples.stringecho', array(
619             new xmlrpcval('hello world', 'string')
620         ));
621         $v1 = $this->send($f);
622         $v2 = $this->send($f);
623         //$v = $r->faultCode();
624         if ($v1 && $v2)
625         {
626             $this->assertEquals($v2, $v1);
627         }
628     }
629 }
630
631 class LocalHostMultiTests extends LocalhostTests
632 {
633     function _runtests()
634     {
635         global $failed_tests;
636         foreach(get_class_methods('LocalhostTests') as $meth)
637         {
638             if(strpos($meth, 'test') === 0 && $meth != 'testHttps' && $meth != 'testCatchExceptions')
639             {
640                 if (!isset($failed_tests[$meth]))
641                     $this->$meth();
642             }
643             if ($this->_failed)
644             {
645                 break;
646             }
647         }
648     }
649
650     function testDeflate()
651     {
652         if(!function_exists('gzdeflate'))
653         {
654             $this->fail('Zlib missing: cannot test deflate functionality');
655             return;
656         }
657         $this->client->accepted_compression = array('deflate');
658         $this->client->request_compression = 'deflate';
659         $this->_runtests();
660     }
661
662     function testGzip()
663     {
664         if(!function_exists('gzdeflate'))
665         {
666             $this->fail('Zlib missing: cannot test gzip functionality');
667             return;
668         }
669         $this->client->accepted_compression = array('gzip');
670         $this->client->request_compression = 'gzip';
671         $this->_runtests();
672     }
673
674     function testKeepAlives()
675     {
676         if(!function_exists('curl_init'))
677         {
678             $this->fail('CURL missing: cannot test http 1.1');
679             return;
680         }
681         $this->method = 'http11';
682         $this->client->keepalive = true;
683         $this->_runtests();
684     }
685
686     function testProxy()
687     {
688         global $PROXYSERVER, $PROXYPORT, $NOPROXY;
689         if ($PROXYSERVER)
690         {
691             $this->client->setProxy($PROXYSERVER, $PROXYPORT);
692             $this->_runtests();
693         }
694         else
695             if (!$NOPROXY)
696                 $this->fail('PROXY definition missing: cannot test proxy');
697     }
698
699     function testHttp11()
700     {
701         if(!function_exists('curl_init'))
702         {
703             $this->fail('CURL missing: cannot test http 1.1');
704             return;
705         }
706         $this->method = 'http11'; // not an error the double assignment!
707         $this->client->method = 'http11';
708         //$this->client->verifyhost = 0;
709         //$this->client->verifypeer = 0;
710         $this->client->keepalive = false;
711         $this->_runtests();
712     }
713
714     function testHttp11Gzip()
715     {
716         if(!function_exists('curl_init'))
717         {
718             $this->fail('CURL missing: cannot test http 1.1');
719             return;
720         }
721         $this->method = 'http11'; // not an error the double assignment!
722         $this->client->method = 'http11';
723         $this->client->keepalive = false;
724         $this->client->accepted_compression = array('gzip');
725         $this->client->request_compression = 'gzip';
726         $this->_runtests();
727     }
728
729     function testHttp11Deflate()
730     {
731         if(!function_exists('curl_init'))
732         {
733             $this->fail('CURL missing: cannot test http 1.1');
734             return;
735         }
736         $this->method = 'http11'; // not an error the double assignment!
737         $this->client->method = 'http11';
738         $this->client->keepalive = false;
739         $this->client->accepted_compression = array('deflate');
740         $this->client->request_compression = 'deflate';
741         $this->_runtests();
742     }
743
744     function testHttp11Proxy()
745     {
746         global $PROXYSERVER, $PROXYPORT, $NOPROXY;
747         if(!function_exists('curl_init'))
748         {
749             $this->fail('CURL missing: cannot test http 1.1 w. proxy');
750             return;
751         }
752         else if ($PROXYSERVER == '')
753         {
754             if (!$NOPROXY)
755                 $this->fail('PROXY definition missing: cannot test proxy w. http 1.1');
756             return;
757         }
758         $this->method = 'http11'; // not an error the double assignment!
759         $this->client->method = 'http11';
760         $this->client->setProxy($PROXYSERVER, $PROXYPORT);
761         //$this->client->verifyhost = 0;
762         //$this->client->verifypeer = 0;
763         $this->client->keepalive = false;
764         $this->_runtests();
765     }
766
767     function testHttps()
768     {
769         global $HTTPSSERVER, $HTTPSURI, $HTTPSIGNOREPEER;
770         if(!function_exists('curl_init'))
771         {
772             $this->fail('CURL missing: cannot test https functionality');
773             return;
774         }
775         $this->client->server = $HTTPSSERVER;
776         $this->method = 'https';
777         $this->client->method = 'https';
778         $this->client->path = $HTTPSURI;
779         $this->client->setSSLVerifyPeer( !$HTTPSIGNOREPEER );
780         $this->_runtests();
781     }
782
783     function testHttpsProxy()
784     {
785         global $HTTPSSERVER, $HTTPSURI, $PROXYSERVER, $PROXYPORT, $NOPROXY;
786         if(!function_exists('curl_init'))
787         {
788             $this->fail('CURL missing: cannot test https functionality');
789             return;
790         }
791         else if ($PROXYSERVER == '')
792         {
793             if (!$NOPROXY)
794                 $this->fail('PROXY definition missing: cannot test proxy w. http 1.1');
795             return;
796         }
797         $this->client->server = $HTTPSSERVER;
798         $this->method = 'https';
799         $this->client->method = 'https';
800         $this->client->setProxy($PROXYSERVER, $PROXYPORT);
801         $this->client->path = $HTTPSURI;
802         $this->_runtests();
803     }
804
805     function testUTF8Responses()
806     {
807         global $URI;
808         //$this->client->path = strpos($URI, '?') === null ? $URI.'?RESPONSE_ENCODING=UTF-8' : $URI.'&RESPONSE_ENCODING=UTF-8';
809         $this->client->path = $URI.'?RESPONSE_ENCODING=UTF-8';
810         $this->_runtests();
811     }
812
813     function testUTF8Requests()
814     {
815         $this->client->request_charset_encoding = 'UTF-8';
816         $this->_runtests();
817     }
818
819     function testISOResponses()
820     {
821         global $URI;
822         //$this->client->path = strpos($URI, '?') === null ? $URI.'?RESPONSE_ENCODING=UTF-8' : $URI.'&RESPONSE_ENCODING=UTF-8';
823         $this->client->path = $URI.'?RESPONSE_ENCODING=ISO-8859-1';
824         $this->_runtests();
825     }
826
827     function testISORequests()
828     {
829         $this->client->request_charset_encoding = 'ISO-8859-1';
830         $this->_runtests();
831     }
832 }
833
834 class ParsingBugsTests extends PHPUnit_TestCase
835 {
836     function testMinusOneString()
837     {
838         $v=new xmlrpcval('-1');
839         $u=new xmlrpcval('-1', 'string');
840         $this->assertEquals($u->scalarval(), $v->scalarval());
841     }
842
843     function testUnicodeInMemberName(){
844         $str = "G".chr(252)."nter, El".chr(232)."ne";
845         $v = array($str => new xmlrpcval(1));
846         $r = new xmlrpcresp(new xmlrpcval($v, 'struct'));
847         $r = $r->serialize();
848         $m = new xmlrpcmsg('dummy');
849         $r = $m->parseResponse($r);
850         $v = $r->value();
851         $this->assertEquals($v->structmemexists($str), true);
852     }
853
854     function testUnicodeInErrorString()
855     {
856         $response = utf8_encode(
857 '<?xml version="1.0"?>
858 <!-- $Id -->
859 <!-- found by G. giunta, covers what happens when lib receives
860   UTF8 chars in response text and comments -->
861 <!-- ï¿½ï¿½ï¿½&#224;&#252;&#232; -->
862 <methodResponse>
863 <fault>
864 <value>
865 <struct>
866 <member>
867 <name>faultCode</name>
868 <value><int>888</int></value>
869 </member>
870 <member>
871 <name>faultString</name>
872 <value><string>���&#224;&#252;&#232;</string></value>
873 </member>
874 </struct>
875 </value>
876 </fault>
877 </methodResponse>');
878         $m=new xmlrpcmsg('dummy');
879         $r=$m->parseResponse($response);
880         $v=$r->faultString();
881         $this->assertEquals('���àüè', $v);
882     }
883
884     function testValidNumbers()
885     {
886         $m=new xmlrpcmsg('dummy');
887         $fp=
888 '<?xml version="1.0"?>
889 <methodResponse>
890 <params>
891 <param>
892 <value>
893 <struct>
894 <member>
895 <name>integer1</name>
896 <value><int>01</int></value>
897 </member>
898 <member>
899 <name>float1</name>
900 <value><double>01.10</double></value>
901 </member>
902 <member>
903 <name>integer2</name>
904 <value><int>+1</int></value>
905 </member>
906 <member>
907 <name>float2</name>
908 <value><double>+1.10</double></value>
909 </member>
910 <member>
911 <name>float3</name>
912 <value><double>-1.10e2</double></value>
913 </member>
914 </struct>
915 </value>
916 </param>
917 </params>
918 </methodResponse>';
919         $r=$m->parseResponse($fp);
920         $v=$r->value();
921         $s=$v->structmem('integer1');
922         $t=$v->structmem('float1');
923         $u=$v->structmem('integer2');
924         $w=$v->structmem('float2');
925         $x=$v->structmem('float3');
926         $this->assertEquals(1, $s->scalarval());
927         $this->assertEquals(1.1, $t->scalarval());
928         $this->assertEquals(1, $u->scalarval());
929         $this->assertEquals(1.1, $w->scalarval());
930         $this->assertEquals(-110.0, $x->scalarval());
931     }
932
933     function testAddScalarToStruct()
934     {
935         $v=new xmlrpcval(array('a' => 'b'), 'struct');
936         // use @ operator in case error_log gets on screen
937         $r= @$v->addscalar('c');
938         $this->assertEquals(0, $r);
939     }
940
941     function testAddStructToStruct()
942     {
943         $v=new xmlrpcval(array('a' => new xmlrpcval('b')), 'struct');
944         $r=$v->addstruct(array('b' => new xmlrpcval('c')));
945         $this->assertEquals(2, $v->structsize());
946         $this->assertEquals(1, $r);
947         $r=$v->addstruct(array('b' => new xmlrpcval('b')));
948         $this->assertEquals(2, $v->structsize());
949     }
950
951     function testAddArrayToArray()
952     {
953         $v=new xmlrpcval(array(new xmlrpcval('a'), new xmlrpcval('b')), 'array');
954         $r=$v->addarray(array(new xmlrpcval('b'), new xmlrpcval('c')));
955         $this->assertEquals(4, $v->arraysize());
956         $this->assertEquals(1, $r);
957     }
958
959     function testEncodeArray()
960     {
961         $r=range(1, 100);
962         $v = php_xmlrpc_encode($r);
963         $this->assertEquals('array', $v->kindof());
964     }
965
966     function testEncodeRecursive()
967     {
968         $v = php_xmlrpc_encode(php_xmlrpc_encode('a simple string'));
969         $this->assertEquals('scalar', $v->kindof());
970     }
971
972     function testBrokenRequests()
973     {
974         $s = new xmlrpc_server();
975         // omitting the 'params' tag: not tolerated by the lib anymore
976 $f = '<?xml version="1.0"?>
977 <methodCall>
978 <methodName>system.methodHelp</methodName>
979 <param>
980 <value><string>system.methodHelp</string></value>
981 </param>
982 </methodCall>';
983         $r = $s->parserequest($f);
984         $this->assertEquals(15, $r->faultCode());
985         // omitting a 'param' tag
986 $f = '<?xml version="1.0"?>
987 <methodCall>
988 <methodName>system.methodHelp</methodName>
989 <params>
990 <value><string>system.methodHelp</string></value>
991 </params>
992 </methodCall>';
993         $r = $s->parserequest($f);
994         $this->assertEquals(15, $r->faultCode());
995         // omitting a 'value' tag
996 $f = '<?xml version="1.0"?>
997 <methodCall>
998 <methodName>system.methodHelp</methodName>
999 <params>
1000 <param><string>system.methodHelp</string></param>
1001 </params>
1002 </methodCall>';
1003         $r = $s->parserequest($f);
1004         $this->assertEquals(15, $r->faultCode());
1005     }
1006
1007     function testBrokenResponses()
1008     {
1009         $m=new xmlrpcmsg('dummy');
1010         //$m->debug = 1;
1011         // omitting the 'params' tag: no more tolerated by the lib...
1012 $f = '<?xml version="1.0"?>
1013 <methodResponse>
1014 <param>
1015 <value><string>system.methodHelp</string></value>
1016 </param>
1017 </methodResponse>';
1018         $r = $m->parseResponse($f);
1019         $this->assertEquals(2, $r->faultCode());
1020         // omitting the 'param' tag: no more tolerated by the lib...
1021 $f = '<?xml version="1.0"?>
1022 <methodResponse>
1023 <params>
1024 <value><string>system.methodHelp</string></value>
1025 </params>
1026 </methodResponse>';
1027         $r = $m->parseResponse($f);
1028         $this->assertEquals(2, $r->faultCode());
1029         // omitting a 'value' tag: KO
1030 $f = '<?xml version="1.0"?>
1031 <methodResponse>
1032 <params>
1033 <param><string>system.methodHelp</string></param>
1034 </params>
1035 </methodResponse>';
1036         $r = $m->parseResponse($f);
1037         $this->assertEquals(2, $r->faultCode());
1038     }
1039
1040     function testBuggyHttp()
1041     {
1042         $s = new xmlrpcmsg('dummy');
1043 $f = 'HTTP/1.1 100 Welcome to the jungle
1044
1045 HTTP/1.0 200 OK
1046 X-Content-Marx-Brothers: Harpo
1047         Chico and Groucho
1048 Content-Length: who knows?
1049
1050
1051
1052 <?xml version="1.0"?>
1053 <!-- First of all, let\'s check out if the lib properly handles a commented </methodResponse> tag... -->
1054 <methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
1055 <member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>hello world. 2 newlines follow
1056
1057
1058 and there they were.</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
1059 <script type="text\javascript">document.write(\'Hello, my name is added nag, I\\\'m happy to serve your content for free\');</script>
1060  ';
1061         $r = $s->parseResponse($f);
1062         $v = $r->value();
1063         $s = $v->structmem('content');
1064         $this->assertEquals("hello world. 2 newlines follow\n\n\nand there they were.", $s->scalarval());
1065     }
1066
1067     function testStringBug()
1068     {
1069         $s = new xmlrpcmsg('dummy');
1070 $f = '<?xml version="1.0"?>
1071 <!-- $Id -->
1072 <!-- found by 2z69xks7bpy001@sneakemail.com, amongst others
1073  covers what happens when there\'s character data after </string>
1074  and before </value> -->
1075 <methodResponse>
1076 <params>
1077 <param>
1078 <value>
1079 <struct>
1080 <member>
1081 <name>success</name>
1082 <value>
1083 <boolean>1</boolean>
1084 </value>
1085 </member>
1086 <member>
1087 <name>sessionID</name>
1088 <value>
1089 <string>S300510007I</string>
1090 </value>
1091 </member>
1092 </struct>
1093 </value>
1094 </param>
1095 </params>
1096 </methodResponse> ';
1097         $r = $s->parseResponse($f);
1098         $v = $r->value();
1099         $s = $v->structmem('sessionID');
1100         $this->assertEquals('S300510007I', $s->scalarval());
1101     }
1102
1103     function testWhiteSpace()
1104     {
1105         $s = new xmlrpcmsg('dummy');
1106 $f = '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
1107 <member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>hello world. 2 newlines follow
1108
1109
1110 and there they were.</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
1111 ';
1112         $r = $s->parseResponse($f);
1113         $v = $r->value();
1114         $s = $v->structmem('content');
1115         $this->assertEquals("hello world. 2 newlines follow\n\n\nand there they were.", $s->scalarval());
1116     }
1117
1118     function testDoubleDataInArrayTag()
1119     {
1120         $s = new xmlrpcmsg('dummy');
1121 $f = '<?xml version="1.0"?><methodResponse><params><param><value><array>
1122 <data></data>
1123 <data></data>
1124 </array></value></param></params></methodResponse>
1125 ';
1126         $r = $s->parseResponse($f);
1127         $v = $r->faultCode();
1128         $this->assertEquals(2, $v);
1129 $f = '<?xml version="1.0"?><methodResponse><params><param><value><array>
1130 <data><value>Hello world</value></data>
1131 <data></data>
1132 </array></value></param></params></methodResponse>
1133 ';
1134         $r = $s->parseResponse($f);
1135         $v = $r->faultCode();
1136         $this->assertEquals(2, $v);
1137     }
1138
1139     function testDoubleStuffInValueTag()
1140     {
1141         $s = new xmlrpcmsg('dummy');
1142 $f = '<?xml version="1.0"?><methodResponse><params><param><value>
1143 <string>hello world</string>
1144 <array><data></data></array>
1145 </value></param></params></methodResponse>
1146 ';
1147         $r = $s->parseResponse($f);
1148         $v = $r->faultCode();
1149         $this->assertEquals(2, $v);
1150 $f = '<?xml version="1.0"?><methodResponse><params><param><value>
1151 <string>hello</string>
1152 <string>world</string>
1153 </value></param></params></methodResponse>
1154 ';
1155         $r = $s->parseResponse($f);
1156         $v = $r->faultCode();
1157         $this->assertEquals(2, $v);
1158 $f = '<?xml version="1.0"?><methodResponse><params><param><value>
1159 <string>hello</string>
1160 <struct><member><name>hello><value>world</value></member></struct>
1161 </value></param></params></methodResponse>
1162 ';
1163         $r = $s->parseResponse($f);
1164         $v = $r->faultCode();
1165         $this->assertEquals(2, $v);
1166     }
1167
1168     function testAutodecodeResponse()
1169     {
1170         $s = new xmlrpcmsg('dummy');
1171 $f = '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
1172 <member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>hello world. 2 newlines follow
1173
1174
1175 and there they were.</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
1176 ';
1177         $r = $s->parseResponse($f, true, 'phpvals');
1178         $v = $r->value();
1179         $s = $v['content'];
1180         $this->assertEquals("hello world. 2 newlines follow\n\n\nand there they were.", $s);
1181     }
1182
1183     function testNoDecodeResponse()
1184     {
1185         $s = new xmlrpcmsg('dummy');
1186 $f = '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
1187 <member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>hello world. 2 newlines follow
1188
1189
1190 and there they were.</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>';
1191         $r = $s->parseResponse($f, true, 'xml');
1192         $v = $r->value();
1193         $this->assertEquals($f, $v);
1194     }
1195
1196     function testAutoCoDec()
1197     {
1198         $data1 = array(1, 1.0, 'hello world', true, '20051021T23:43:00', -1, 11.0, '~!@#$%^&*()_+|', false, '20051021T23:43:00');
1199         $data2 = array('zero' => $data1, 'one' => $data1, 'two' => $data1, 'three' => $data1, 'four' => $data1, 'five' => $data1, 'six' => $data1, 'seven' => $data1, 'eight' => $data1, 'nine' => $data1);
1200         $data = array($data2, $data2, $data2, $data2, $data2, $data2, $data2, $data2, $data2, $data2);
1201         //$keys = array('zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine');
1202         $v1 = php_xmlrpc_encode($data, array('auto_dates'));
1203         $v2 = php_xmlrpc_decode_xml($v1->serialize());
1204         $this->assertEquals($v1, $v2);
1205         $r1 = new xmlrpcresp($v1);
1206         $r2 = php_xmlrpc_decode_xml($r1->serialize());
1207         $r2->serialize(); // needed to set internal member payload
1208         $this->assertEquals($r1, $r2);
1209         $m1 = new xmlrpcmsg('hello dolly', array($v1));
1210         $m2 = php_xmlrpc_decode_xml($m1->serialize());
1211         $m2->serialize(); // needed to set internal member payload
1212         $this->assertEquals($m1, $m2);
1213     }
1214
1215     function testUTF8Request()
1216     {
1217         $sendstring='κόσμε'; // Greek word 'kosme'. NB: NOT a valid ISO8859 string!
1218         $GLOBALS['xmlrpc_internalencoding'] = 'UTF-8';
1219         $f = new xmlrpcval($sendstring, 'string');
1220         $v=$f->serialize();
1221         $this->assertEquals("<value><string>&#954;&#8057;&#963;&#956;&#949;</string></value>\n", $v);
1222         $GLOBALS['xmlrpc_internalencoding'] = 'ISO-8859-1';
1223     }
1224
1225     function testUTF8Response()
1226     {
1227         $s = new xmlrpcmsg('dummy');
1228 $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
1229 <member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>'.utf8_encode('������').'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
1230 ';
1231         $r = $s->parseResponse($f, false, 'phpvals');
1232         $v = $r->value();
1233         $v = $v['content'];
1234         $this->assertEquals("������", $v);
1235 $f = '<?xml version="1.0" encoding="utf-8"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member>
1236 <member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>'.utf8_encode('������').'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse>
1237 ';
1238         $r = $s->parseResponse($f, false, 'phpvals');
1239         $v = $r->value();
1240         $v = $v['content'];
1241         $this->assertEquals("������", $v);
1242     }
1243
1244     function testUTF8IntString()
1245     {
1246         $v=new xmlrpcval(100, 'int');
1247         $s=$v->serialize('UTF-8');
1248         $this->assertequals("<value><int>100</int></value>\n", $s);
1249     }
1250
1251     function testStringInt()
1252     {
1253         $v=new xmlrpcval('hello world', 'int');
1254         $s=$v->serialize();
1255         $this->assertequals("<value><int>0</int></value>\n", $s);
1256     }
1257
1258     function testStructMemExists()
1259     {
1260         $v=php_xmlrpc_encode(array('hello' => 'world'));
1261         $b=$v->structmemexists('hello');
1262         $this->assertequals(true, $b);
1263         $b=$v->structmemexists('world');
1264         $this->assertequals(false, $b);
1265     }
1266
1267     function testNilvalue()
1268     {
1269         // default case: we do not accept nil values received
1270         $v = new xmlrpcval('hello', 'null');
1271         $r = new xmlrpcresp($v);
1272         $s = $r->serialize();
1273         $m = new xmlrpcmsg('dummy');
1274         $r = $m->parseresponse($s);
1275         $this->assertequals(2, $r->faultCode());
1276         // enable reception of nil values
1277         $GLOBALS['xmlrpc_null_extension'] = true;
1278         $r = $m->parseresponse($s);
1279         $v = $r->value();
1280         $this->assertequals('null', $v->scalartyp());
1281         // test with the apache version: EX:NIL
1282         $GLOBALS['xmlrpc_null_apache_encoding'] = true;
1283         // serialization
1284         $v = new xmlrpcval('hello', 'null');
1285         $s = $v->serialize();
1286         $this->assertequals(1, preg_match( '#<value><ex:nil/></value>#', $s ));
1287         // deserialization
1288         $r = new xmlrpcresp($v);
1289         $s = $r->serialize();
1290         $r = $m->parseresponse($s);
1291         $v = $r->value();
1292         $this->assertequals('null', $v->scalartyp());
1293         $GLOBALS['xmlrpc_null_extension'] = false;
1294         $r = $m->parseresponse($s);
1295         $this->assertequals(2, $r->faultCode());
1296     }
1297
1298     function TestLocale()
1299     {
1300         $locale = setlocale(LC_NUMERIC, 0);
1301         /// @todo on php 5.3/win setting locale to german does not seem to set decimal separator to comma...
1302         if (setlocale(LC_NUMERIC,'deu', 'de_DE@euro', 'de_DE', 'de', 'ge') !== false)
1303         {
1304             $v = new xmlrpcval(1.1, 'double');
1305             if (strpos($v->scalarval(), ',') == 1)
1306             {
1307                 $r = $v->serialize();
1308                 $this->assertequals(false, strpos($r, ','));
1309             }
1310             setlocale(LC_NUMERIC, $locale);
1311         }
1312     }
1313 }
1314
1315 class InvalidHostTests extends PHPUnit_TestCase
1316 {
1317     var $client = null;
1318
1319     function setUp()
1320     {
1321         global $DEBUG,$LOCALSERVER;
1322         $this->client=new xmlrpc_client('/NOTEXIST.php', $LOCALSERVER, 80);
1323         if($DEBUG)
1324         {
1325             $this->client->setDebug($DEBUG);
1326         }
1327     }
1328
1329     function test404()
1330     {
1331         $f = new xmlrpcmsg('examples.echo',array(
1332             new xmlrpcval('hello', 'string')
1333         ));
1334         $r = $this->client->send($f, 5);
1335         $this->assertEquals(5, $r->faultCode());
1336     }
1337
1338     function testSrvNotFound()
1339     {
1340         $f = new xmlrpcmsg('examples.echo',array(
1341             new xmlrpcval('hello', 'string')
1342         ));
1343         $this->client->server .= 'XXX';
1344         $r = $this->client->send($f, 5);
1345         $this->assertEquals(5, $r->faultCode());
1346     }
1347
1348     function testCurlKAErr()
1349     {
1350         global $LOCALSERVER, $URI;
1351         if(!function_exists('curl_init'))
1352         {
1353             $this->fail('CURL missing: cannot test curl keepalive errors');
1354             return;
1355         }
1356         $f = new xmlrpcmsg('examples.stringecho',array(
1357             new xmlrpcval('hello', 'string')
1358         ));
1359         // test 2 calls w. keepalive: 1st time connection ko, second time ok
1360         $this->client->server .= 'XXX';
1361         $this->client->keepalive = true;
1362         $r = $this->client->send($f, 5, 'http11');
1363         // in case we have a "universal dns resolver" getting in the way, we might get a 302 instead of a 404
1364         $this->assertTrue($r->faultCode() === 8 || $r->faultCode() == 5);
1365
1366         // now test a successful connection
1367         $server = explode(':', $LOCALSERVER);
1368         if(count($server) > 1)
1369         {
1370             $this->client->port = $server[1];
1371         }
1372         $this->client->server = $server[0];
1373         $this->client->path = $URI;
1374
1375         $r = $this->client->send($f, 5, 'http11');
1376         $this->assertEquals(0, $r->faultCode());
1377         $ro = $r->value();
1378         is_object( $ro ) && $this->assertEquals('hello', $ro->scalarVal());
1379     }
1380 }
1381
1382
1383 $suite->addTest(new LocalhostTests('testString'));
1384 $suite->addTest(new LocalhostTests('testAdding'));
1385 $suite->addTest(new LocalhostTests('testAddingDoubles'));
1386 $suite->addTest(new LocalhostTests('testInvalidNumber'));
1387 $suite->addTest(new LocalhostTests('testBoolean'));
1388 $suite->addTest(new LocalhostTests('testCountEntities'));
1389 $suite->addTest(new LocalhostTests('testBase64'));
1390 $suite->addTest(new LocalhostTests('testDateTime'));
1391 $suite->addTest(new LocalhostTests('testServerMulticall'));
1392 $suite->addTest(new LocalhostTests('testClientMulticall1'));
1393 $suite->addTest(new LocalhostTests('testClientMulticall2'));
1394 $suite->addTest(new LocalhostTests('testClientMulticall3'));
1395 $suite->addTest(new LocalhostTests('testCatchWarnings'));
1396 $suite->addTest(new LocalhostTests('testCatchExceptions'));
1397 $suite->addTest(new LocalhostTests('testZeroParams'));
1398 $suite->addTest(new LocalhostTests('testCodeInjectionServerSide'));
1399 $suite->addTest(new LocalhostTests('testAutoRegisteredFunction'));
1400 $suite->addTest(new LocalhostTests('testAutoRegisteredMethod'));
1401 $suite->addTest(new LocalhostTests('testSetCookies'));
1402 $suite->addTest(new LocalhostTests('testGetCookies'));
1403 $suite->addTest(new LocalhostTests('testSendTwiceSameMsg'));
1404
1405 $suite->addTest(new LocalhostMultiTests('testUTF8Requests'));
1406 $suite->addTest(new LocalhostMultiTests('testUTF8Responses'));
1407 $suite->addTest(new LocalhostMultiTests('testISORequests'));
1408 $suite->addTest(new LocalhostMultiTests('testISOResponses'));
1409 $suite->addTest(new LocalhostMultiTests('testGzip'));
1410 $suite->addTest(new LocalhostMultiTests('testDeflate'));
1411 $suite->addTest(new LocalhostMultiTests('testProxy'));
1412 $suite->addTest(new LocalhostMultiTests('testHttp11'));
1413 $suite->addTest(new LocalhostMultiTests('testHttp11Gzip'));
1414 $suite->addTest(new LocalhostMultiTests('testHttp11Deflate'));
1415 $suite->addTest(new LocalhostMultiTests('testKeepAlives'));
1416 $suite->addTest(new LocalhostMultiTests('testHttp11Proxy'));
1417 $suite->addTest(new LocalhostMultiTests('testHttps'));
1418 $suite->addTest(new LocalhostMultiTests('testHttpsProxy'));
1419
1420 $suite->addTest(new InvalidHostTests('test404'));
1421 //$suite->addTest(new InvalidHostTests('testSrvNotFound'));
1422 $suite->addTest(new InvalidHostTests('testCurlKAErr'));
1423
1424 $suite->addTest(new ParsingBugsTests('testMinusOneString'));
1425 $suite->addTest(new ParsingBugsTests('testUnicodeInMemberName'));
1426 $suite->addTest(new ParsingBugsTests('testUnicodeInErrorString'));
1427 $suite->addTest(new ParsingBugsTests('testValidNumbers'));
1428 $suite->addTest(new ParsingBugsTests('testAddScalarToStruct'));
1429 $suite->addTest(new ParsingBugsTests('testAddStructToStruct'));
1430 $suite->addTest(new ParsingBugsTests('testAddArrayToArray'));
1431 $suite->addTest(new ParsingBugsTests('testEncodeArray'));
1432 $suite->addTest(new ParsingBugsTests('testEncodeRecursive'));
1433 $suite->addTest(new ParsingBugsTests('testBrokenrequests'));
1434 $suite->addTest(new ParsingBugsTests('testBrokenresponses'));
1435 $suite->addTest(new ParsingBugsTests('testBuggyHttp'));
1436 $suite->addTest(new ParsingBugsTests('testStringBug'));
1437 $suite->addTest(new ParsingBugsTests('testWhiteSpace'));
1438 $suite->addTest(new ParsingBugsTests('testAutodecodeResponse'));
1439 $suite->addTest(new ParsingBugsTests('testNoDecodeResponse'));
1440 $suite->addTest(new ParsingBugsTests('testAutoCoDec'));
1441 $suite->addTest(new ParsingBugsTests('testUTF8Response'));
1442 $suite->addTest(new ParsingBugsTests('testUTF8Request'));
1443 $suite->addTest(new ParsingBugsTests('testUTF8IntString'));
1444 $suite->addTest(new ParsingBugsTests('testStringInt'));
1445 $suite->addTest(new ParsingBugsTests('testStructMemExists'));
1446 $suite->addTest(new ParsingBugsTests('testDoubleDataInArrayTag'));
1447 $suite->addTest(new ParsingBugsTests('testDoubleStuffInValueTag'));
1448 $suite->addTest(new ParsingBugsTests('testNilValue'));
1449 $suite->addTest(new ParsingBugsTests('testLocale'));
1450
1451 $title = 'XML-RPC Unit Tests';
1452
1453 if(isset($only))
1454 {
1455     $suite = new PHPUnit_TestSuite($only);
1456 }
1457
1458 if(isset($_SERVER['REQUEST_METHOD']))
1459 {
1460     echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\" xml:lang=\"en\">\n<head>\n<title>$title</title>\n</head>\n<body>\n<h1>$title</h1>\n";
1461 }
1462 else
1463 {
1464     echo "$title\n\n";
1465 }
1466
1467 if(isset($_SERVER['REQUEST_METHOD']))
1468 {
1469     echo "<h3>Using lib version: $xmlrpcVersion on PHP version: ".phpversion()."</h3>\n";
1470     echo '<h3>Running '.$suite->testCount().' tests (some of which are multiple) against servers: http://'.htmlspecialchars($LOCALSERVER.$URI).' and https://'.htmlspecialchars($HTTPSSERVER.$HTTPSURI)."\n ...</h3>\n";
1471     flush();
1472     @ob_flush();
1473 }
1474 else
1475 {
1476     echo "Using lib version: $xmlrpcVersion on PHP version: ".phpversion()."\n";
1477     echo 'Running '.$suite->testCount().' tests (some of which are multiple) against servers: http://'.$LOCALSERVER.$URI.' and https://'.$HTTPSSERVER.$HTTPSURI."\n\n";
1478 }
1479
1480 // do some basic timing measurement
1481 list($micro, $sec) = explode(' ', microtime());
1482 $start_time = $sec + $micro;
1483
1484 $PHPUnit = new PHPUnit;
1485 $result = $PHPUnit->run($suite, ($DEBUG == 0 ? '.' : '<hr/>'));
1486
1487 list($micro, $sec) = explode(' ', microtime());
1488 $end_time = $sec + $micro;
1489
1490 if(!isset($_SERVER['REQUEST_METHOD']))
1491 {
1492     echo $result->toString()."\n";
1493 }
1494
1495 if(isset($_SERVER['REQUEST_METHOD']))
1496 {
1497     echo '<h3>'.$result->failureCount()." test failures</h3>\n";
1498     printf("Time spent: %.2f secs<br/>\n", $end_time - $start_time);
1499 }
1500 else
1501 {
1502     echo $result->failureCount()." test failures\n";
1503     printf("Time spent: %.2f secs\n", $end_time - $start_time);
1504 }
1505
1506 if($result->failureCount() && !$DEBUG)
1507 {
1508     $target = strpos($_SERVER['PHP_SELF'], '?') ? $_SERVER['PHP_SELF'].'&amp;DEBUG=1' : $_SERVER['PHP_SELF'].'?DEBUG=1';
1509     $t2 = strpos($_SERVER['PHP_SELF'], '?') ? $_SERVER['PHP_SELF'].'&amp;DEBUG=2' : $_SERVER['PHP_SELF'].'?DEBUG=2';
1510     if(isset($_SERVER['REQUEST_METHOD']))
1511     {
1512         echo '<p>Run testsuite with <a href="'.$target.'">DEBUG=1</a> to have more detail about tests results. Or with <a href="'.$t2.'">DEBUG=2</a> for even more.</p>'."\n";
1513     }
1514     else
1515     {
1516         echo "Run testsuite with DEBUG=1 (or 2) to have more detail about tests results\n";
1517     }
1518 }
1519
1520 if(isset($_SERVER['REQUEST_METHOD']))
1521 {
1522 ?>
1523 <a href="#" onclick="if (document.getElementById('opts').style.display == 'block') document.getElementById('opts').style.display = 'none'; else document.getElementById('opts').style.display = 'block';">More options...</a>
1524 <div id="opts" style="display: none;">
1525 <form method="GET" style="border: 1px solid silver; margin: 5px; padding: 5px; font-family: monospace;">
1526 HTTP Server:&nbsp;&nbsp;<input name="LOCALSERVER" size="30" value="<?php echo htmlspecialchars($LOCALSERVER); ?>"/> Path: <input name="URI"  size="30" value="<?php echo htmlspecialchars($URI); ?>"/><br/>
1527 HTTPS Server: <input name="HTTPSSERVER" size="30" value="<?php echo htmlspecialchars($HTTPSSERVER); ?>"/> Path: <input name="HTTPSURI"  size="30" value="<?php echo htmlspecialchars($HTTPSURI); ?>"/> Do not verify cert: <input name="HTTPSIGNOREPEER" value="true" type="checkbox" <?php if ($HTTPSIGNOREPEER) echo 'checked="checked"'; ?>/><br/>
1528
1529 Proxy Server: <input name="PROXY" size="30" value="<?php echo isset($PROXY) ? htmlspecialchars($PROXY) : ''; ?>"/> <input type="submit" value="Run Testsuite"/>
1530 </form>
1531 </div>
1532 <?php
1533 echo $result->toHTML()."\n</body>\n</html>\n";
1534 }
1535 ?>