PurchaseRequestTest   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 63
Duplicated Lines 39.68 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 3
dl 25
loc 63
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 25 25 1
A testGetData() 0 17 1
A testSendData() 0 6 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
/**
3
 * InterKassa driver for the Omnipay PHP payment processing library
4
 *
5
 * @link      https://github.com/hiqdev/omnipay-interkassa
6
 * @package   omnipay-interkassa
7
 * @license   MIT
8
 * @copyright Copyright (c) 2015-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace Omnipay\InterKassa\Tests\Message;
12
13
use Omnipay\InterKassa\Message\PurchaseRequest;
14
use Omnipay\InterKassa\Stubs\PurchaseRequestStub;
15
use Omnipay\Tests\TestCase;
16
17
class PurchaseRequestTest extends TestCase
18
{
19
    /**
20
     * @var
21
     */
22
    private $stub;
23
24
    /**
25
     * @var PurchaseRequest
26
     */
27
    protected $request;
28
29 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...
30
    {
31
        parent::setUp();
32
33
        $this->stub = new PurchaseRequestStub();
34
        $stub = $this->stub;
35
36
        $this->request = new PurchaseRequest($this->getHttpClient(), $this->getHttpRequest());
37
        $this->request->initialize([
38
            'purse' => $stub->purse,
39
            'signAlgorithm' => $stub->signAlgorithm,
40
            'signKey' => $stub->signKey,
41
            'testKey' => $stub->testKey,
42
            'returnUrl' => $stub->returnUrl,
43
            'returnMethod' => $stub->returnMethod,
44
            'cancelUrl' => $stub->cancelUrl,
45
            'cancelMethod' => $stub->cancelMethod,
46
            'notifyUrl' => $stub->notifyUrl,
47
            'notifyMethod' => $stub->notifyMethod,
48
            'description' => $stub->description,
49
            'transactionId' => $stub->transactionId,
50
            'amount' => $stub->amount,
51
            'currency' => $stub->currency,
52
        ]);
53
    }
54
55
    public function testGetData()
56
    {
57
        $data = $this->request->getData();
58
59
        $this->assertSame($this->stub->purse, $data['ik_co_id']);
60
        $this->assertSame($this->stub->returnUrl, $data['ik_suc_u']);
61
        $this->assertSame($this->stub->cancelUrl, $data['ik_fal_u']);
62
        $this->assertSame($this->stub->notifyUrl, $data['ik_ia_u']);
63
        $this->assertSame($this->stub->description, $data['ik_desc']);
64
        $this->assertSame($this->stub->transactionId, $data['ik_pm_no']);
65
        $this->assertSame($this->stub->amount, $data['ik_am']);
66
        $this->assertSame($this->stub->currency, $data['ik_cur']);
67
        $this->assertSame($this->stub->returnMethod, $data['ik_suc_m']);
68
        $this->assertSame($this->stub->returnMethod, $data['ik_pnd_m']);
69
        $this->assertSame($this->stub->cancelMethod, $data['ik_fal_m']);
70
        $this->assertSame($this->stub->notifyMethod, $data['ik_ia_m']);
71
    }
72
73
    public function testSendData()
74
    {
75
        $data = $this->request->getData();
76
        $response = $this->request->sendData($data);
77
        $this->assertSame('Omnipay\InterKassa\Message\PurchaseResponse', get_class($response));
78
    }
79
}
80