eBay-API-Simple

 view release on metacpan or  search on metacpan

ex/01Shopping.t  view on Meta::CPAN

use Test::More;
use strict; no warnings;
#use LWP::Debug qw(+);
use Data::Dumper;
use lib qw/lib/;

my @skip_msg;

BEGIN {


    eval {
        use eBay::API::Simple::Shopping;
    };
    
    if ( $@ ) {
        push @skip_msg, 'missing module eBay::API::Simple::Shopping, skipping test';
    }
    if ( scalar( @skip_msg ) ) {
        plan skip_all => join( ' ', @skip_msg );
    }
    else {
        plan qw(no_plan);
    }    
}

my $call;
eval {
    $call = eBay::API::Simple::Shopping->new(
        { appid => undef } # <----- your appid here
    );
};
if ( $@ ) {
    push( @skip_msg, $@ );
}

#$call->api_init( { 
#    site_id => 0,
#    uri     => $arg_uri,
#    domain  => $arg_domain,
#    app_id  => $arg_appid,
#    version => $arg_version,
#} );

eval {
        
};

SKIP: {
    skip join( ' ', @skip_msg), 1 if scalar( @skip_msg );

    $call->execute( 'FindItemsAdvanced', { 
        QueryKeywords => 'black shoes', 
        MaxEntries => 5,
    } );

    #diag $call->request_content;
    #diag $call->response_content;

    if ( $call->has_error() ) {
        fail( 'api call failed: ' . $call->errors_as_string() );
    }
    else {
        is( ref $call->response_dom(), 'XML::LibXML::Document', 'response dom' );
        is( ref $call->response_hash(), 'HASH', 'response hash' );

        like( $call->nodeContent('Timestamp'), 
            qr/^\d{4}-\d{2}-\d{2}/, 
            'response timestamp' 
        );
    
        ok( $call->nodeContent('TotalItems') > 10, 'response total items' );
        #diag( 'total items: ' . $call->nodeContent('TotalItems') );
        #diag( Dumper( $call->response_hash() ) );
    }

    $call->execute( 'BadCall', { QueryKeywords => 'shoe' } );

    is( $call->has_error(), 1, 'look for error flag' );
    ok( $call->errors_as_string() ne '', 'check for error message' );
    ok( $call->response_content() ne '', 'check for response content' );

    $call->execute( 'FindItemsAdvanced', { QueryKeywords => 'shoe' } );

    is( $call->has_error(), 0, 'error check' );
    is( $call->errors_as_string(), '', 'error string check' );
    ok( $call->nodeContent('TotalItems') > 10, 'response total items' );

    #diag( Dumper( $call->response_content() ) );

    my @nodes = $call->response_dom->findnodes(
        '/FindItemsAdvancedResponse/SearchResult/ItemArray/Item'
    );

    foreach my $n ( @nodes ) {
        # diag( $n->findvalue('Title/text()') );
        ok( $n->findvalue('Title/text()') ne '', 'title check' );
    }


    my $call2 = eBay::API::Simple::Shopping->new( { response_encoding => 'XML' } );
    $call2->execute( 'FindPopularSearches', { QueryKeywords => 'shoe' } );

    #diag( $call2->response_content() );
}



( run in 0.392 second using v1.01-cache-2.11-cpan-3989ada0592 )