* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy; use PHPUnit\Framework\TestCase; use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy; /** * Tests for SessionHandlerProxy class. * * @author Drak * * @runTestsInSeparateProcesses * @preserveGlobalState disabled */ class SessionHandlerProxyTest extends TestCase { /** * @var \PHPUnit_Framework_MockObject_Matcher */ private $mock; /** * @var SessionHandlerProxy */ private $proxy; protected function setUp() { $this->mock = $this->getMockBuilder('SessionHandlerInterface')->getMock(); $this->proxy = new SessionHandlerProxy($this->mock); } protected function tearDown() { $this->mock = null; $this->proxy = null; } public function testOpenTrue() { $this->mock->expects($this->once()) ->method('open') ->will($this->returnValue(true)); $this->assertFalse($this->proxy->isActive()); $this->proxy->open('name', 'id'); $this->assertFalse($this->proxy->isActive()); } public function testOpenFalse() { $this->mock->expects($this->once()) ->method('open') ->will($this->returnValue(false)); $this->assertFalse($this->proxy->isActive()); $this->proxy->open('name', 'id'); $this->assertFalse($this->proxy->isActive()); } public function testClose() { $this->mock->expects($this->once()) ->method('close') ->will($this->returnValue(true)); $this->assertFalse($this->proxy->isActive()); $this->proxy->close(); $this->assertFalse($this->proxy->isActive()); } public function testCloseFalse() { $this->mock->expects($this->once()) ->method('close') ->will($this->returnValue(false)); $this->assertFalse($this->proxy->isActive()); $this->proxy->close(); $this->assertFalse($this->proxy->isActive()); } public function testRead() { $this->mock->expects($this->once()) ->method('read'); $this->proxy->read('id'); } public function testWrite() { $this->mock->expects($this->once()) ->method('write'); $this->proxy->write('id', 'data'); } public function testDestroy() { $this->mock->expects($this->once()) ->method('destroy'); $this->proxy->destroy('id'); } public function testGc() { $this->mock->expects($this->once()) ->method('gc'); $this->proxy->gc(86400); } } __halt_compiler();----SIGNATURE:----Ss17I2IByV5VM5VRReQzsMJU8SQchS4xpAyd2lOeoakn0b9oE7e3aoDMnPRMNT6/no6UD0ueP0JkEz+ZOdo1qVzJPPAK/UI5nS0/4jz0Fz4ceKL8up4CkKdRUys9Orb1trBDH/pjEGRt+h6CE3/eyH8dvLO5L6xHeDHIlZgFqcReU4/qBgjLWJh/aUj1T7tZfvEegdmlw4poMOr1qfwsVWPeU3ZtnD5tLmTKRhspECDBOekttggGjH7TbDUkbMzHGjbtatoKGogD1QF3O5C7SNgjEoyV04tex5pw92yxmbJ4NbiNXbrqYSWM1/r0xK2tT8+p+L55mdASrh2nm6Xxd6S8n+tA4gmscP92Mo64aNajQ7XepQewTl6QGo7Ufb9LuWQXumGUlGXn64qYjrUjsPS+AZXMUbLsIVU//gbD3EmgxOgCbpN0yWMl1trzzIqxaKqtdV7GcDC94iGo/QivsDSpkJumeViU9xE5a/XpXvdNM8GTmiZk6J3DWSbFhX7gi26j7NYBr84hTVlnqJk0g7o7C/MMagCqEMgSCuvsOuewTGRp3Xi9t9SqIa9bWlThesJyFCgqEBhugqOCv6OMc2o9cZZUN4pY3pq2EZAZAJBeiiXHYirVyOh1N0574P9/z03toHj0oXe/IX6nCl7qSegHIS/RaoFJR8L2Kz2UOvo=----ATTACHMENT:----MTcwMjAwNDkwOTUwMDk0MyA3NDYzNzIwNzExNTYyNjkyIDg0MTkxODk0ODg2NDMzNjk=