#!perl use strict; use warnings; BEGIN { use FindBin; use lib "$FindBin::Bin/lib"; chdir 't' if -d 't'; use lib qw[../lib inc]; require 'local_request.pl'; } use Test::More 'no_plan'; use Catalyst::Test 'TestApp'; use RPC::XML; use HTTP::Request; use Data::Dumper; my %RpcArgs = ( 1 => "b" ); #my %RpcRv = ( auto => 1, begin => 1, end => 1, input => \%RpcArgs ); my %RpcRv = ( auto => 1, begin => 1, end => 1 ); my $EntryPoint = 'http://localhost/rpc'; my $Prefix = 'rpc.functions.'; my %Methods = ( # method name # rv 'echo.regex' => 'echo_regex', 'echo_plain' => 'echo_plain', 'echo.path' => 'echo_path', 'echo.path.stash' => { %RpcRv, function => 'echo_path_stash' }, 'echo.regex.stash' => { %RpcRv, function => 'echo_regex_stash' }, 'echo_plain_stash' => { %RpcRv, function => 'echo_plain_stash' }, ); # init -- mention var twice due to warnings; $RPC::XML::ENCODING = $RPC::XML::ENCODING = 'UTF-8'; while ( my($meth,$rv) = each %Methods ) { my $str = RPC::XML::request->new( $Prefix . $meth, input => \%RpcArgs )->as_string; my $req = HTTP::Request->new( POST => $EntryPoint ); $req->header( 'Content-Length' => length($str) ); $req->header( 'Content-Type' => 'text/xml' ); $req->content( $str ); my $res = request( $req ); ok( $res, "Got response on '$meth'" ); ok( $res->is_success, " Response successfull 2XX" ); is( $res->code, 200, " Reponse code 200" ); my $data = RPC::XML::Parser->new->parse( $res->content )->value->value; is_deeply( $data, $rv, " Return value as expected" ); if( ref $data and UNIVERSAL::isa( $data, 'HASH' ) ) { ok( not(exists($data->{faultString})), " No faultstring" ); ok( not(exists($data->{faultCode})), " No faultcode" ); diag( $data->{faultCode} . ' ' . $data->{faultString} ) if $data->{faultString}; } }