Completed
Push — master ( 6cd5b8...dc6c0b )
by Mahmoud
03:15
created

CreateRoleTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 49
Duplicated Lines 32.65 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 1
dl 16
loc 49
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testCreateRole_() 0 20 1
A testCreateRoleWithWrongName_() 16 16 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 App\Containers\Authorization\UI\API\Tests\Functional;
4
5
use App\Port\Test\PHPUnit\Abstracts\TestCase;
6
7
/**
8
 * Class CreateRoleTest.
9
 *
10
 * @author  Mahmoud Zalt <[email protected]>
11
 */
12
class CreateRoleTest extends TestCase
13
{
14
15
    protected $endpoint = '/roles';
16
17
    protected $access = [
18
        'roles'       => 'admin',
19
        'permissions' => '',
20
    ];
21
22
    public function testCreateRole_()
23
    {
24
        $this->getTestingAdmin();
25
26
        $data = [
27
            'name'         => 'Manager',
28
            'display_name' => 'manager',
29
            'description'  => 'he manages things',
30
        ];
31
32
        // send the HTTP request
33
        $response = $this->apiCall($this->endpoint, 'post', $data, true);
34
35
        // assert response status is correct
36
        $this->assertEquals('200', $response->getStatusCode());
37
38
        $responseObject = $this->getResponseObject($response);
39
40
        $this->assertEquals($data['name'], $responseObject->data->name);
41
    }
42
43 View Code Duplication
    public function testCreateRoleWithWrongName_()
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...
44
    {
45
        $this->getTestingAdmin();
46
47
        $data = [
48
            'name'         => 'include space',
49
            'display_name' => 'manager',
50
            'description'  => 'he manages things',
51
        ];
52
53
        // send the HTTP request
54
        $response = $this->apiCall($this->endpoint, 'post', $data, true);
55
56
        // assert response status is correct
57
        $this->assertEquals('422', $response->getStatusCode());
58
    }
59
60
}
61