Completed
Push — master ( 730998...f24d78 )
by Mahmoud
03:24
created

CreateRoleTest::testCreateRole_()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 20
Code Lines 10

Duplication

Lines 20
Ratio 100 %

Importance

Changes 0
Metric Value
dl 20
loc 20
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 10
nc 1
nop 0
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 View Code Duplication
class CreateRoleTest extends TestCase
0 ignored issues
show
Duplication introduced by
This class 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...
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
}
44