summary refs log tree commit diff
path: root/t/spore-middleware/format-yaml.t
blob: 58c743e51cc86a77373a47af3b863177ee4fd08c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use strict;
use warnings;

use Test::More;
use YAML;

use Net::HTTP::Spore;

my $content = { keys => [qw/1 2 3/] };

my $mock_server = {
    '/show' => sub {
        my $req = shift;
        $req->new_response( 200, [ 'Content-Type' => 'text/x-yaml' ],
            Dump($content) );
    },
};

ok my $client =
  Net::HTTP::Spore->new_from_spec( 't/specs/api.json',
    base_url => 'http://localhost:5984' );

$client->enable('Format::YAML');
$client->enable( 'Mock', tests => $mock_server );

my $res = $client->get_info();
is $res->[0],        200;
is_deeply $res->[2], $content;
is $res->header('Content-Type'), 'text/x-yaml';

my $req = $res->request;
is $req->header('Accept'), 'text/x-yaml';

done_testing;