ACL   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 76
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

7 Methods

Rating   Name   Duplication   Size   Complexity  
A testRuleDeny() 0 5 1
A testIsAllowed() 0 7 1
A setUp() 0 4 1
A tearDown() 0 4 1
A testAddRole() 0 7 1
A testAddResource() 0 6 1
A testRuleAllow() 0 6 1
1
<?php
2
3
namespace KochTest\Permissions;
4
5
use Koch\Permissions\Acl;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, KochTest\Permissions\Acl.

Let’s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let’s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
6
7
class ACL extends \PHPUnit_Framework_TestCase
8
{
9
    /**
10
     * @var Acl
11
     */
12
    protected $acl;
13
14
    /**
15
     * Sets up the fixture, for example, opens a network connection.
16
     * This method is called before a test is executed.
17
     */
18
    protected function setUp()
19
    {
20
        $this->acl = new self();
0 ignored issues
show
Documentation Bug introduced by
It seems like new self() of type object<KochTest\Permissions\ACL> is incompatible with the declared type object<Koch\Permissions\Acl> of property $acl.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
21
    }
22
23
    /**
24
     * Tears down the fixture, for example, closes a network connection.
25
     * This method is called after a test is executed.
26
     */
27
    protected function tearDown()
28
    {
29
        unset($this->acl);
30
    }
31
32
    /**
33
     * @covers Koch\Permissions\Acl::addRole
34
     */
35
    public function testAddRole()
36
    {
37
        $this->acl->addRole('Hausbewohner');
0 ignored issues
show
Bug introduced by
The call to addRole() misses a required argument $role.

This check looks for function calls that miss required arguments.

Loading history...
38
        $this->acl->addRole('Hausbewohner', 'Mieter1');
39
        $this->acl->addRole('Hausbewohner', 'Mieter2');
40
        $this->acl->addRole('Hausverwalter');
0 ignored issues
show
Bug introduced by
The call to addRole() misses a required argument $role.

This check looks for function calls that miss required arguments.

Loading history...
41
    }
42
43
    /**
44
     * @covers Koch\Permissions\Acl::addResource
45
     */
46
    public function testAddResource()
47
    {
48
        $this->acl->addResource('Haus');
0 ignored issues
show
Bug introduced by
The call to addResource() misses a required argument $resource.

This check looks for function calls that miss required arguments.

Loading history...
49
        $this->acl->addResource('Haus', 'Wohnung1');
50
        $this->acl->addResource('Haus', 'Wohnung2');
51
    }
52
53
    /**
54
     * @covers Koch\Permissions\Acl::addRuleAllow
55
     */
56
    public function testRuleAllow()
57
    {
58
        $this->acl->ruleAllow('Hausverwalter', 'view', 'Haus');
59
        $this->acl->ruleAllow('Mieter1', 'view', 'Wohnung1');
60
        $this->acl->ruleAllow('Mieter2', 'view', 'Wohnung2');
61
    }
62
63
    /**
64
     * @covers Koch\Permissions\Acl::addRuleDeny
65
     */
66
    public function testRuleDeny()
67
    {
68
        $this->acl->ruleDeny('Mieter1', 'view', 'Wohnung2');
69
        $this->acl->ruleDeny('Mieter2', 'view', 'Wohnung1');
70
    }
71
72
    /**
73
     * @covers Koch\Permissions\Acl::isAllowed
74
     */
75
    public function testIsAllowed()
76
    {
77
        // the shorthand in the user object is $user->isAllowed($action, $resource);
78
        // the Role is incomming via the user object (user_id -> roles table)
79
        // action and resource are identified by the router and exist in the TargetRoute object
80
        $this->acl->isAllowed($role, $action, $resource);
0 ignored issues
show
Bug introduced by
The variable $role does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The variable $action does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The variable $resource does not exist. Did you forget to declare it?

This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.

Loading history...
Bug introduced by
The method isAllowed() does not seem to exist on object<Koch\Permissions\Acl>.

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...
81
    }
82
}
83