0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
test
/
core
/
Perms
/
[
Home
]
File: CheckSequenceTest.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: CheckSequenceTest.php 53803 2015-02-06 00:42:50Z jyhem $ /** * @group unit * */ class Perms_CheckSequenceTest extends TikiTestCase { private $mockA; private $mockB; function setUp() { $perms = new Perms; $perms->setResolverFactories( array( new Perms_ResolverFactory_StaticFactory( 'static', new Perms_Resolver_Static( array('Admins' => array('admin_wiki'),) ) ) ) ); $perms->setGroups(array('Admins')); $perms->setCheckSequence( array( new Perms_Check_Direct, $this->mockA = $this->getMock('Perms_Check'), $this->mockB = $this->getMock('Perms_Check'), ) ); Perms::set($perms); } function testOnlyFirstCalledWhenGranted() { $this->mockA->expects($this->never()) ->method('check'); $this->mockB->expects($this->never()) ->method('check'); $this->assertTrue(Perms::get()->admin_wiki); } function testFirstFallbackHandles() { $this->mockA->expects($this->once()) ->method('check') ->will($this->returnValue(true)); $this->mockB->expects($this->never()) ->method('check'); $this->assertTrue(Perms::get()->view); } function testNoneCatching() { $this->mockA->expects($this->once()) ->method('check') ->will($this->returnValue(false)); $this->mockB->expects($this->once()) ->method('check') ->will($this->returnValue(false)); $this->assertFalse(Perms::get()->view); } }