about summary refs log tree commit diff
path: root/lib/MooseX/Net/API/Role/CatalystTest.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2009-12-08 16:13:54 +0100
committerfranck cuny <franck@lumberjaph.net>2009-12-08 16:13:54 +0100
commit100caaf831eb877adecce830fe7f83c7b3d37080 (patch)
treedb03a6d673457919f42feefe1d56eb85e16efb77 /lib/MooseX/Net/API/Role/CatalystTest.pm
parentmethod to deserialize (diff)
downloadnet-http-api-100caaf831eb877adecce830fe7f83c7b3d37080.tar.gz
update tests to use catalyst, bla
Diffstat (limited to 'lib/MooseX/Net/API/Role/CatalystTest.pm')
-rw-r--r--lib/MooseX/Net/API/Role/CatalystTest.pm57
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/MooseX/Net/API/Role/CatalystTest.pm b/lib/MooseX/Net/API/Role/CatalystTest.pm
new file mode 100644
index 0000000..d81b956
--- /dev/null
+++ b/lib/MooseX/Net/API/Role/CatalystTest.pm
@@ -0,0 +1,57 @@
+package MooseX::Net::API::Role::CatalystTest;
+
+use lib ('t/lib');
+use Moose::Role; with qw/
+    MooseX::Net::API::Role::Serialize 
+    MooseX::Net::API::Role::Deserialize/;
+
+my $list_content_type = {
+    'json' => 'application/json',
+    'yaml' => 'text/x-yaml',
+    'xml'  => 'text/xml',
+};
+
+after qw/test_api_declare/ => sub {
+    my $caller  = shift;
+    my $name    = shift;
+    my %options = @_;
+
+    if ( $options{catalyst} ) {
+        my $app = $options{catalyst_app_name};
+
+        Class::MOP::load_class("HTTP::Request");
+        Class::MOP::load_class("Catalyst::Test");
+
+        Catalyst::Test->import($app);
+
+        my $res = __PACKAGE__->meta->remove_method('_request');
+        MooseX::Net::API->meta->add_method(
+            '_request' => sub {
+                my ( $class, $format, $options, $uri, $args ) = @_;
+                my $method = $options->{method};
+
+                my $res;
+                if (   $method =~ /^(?:GET|DELETE)$/
+                    || $options->{params_in_url} )
+                {
+                    $uri->query_form(%$args);
+                    my $req = HTTP::Request->new( $method => $uri );
+                    $req->header(
+                        'Content-Type' => $list_content_type->{$format} );
+                    $res = request($req);
+                }
+                else {
+                    my $req = HTTP::Request->new( $method => $uri );
+                    $req->header(
+                        'Content-Type' => $list_content_type->{$format} );
+                    my $content = _do_serialization($class, $args, $format);
+                    $req->content( $content );
+                    $res = request($req);
+                }
+                return $res;
+            }
+        );
+    }
+};
+
+1;