PurchaseRequestTest::testGetData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
dl 0
loc 14
rs 9.4285
c 1
b 1
f 0
cc 1
eloc 10
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 PurchaseRequestTest extends TestCase
17
{
18
    private $request;
19
20
    private $purse          = '[email protected]';
21
    private $secret         = '22SAD#-78G888';
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 $sum            = '1.65';
28
    private $amount         = '14.65';
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
            'sum'           => $this->sum,
46
            'amount'        => $this->amount,
47
            'currency'      => $this->currency,
48
            'testMode'      => $this->testMode,
49
        ]);
50
    }
51
52
    public function testGetData()
53
    {
54
        $data = $this->request->getData();
55
56
        $this->assertSame($this->sum,           $this->request->getSum());
57
58
        $this->assertSame($this->purse,         $data['business']);
59
        $this->assertSame($this->returnUrl,     $data['return']);
60
        $this->assertSame($this->cancelUrl,     $data['cancel_return']);
61
        $this->assertSame($this->notifyUrl,     $data['notify_url']);
62
        $this->assertSame($this->description,   $data['item_name']);
63
        $this->assertSame($this->transactionId, $data['item_number']);
64
        $this->assertSame($this->amount,        $data['amount']);
65
    }
66
67
    public function testSendData()
68
    {
69
        $data = $this->request->getData();
70
        $response = $this->request->sendData($data);
71
        $this->assertSame('Omnipay\PayPal\Message\PurchaseResponse', get_class($response));
72
    }
73
}
74