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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
use strict;
use warnings;
use Test::More;
use MIME::Base64;
use Net::HTTP::Spore;
my $username = 'franck';
my $password = 's3kr3t';
my $mock_server = {
'/show' => sub {
my $req = shift;
my $auth = $req->header('Authorization');
if ($auth) {
$req->new_response( 200, [ 'Content-Type' => 'text/plain' ], 'ok' );
}
else {
$req->new_response( 403, [ 'Content-Type' => 'text/plain' ],
'not ok' );
}
},
};
my @tests = (
{
middlewares => [ [ 'Mock', tests => $mock_server ] ],
expected => { status => 403, body => 'not ok' }
},
{
middlewares => [
[ 'Auth::Basic', username => $username, password => $password ],
[ 'Mock', tests => $mock_server ],
],
expected => { status => 200, body => 'ok' }
},
);
plan tests => 3 * @tests;
foreach my $test (@tests) {
ok my $client = Net::HTTP::Spore->new_from_spec(
't/specs/api.json', base_url => 'http://localhost/'
),
'client created';
foreach ( @{ $test->{middlewares} } ) {
$client->enable(@$_);
}
my $res = $client->get_info();
is $res->[0], $test->{expected}->{status}, 'valid HTTP status';
is $res->[2], $test->{expected}->{body}, 'valid HTTP body';
}
|