perl-business-paypal-api/t/ExpressOrder.t

125 lines
3.4 KiB
Perl
Raw Normal View History

2009-12-02 16:44:18 +00:00
use Test::More;
2014-03-23 02:31:50 +00:00
if ( !$ENV{WPP_TEST} || !-f $ENV{WPP_TEST} ) {
plan skip_all =>
'No WPP_TEST env var set. Please see README to run tests';
2009-12-02 16:44:18 +00:00
}
else {
plan tests => 8;
}
use_ok( 'Business::PayPal::API::ExpressCheckout' );
#########################
require 't/API.pl';
my %args = do_args();
## we're passing more to new() than we normally would because we're
## using %args elsewhere below. See documentation for the correct
## arguments.
my $pp = new Business::PayPal::API::ExpressCheckout( %args );
##
## set checkout info
##
#$Business::PayPal::API::Debug = 1;
2014-03-23 02:31:50 +00:00
my %response = $pp->SetExpressCheckout(
OrderTotal => '55.43',
ReturnURL => 'http://www.google.com/',
CancelURL => 'http://www.google.com/',
Custom => "This field is custom. Isn't that great?",
2009-12-02 16:44:18 +00:00
PaymentAction => 'Order',
2014-03-23 02:31:50 +00:00
BuyerEmail => $args{BuyerEmail}, ## from %args
);
2009-12-02 16:44:18 +00:00
#$Business::PayPal::API::Debug = 0;
my $token = $response{Token};
ok( $token, "Got token" );
2014-03-23 02:31:50 +00:00
die
"No token from PayPal! Check your authentication information and try again."
unless $token;
2009-12-02 16:44:18 +00:00
2014-03-23 02:31:50 +00:00
my $pp_url
= "https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=$token";
2009-12-02 16:44:18 +00:00
print STDERR <<"_TOKEN_";
Now paste the following URL into your browser (you will need to have
another browser window already logged into the PayPal developer site):
$pp_url
Login to PayPal as the Buyer you specified in '$ENV{WPP_TEST}' and
proceed to checkout (this authorizes the transaction represented by
the token). When finished, PayPal will redirect you to a non-existent
URL:
http://localhost/return.html?token=$token&PayerID=XXXXXXXXXXXXX
Notice the *PayerID* URL argument (XXXXXXXXXXXXX) on the redirect from
PayPal.
Once completed, The Payer account and Payee account can be checked for an order,
authorization, and void.
_TOKEN_
print STDERR "\nType or paste that PayerID here and hit Enter: \n";
2014-03-23 02:31:50 +00:00
my $payerid = <STDIN>;
chomp $payerid;
2009-12-02 16:44:18 +00:00
die "Need a PayerID.\n" unless $payerid;
##
## get checkout details
##
2014-03-23 02:31:50 +00:00
my %details = $pp->GetExpressCheckoutDetails( $token );
2009-12-02 16:44:18 +00:00
is( $details{Token}, $token, "details ok" );
#use Data::Dumper;
#print STDERR Dumper \%details;
$details{PayerID} = $payerid;
2014-03-23 02:31:50 +00:00
my %payment = (
Token => $details{Token},
PaymentAction => 'Order',
PayerID => $details{PayerID},
OrderTotal => '55.43',
);
2009-12-02 16:44:18 +00:00
##
## do checkout
##
#$Business::PayPal::API::Debug = 1;
2014-03-23 02:31:50 +00:00
my %payinfo = $pp->DoExpressCheckoutPayment( %payment );
2009-12-02 16:44:18 +00:00
#$Business::PayPal::API::Debug = 0;
#If Order is successful then authorize it, then void it.
2014-03-23 02:31:50 +00:00
if ( like( $payinfo{Ack}, qr/Success/, "successful payment" ) ) {
my $transid = $payinfo{TransactionID};
my $amount = '25.43';
use_ok( 'Business::PayPal::API::AuthorizationRequest' );
2009-12-02 16:44:18 +00:00
%args = do_args();
2014-03-23 02:31:50 +00:00
#$Business::PayPal::API::Debug = 1;
$ppauth = new Business::PayPal::API::AuthorizationRequest( %args );
my %resp = $ppauth->DoAuthorizationRequest(
TransactionID => $transid,
Amount => $amount
);
like( $resp{Ack}, qr/Succes/, 'Successful order authorization' );
2009-12-02 16:44:18 +00:00
use_ok( 'Business::PayPal::API::VoidRequest' );
%args = do_args();
2014-03-23 02:31:50 +00:00
my $ppvoid = new Business::PayPal::API::VoidRequest( %args );
%resp1 = $ppvoid->DoVoidRequest(
AuthorizationID => $transid,
Note => 'Voided'
);
like( $resp1{Ack}, qr/Success/, 'Successful order void' );
}