The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# 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 => 5;
BEGIN { use_ok('Net::Amazon') };

use Net::Amazon;
use File::Spec;

my $CANNED = "canned";
$CANNED = File::Spec->catfile("t", "canned") unless -d $CANNED;
$CANNED = File::Spec->catfile("../t", "canned") unless -d $CANNED;

######################################################################
# Successful textstream fetch
######################################################################

canned("blended1.xml");
canned("blendedm.xml");

my $ua = Net::Amazon->new(
    token       => 'YOUR_AMZN_TOKEN',
);

   # Response is of type Net::Amazon::Textstream::Response
my $resp = $ua->search(
    blended  => "perl",
);

ok($resp->is_success(), "Successful fetch");

######################################################################
# Check result
######################################################################
my @properties = $resp->properties();
my $result;

foreach (@properties) {
    $result .= $_->as_string();
}

like($result, qr/Flanagan.*?Schwartz.*?Wall/, "single product line");

####################
# Mult product lines
####################
   # Response is of type Net::Amazon::Textstream::Response
$resp = $ua->search(
    blended  => "perl",
);

ok($resp->is_success(), "Successful fetch");

@properties = $resp->properties();

foreach (@properties) {
    $result .= $_->as_string();
}

like($result, qr/Flanagan.*?Tarzan.*?Stainless/, "multiple product linse");
#print $result;

######################################################################
# 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;
    }
}
__END__
my $p = ($resp->properties)[0];
is($p->publisher(), "Fireside", "Check publisher");

######################################################################
# 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;
    }
}