Test Failed
Push — master ( 475bfc...ca0e1d )
by Oss
05:46
created

UpdateContractTest   A

Complexity

Total Complexity 10

Size/Duplication

Total Lines 140
Duplicated Lines 20 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 0
Metric Value
wmc 10
lcom 1
cbo 4
dl 28
loc 140
rs 10
c 0
b 0
f 0

10 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A tearDown() 0 4 1
A testSetGetRootSchemaName() 0 6 1
A testSetGetOperationType() 0 6 1
A testSetGetContractType() 0 6 1
A testValidateException() 0 5 1
A testValidate() 28 28 1
A testAddColumn() 0 20 1
A testAddFilter() 0 28 1
A testToArray() 0 12 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
namespace Test\Brownie\BpmOnline\DataService\Contract;
4
5
use Brownie\BpmOnline\DataService\Column\ColumnExpression;
6
use Brownie\BpmOnline\DataService\Column\ColumnFilter;
7
use PHPUnit\Framework\TestCase;
8
use Brownie\BpmOnline\DataService\Contract\UpdateContract;
9
use Prophecy\Prophecy\MethodProphecy;
10
11
class UpdateContractTest extends TestCase
12
{
13
14
    /**
15
     * @var UpdateContract
16
     */
17
    private $updateContract;
18
19
    protected function setUp()
20
    {
21
        $this->updateContract = new UpdateContract('rootSchemaName');
22
    }
23
24
    protected function tearDown()
25
    {
26
        $this->updateContract = null;
27
    }
28
29
    public function testSetGetRootSchemaName()
30
    {
31
        $this->assertEquals('rootSchemaName', $this->updateContract->getRootSchemaName());
32
        $this->updateContract->setRootSchemaName('TestRootSchemaName');
33
        $this->assertEquals('TestRootSchemaName', $this->updateContract->getRootSchemaName());
34
    }
35
36
    public function testSetGetOperationType()
37
    {
38
        $this->assertEquals(2, $this->updateContract->getOperationType());
39
        $this->updateContract->setOperationType(200);
40
        $this->assertEquals(200, $this->updateContract->getOperationType());
41
    }
42
43
    public function testSetGetContractType()
44
    {
45
        $this->assertEquals('UpdateQuery', $this->updateContract->getContractType());
46
        $this->updateContract->setContractType('TestUpdateQuery');
47
        $this->assertEquals('TestUpdateQuery', $this->updateContract->getContractType());
48
    }
49
50
    /**
51
     * @expectedException \Brownie\BpmOnline\Exception\ValidateException
52
     */
53
    public function testValidateException()
54
    {
55
        $this->updateContract->setOperationType(1);
56
        $this->assertNull($this->updateContract->validate());
57
    }
58
59 View Code Duplication
    public function testValidate()
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...
60
    {
61
        $columnFilter = $this->prophesize(ColumnFilter::class);
62
        $columnFilterMethodToArray = new MethodProphecy(
63
            $columnFilter,
64
            'toArray',
65
            []
66
        );
67
        $columnFilter
68
            ->addMethodProphecy(
69
                $columnFilterMethodToArray->willReturn(['test' => 'Ok'])
70
            );
71
72
        $columnFilterMethodValidate = new MethodProphecy(
73
            $columnFilter,
74
            'validate',
75
            []
76
        );
77
        $columnFilter
78
            ->addMethodProphecy(
79
                $columnFilterMethodValidate->willReturn(null)
80
            );
81
82
        $updateContract = $this->updateContract->addFilter($columnFilter->reveal());
83
84
        $this->assertInstanceOf(UpdateContract::class, $updateContract);
85
        $this->assertNull($this->updateContract->validate());
86
    }
87
88
    public function testAddColumn()
89
    {
90
        $columnExpression = $this->prophesize(ColumnExpression::class);
91
        $columnExpressionMethodToArray = new MethodProphecy(
92
            $columnExpression,
93
            'toArray',
94
            []
95
        );
96
        $columnExpression
97
            ->addMethodProphecy(
98
                $columnExpressionMethodToArray->willReturn(['test' => 'Ok'])
99
            );
100
101
        $updateContract = $this->updateContract->addColumn('TestColumn', $columnExpression->reveal());
102
103
        $this->assertInstanceOf(UpdateContract::class, $updateContract);
104
        $this->assertEquals([
105
            'test' => 'Ok',
106
        ], $this->updateContract->toArray()['ColumnValues']['Items']['TestColumn']);
107
    }
108
109
    public function testAddFilter()
110
    {
111
        $columnFilter = $this->prophesize(ColumnFilter::class);
112
        $columnFilterMethodToArray = new MethodProphecy(
113
            $columnFilter,
114
            'toArray',
115
            []
116
        );
117
        $columnFilter
118
            ->addMethodProphecy(
119
                $columnFilterMethodToArray->willReturn(['test' => 'Ok'])
120
            );
121
122
        $updateContract = $this->updateContract->addFilter($columnFilter->reveal());
123
124
        $this->assertInstanceOf(UpdateContract::class, $updateContract);
125
        $this->assertEquals([
126
            'RootSchemaName' => 'rootSchemaName',
127
            'OperationType' => 2,
128
            'IsForceUpdate' => false,
129
            'ColumnValues' => [
130
                'Items' => [],
131
            ],
132
            'Filters' => [
133
                'test' => 'Ok',
134
            ],
135
        ], $this->updateContract->toArray());
136
    }
137
138
    public function testToArray()
139
    {
140
        $this->assertEquals([
141
            'RootSchemaName' => 'rootSchemaName',
142
            'OperationType' => 2,
143
            'IsForceUpdate' => false,
144
            'ColumnValues' => [
145
                'Items' => [],
146
            ],
147
            'Filters' => [],
148
        ], $this->updateContract->toArray());
149
    }
150
}
151