Passed
Push — master ( 95a47e...b19284 )
by Tim
03:01
created

GenericActionTest::testCreateWithSuccess()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 22
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 14
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 22
rs 9.7998
1
<?php
2
3
/**
4
 * TechDivision\Import\Dbal\Actions\GenericActionTest
5
 *
6
 * NOTICE OF LICENSE
7
 *
8
 * This source file is subject to the Open Software License (OSL 3.0)
9
 * that is available through the world-wide-web at this URL:
10
 * http://opensource.org/licenses/osl-3.0.php
11
 *
12
 * PHP version 5
13
 *
14
 * @author    Tim Wagner <[email protected]>
15
 * @copyright 2021 TechDivision GmbH <[email protected]>
16
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
 * @link      https://github.com/techdivision/import-dbal
18
 * @link      http://www.techdivision.com
19
 */
20
21
namespace TechDivision\Import\Dbal\Actions;
22
23
use PHPUnit\Framework\TestCase;
24
use TechDivision\Import\Dbal\Actions\Processors\ProcessorInterface;
25
26
/**
27
 * Test class for the generic action implementation.
28
 *
29
 * @author    Tim Wagner <[email protected]>
30
 * @copyright 2021 TechDivision GmbH <[email protected]>
31
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
32
 * @link      https://github.com/techdivision/import-dbal
33
 * @link      http://www.techdivision.com
34
 */
35
class GenericActionTest extends TestCase
36
{
37
38
    /**
39
     * Test's the create() method successfull.
40
     *
41
     * @return void
42
     */
43
    public function testCreateWithSuccess()
44
    {
45
46
        // create a persist processor mock instance
47
        $mockCreateProcessor = $this->getMockBuilder($processorInterface = ProcessorInterface::class)
48
                                    ->setMethods(get_class_methods($processorInterface))
49
                                    ->getMock();
50
        $mockCreateProcessor->expects($this->once())
51
                            ->method('execute')
52
                            ->with($row = array())
53
                            ->willReturn(null);
54
55
        // create a mock for the abstract action
56
        $mockAction = $this->getMockBuilder(GenericAction::class)
57
                           ->setMethods(array('getCreateProcessor'))
58
                           ->getMock();
59
        $mockAction->expects($this->once())
60
                   ->method('getCreateProcessor')
61
                   ->willReturn($mockCreateProcessor);
62
63
        // test the create() method
64
        $this->assertNull($mockAction->create($row));
65
    }
66
67
    /**
68
     * Test's the delete() method successfull.
69
     *
70
     * @return void
71
     */
72
    public function testDeleteWithSuccess()
73
    {
74
75
        // create a delete processor mock instance
76
        $mockDeleteProcessor = $this->getMockBuilder($processorInterface = ProcessorInterface::class)
77
                                    ->setMethods(get_class_methods($processorInterface))
78
                                    ->getMock();
79
        $mockDeleteProcessor->expects($this->once())
80
                            ->method('execute')
81
                            ->with($row = array())
82
                            ->willReturn(null);
83
84
        // create a mock for the abstract action
85
                            $mockAction = $this->getMockBuilder(GenericAction::class)
86
                           ->setMethods(array('getDeleteProcessor'))
87
                           ->getMock();
88
        $mockAction->expects($this->once())
89
                   ->method('getDeleteProcessor')
90
                   ->willReturn($mockDeleteProcessor);
91
92
        // test the delete() method
93
        $this->assertNull($mockAction->delete($row));
94
    }
95
}
96