eZ\Publish\Core\Persistence\Legacy\Tests\User\UserHandlerTest::testAddRoleToUser PHP Method

testAddRoleToUser() public method

public testAddRoleToUser ( )
    public function testAddRoleToUser()
    {
        $handler = $this->getUserHandler();
        $roleDraft = $this->createRole();
        $handler->publishRoleDraft($roleDraft->id);
        $role = $handler->loadRole($roleDraft->id);
        $handler->create($user = $this->getValidUser());
        $handler->assignRole($user->id, $role->id, array());
        $this->assertQueryResult(array(array(1, 42, 1, null, null)), $this->handler->createSelectQuery()->select('id', 'contentobject_id', 'role_id', 'limit_identifier', 'limit_value')->from('ezuser_role'), 'Expected a new user policy association.');
    }