Completed
Push — master ( 0f907a...866d23 )
by Andrii
02:30
created

PurchaseResponseTest::testSuccess()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 23
Code Lines 20

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 23
rs 9.0856
cc 1
eloc 20
nc 1
nop 0
1
<?php
2
3
/*
4
 * PayPal driver for Omnipay PHP payment library
5
 *
6
 * @link      https://github.com/hiqdev/omnipay-paypal
7
 * @package   omnipay-paypal
8
 * @license   MIT
9
 * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace Omnipay\PayPal\Message;
13
14
use Omnipay\Tests\TestCase;
15
16
class PurchaseResponseTest extends TestCase
17
{
18
    private $request;
19
20
    private $purse          = '[email protected]';
21
    private $secret         = '12()&*&+_)?><';
22
    private $returnUrl      = 'https://www.foodstore.com/success';
23
    private $cancelUrl      = 'https://www.foodstore.com/failure';
24
    private $notifyUrl      = 'https://www.foodstore.com/notify';
25
    private $description    = 'Test Transaction long description';
26
    private $transactionId  = '12345ASD67890sd';
27
    private $amount         = '14.65';
28
    private $quantity       = '1';
0 ignored issues
show
Unused Code introduced by
The property $quantity is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
29
    private $currency       = 'USD';
30
    private $testMode       = true;
31
32 View Code Duplication
    public function setUp()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
33
    {
34
        parent::setUp();
35
36
        $this->request = new PurchaseRequest($this->getHttpClient(), $this->getHttpRequest());
37
        $this->request->initialize([
38
            'purse'         => $this->purse,
39
            'secret'        => $this->secret,
40
            'returnUrl'     => $this->returnUrl,
41
            'cancelUrl'     => $this->cancelUrl,
42
            'notifyUrl'     => $this->notifyUrl,
43
            'description'   => $this->description,
44
            'transactionId' => $this->transactionId,
45
            'amount'        => $this->amount,
46
            'currency'      => $this->currency,
47
            'testMode'      => $this->testMode,
48
        ]);
49
    }
50
51
    public function testSuccess()
52
    {
53
        $response = $this->request->send();
54
55
        $this->assertFalse($response->isSuccessful());
56
        $this->assertTrue($response->isRedirect());
57
        $this->assertNull($response->getCode());
58
        $this->assertNull($response->getMessage());
59
        $this->assertSame('POST', $response->getRedirectMethod());
60
        $this->assertStringEndsWith('paypal.com/cgi-bin/webscr', $response->getRedirectUrl());
61
        $this->assertSame([
62
            'cmd'           => '_xclick',
63
            'bn'            => 'PP-BuyNowBF:btn_paynowCC_LG.gif:NonHostedGuest',
64
            'item_name'     => $this->description,
65
            'amount'        => $this->amount,
66
            'currency_code' => strtoupper($this->currency),
67
            'business'      => $this->purse,
68
            'notify_url'    => $this->notifyUrl,
69
            'return'        => $this->returnUrl,
70
            'cancel_return' => $this->cancelUrl,
71
            'item_number'   => $this->transactionId,
72
        ], $response->getRedirectData());
73
    }
74
}
75