Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Authentication/ContextTest.php
2015-06-15 19:30:51 +02:00

31 lines
760 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\Authentication;
use Alchemy\Phrasea\Authentication\Context;
/**
* @group functional
* @group legacy
*/
class ContextTest extends \PhraseanetTestCase
{
public function testWithValidCOntext()
{
$contextValue = Context::CONTEXT_GUEST;
$context = new Context($contextValue);
$this->assertEquals($contextValue, $context->getContext());
$context->setContext(Context::CONTEXT_OAUTH2_NATIVE);
$this->assertEquals(Context::CONTEXT_OAUTH2_NATIVE, $context->getContext());
}
/**
* @expectedException \Alchemy\Phrasea\Exception\InvalidArgumentException
*/
public function testWithInvalidCOntext()
{
new Context('No context like this');
}
}