Completed
Push — master ( fe4d16...77dac1 )
by Florian
26:03
created

IndexTest::setUp()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 39
Code Lines 28

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 39
rs 8.8571
cc 1
eloc 28
nc 1
nop 0
1
<?php
2
3
/**
4
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
16
 *
17
 * PHP version 5
18
 *
19
 * @category  Payone
20
 * @package   Payone_Magento2_Plugin
21
 * @author    FATCHIP GmbH <[email protected]>
22
 * @copyright 2003 - 2017 Payone GmbH
23
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
24
 * @link      http://www.payone.de
25
 */
26
27
namespace Payone\Core\Test\Unit\Controller\Mandate;
28
29
use Payone\Core\Controller\Transactionstatus\Index as ClassToTest;
30
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
31
use Magento\Framework\App\Action\Context;
32
use Payone\Core\Helper\Toolkit;
33
use Payone\Core\Helper\Environment;
34
use Payone\Core\Helper\Order;
35
use Magento\Framework\Controller\Result\RawFactory;
36
use Magento\Framework\Controller\Result\Raw;
37
use Magento\Framework\App\Request\Http;
38
use Magento\Sales\Model\Order as OrderCore;
39
use Magento\Framework\Event\ManagerInterface;
40
41
class IndexTest extends \PHPUnit_Framework_TestCase
42
{
43
    /**
44
     * @var ClassToTest
45
     */
46
    private $classToTest;
47
48
    /**
49
     * @var ObjectManager
50
     */
51
    private $objectManager;
52
53
    /**
54
     * @var Toolkit|\PHPUnit_Framework_MockObject_MockObject
55
     */
56
    private $toolkitHelper;
57
58
    /**
59
     * @var Environment|\PHPUnit_Framework_MockObject_MockObject
60
     */
61
    private $environmentHelper;
62
63
    protected function setUp()
64
    {
65
        $this->objectManager = new ObjectManager($this);
66
67
        $post = $this->getMockBuilder(self::class)->disableOriginalConstructor()->setMethods(['toArray'])->getMock();
68
        $post->method('toArray')->willReturn(['test' => 'array']);
69
70
        $request = $this->getMockBuilder(Http::class)
71
            ->disableOriginalConstructor()
72
            ->setMethods(['getParam', 'getPost'])
73
            ->getMock();
74
        $request->method('getParam')->willReturn('Value');
75
        $request->method('getPost')->willReturn($post);
76
77
        $eventManater = $this->getMockBuilder(ManagerInterface::class)->disableOriginalConstructor()->getMock();
78
79
        $context = $this->getMockBuilder(Context::class)->disableOriginalConstructor()->getMock();
80
        $context->method('getRequest')->willReturn($request);
81
        $context->method('getEventManager')->willReturn($eventManater);
82
83
        $this->toolkitHelper = $this->getMockBuilder(Toolkit::class)->disableOriginalConstructor()->getMock();
84
        $this->environmentHelper = $this->getMockBuilder(Environment::class)->disableOriginalConstructor()->getMock();
85
86
        $order = $this->getMockBuilder(OrderCore::class)->disableOriginalConstructor()->getMock();
87
        $orderHelper = $this->getMockBuilder(Order::class)->disableOriginalConstructor()->getMock();
88
        $orderHelper->method('getOrderByTxid')->willReturn($order);
89
90
        $rawResponse = $this->getMockBuilder(Raw::class)->disableOriginalConstructor()->getMock();
91
        $resultRawFactory = $this->getMockBuilder(RawFactory::class)->disableOriginalConstructor()->getMock();
92
        $resultRawFactory->method('create')->willReturn($rawResponse);
93
94
        $this->classToTest = $this->objectManager->getObject(ClassToTest::class, [
95
            'context' => $context,
96
            'toolkitHelper' => $this->toolkitHelper,
97
            'environmentHelper' => $this->environmentHelper,
98
            'orderHelper' => $orderHelper,
99
            'resultRawFactory' => $resultRawFactory
100
        ]);
101
    }
102
103 View Code Duplication
    public function testExecuteIpInvalid()
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...
104
    {
105
        $this->environmentHelper->method('isRemoteIpValid')->willReturn(false);
0 ignored issues
show
Bug introduced by
The method method() does not seem to exist on object<Payone\Core\Helper\Environment>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
106
107
        $result = $this->classToTest->execute();
108
        $this->assertInstanceOf(Raw::class, $result);
109
    }
110
111 View Code Duplication
    public function testExecuteKeyInvalid()
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...
112
    {
113
        $this->environmentHelper->method('isRemoteIpValid')->willReturn(true);
0 ignored issues
show
Bug introduced by
The method method() does not seem to exist on object<Payone\Core\Helper\Environment>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
114
        $this->toolkitHelper->method('isKeyValid')->willReturn(false);
0 ignored issues
show
Bug introduced by
The method method() does not seem to exist on object<Payone\Core\Helper\Toolkit>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
115
116
        $result = $this->classToTest->execute();
117
        $this->assertInstanceOf(Raw::class, $result);
118
    }
119
120 View Code Duplication
    public function testExecute()
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...
121
    {
122
        $this->environmentHelper->method('isRemoteIpValid')->willReturn(true);
0 ignored issues
show
Bug introduced by
The method method() does not seem to exist on object<Payone\Core\Helper\Environment>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
123
        $this->toolkitHelper->method('isKeyValid')->willReturn(true);
0 ignored issues
show
Bug introduced by
The method method() does not seem to exist on object<Payone\Core\Helper\Toolkit>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
124
125
        $result = $this->classToTest->execute();
126
        $this->assertInstanceOf(Raw::class, $result);
127
    }
128
}
129