summaryrefslogtreecommitdiff
path: root/t/spore-request/headers.t
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-11-01 17:05:57 +0100
committerfranck cuny <franck@lumberjaph.net>2010-11-01 17:05:57 +0100
commit489fda6fe372491b88804a85b4f1650cd47a65cd (patch)
tree4307d16b54673c19591b316cc5fa34863f5e70fa /t/spore-request/headers.t
parentrewrite request using moose; not yet finished (diff)
downloadnet-http-spore-489fda6fe372491b88804a85b4f1650cd47a65cd.tar.gz
add some tests
Diffstat (limited to '')
-rw-r--r--t/spore-request/headers.t37
1 files changed, 37 insertions, 0 deletions
diff --git a/t/spore-request/headers.t b/t/spore-request/headers.t
new file mode 100644
index 0000000..1d0e3f5
--- /dev/null
+++ b/t/spore-request/headers.t
@@ -0,0 +1,37 @@
+use strict;
+use warnings;
+
+use Test::More tests => 7;
+use Net::HTTP::Spore::Request;
+use Net::HTTP::Spore;
+
+my $env = { 'HTTP_CONTENT_TYPE' => 'text/html', };
+
+ok my $request = Net::HTTP::Spore::Request->new($env);
+
+isa_ok $request->headers, 'HTTP::Headers';
+is $request->header('Content-Type'), 'text/html';
+ok $request->header( 'Content-Type' => 'application/json' );
+is $request->header('Content-Type'), 'application/json';
+
+my $mock_server = {
+ '/file' => sub {
+ my $req = shift;
+ my $final = $req->finalize;
+ if ( $final->header('Content-Type') eq 'image/png' ) {
+ return $req->new_response( 200, [ 'Content-Type' => 'text/html' ],
+ 'ok' );
+ }
+ $req->new_response( 500, [ 'Content-Type' => 'text/html' ], 'nok' );
+ },
+};
+
+ok my $client =
+ Net::HTTP::Spore->new_from_spec( 't/specs/api.json',
+ base_url => 'http://localhost', );
+
+$client->enable( 'Mock', tests => $mock_server );
+
+my $res = $client->attach_file( file => 'foo', 'content_type' => 'image/png' );
+is $res->[0], 200;
+