This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Security/Acl/Domain/FieldEntryTest.php

75 lines
2.0 KiB
PHP
Raw Normal View History

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Tests\Component\Security\Acl\Domain;
use Symfony\Component\Security\Acl\Domain\FieldEntry;
class FieldEntryTest extends \PHPUnit_Framework_TestCase
{
public function testConstructor()
{
$ace = $this->getAce();
2011-04-15 20:12:02 +01:00
$this->assertEquals('foo', $ace->getField());
}
2011-04-15 20:12:02 +01:00
public function testSerializeUnserialize()
{
$ace = $this->getAce();
2011-04-15 20:12:02 +01:00
$serialized = serialize($ace);
$uAce = unserialize($serialized);
2011-04-15 20:12:02 +01:00
$this->assertNull($uAce->getAcl());
$this->assertInstanceOf('Symfony\Component\Security\Acl\Model\SecurityIdentityInterface', $uAce->getSecurityIdentity());
$this->assertEquals($ace->getId(), $uAce->getId());
$this->assertEquals($ace->getField(), $uAce->getField());
$this->assertEquals($ace->getMask(), $uAce->getMask());
$this->assertEquals($ace->getStrategy(), $uAce->getStrategy());
$this->assertEquals($ace->isGranting(), $uAce->isGranting());
$this->assertEquals($ace->isAuditSuccess(), $uAce->isAuditSuccess());
$this->assertEquals($ace->isAuditFailure(), $uAce->isAuditFailure());
}
2011-04-15 20:12:02 +01:00
protected function getAce($acl = null, $sid = null)
{
if (null === $acl) {
$acl = $this->getAcl();
}
if (null === $sid) {
$sid = $this->getSid();
}
2011-04-15 20:12:02 +01:00
return new FieldEntry(
2011-04-15 20:12:02 +01:00
123,
$acl,
'foo',
2011-04-15 20:12:02 +01:00
$sid,
'foostrat',
123456,
true,
false,
true
2011-04-15 20:12:02 +01:00
);
}
2011-04-15 20:12:02 +01:00
protected function getAcl()
{
return $this->getMock('Symfony\Component\Security\Acl\Model\AclInterface');
}
2011-04-15 20:12:02 +01:00
protected function getSid()
{
return $this->getMock('Symfony\Component\Security\Acl\Model\SecurityIdentityInterface');
}
2011-06-08 18:56:59 +01:00
}