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 55 56 57 58 59 60 61 62 63
|
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl 1.t'
#########################
# change 'tests => 1' to 'tests => last_test_to_print';
use warnings;
use strict;
use Test::More tests => 3;
BEGIN { use_ok('Net::Amazon') };
use Net::Amazon::Request::Manufacturer;
use Net::Amazon::Response::Manufacturer;
use File::Spec;
my $CANNED = "canned";
$CANNED = File::Spec->catfile("t", "canned") unless -d $CANNED;
#Only for debugging
#use Log::Log4perl qw(:easy);
#Log::Log4perl->easy_init($DEBUG);
######################################################################
# Successful Manufacturer fetch
######################################################################
canned("manufacturer.xml");
my $ua = Net::Amazon->new(
token => 'YOUR_AMZN_TOKEN',
);
my $req = Net::Amazon::Request::Manufacturer->new(
manufacturer => 'Black Belt Communications, Inc.',
);
# Response is of type Net::Amazon::Manufacturer::Response
my $resp = $ua->request($req);
ok($resp->is_success(), "Successful fetch");
######################################################################
# Parameters
######################################################################
my $p = ($resp->properties)[0];
is($p->publisher(), "Black Belt Communications, Inc.","Publisher is Black Belt Communications, Inc.");
######################################################################
# handle canned responses
######################################################################
sub canned {
my($file) = @_;
if(! exists $ENV{NET_AMAZON_LIVE_TESTS} ) {
$file = File::Spec->catfile($CANNED, $file);
open FILE, "<$file" or die "Cannot open $file";
my $data = join '', <FILE>;
close FILE;
push @Net::Amazon::CANNED_RESPONSES, $data;
}
}
|