* * 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\AbstractProxy; use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy; /** * Test class for AbstractProxy. * * @author Drak */ class AbstractProxyTest extends TestCase { /** * @var AbstractProxy */ protected $proxy; protected function setUp() { $this->proxy = $this->getMockForAbstractClass(AbstractProxy::class); } protected function tearDown() { $this->proxy = null; } public function testGetSaveHandlerName() { $this->assertNull($this->proxy->getSaveHandlerName()); } public function testIsSessionHandlerInterface() { $this->assertFalse($this->proxy->isSessionHandlerInterface()); $sh = new SessionHandlerProxy(new \SessionHandler()); $this->assertTrue($sh->isSessionHandlerInterface()); } public function testIsWrapper() { $this->assertFalse($this->proxy->isWrapper()); } /** * @runInSeparateProcess * @preserveGlobalState disabled */ public function testIsActive() { $this->assertFalse($this->proxy->isActive()); session_start(); $this->assertTrue($this->proxy->isActive()); } /** * @runInSeparateProcess * @preserveGlobalState disabled */ public function testName() { $this->assertEquals(session_name(), $this->proxy->getName()); $this->proxy->setName('foo'); $this->assertEquals('foo', $this->proxy->getName()); $this->assertEquals(session_name(), $this->proxy->getName()); } /** * @runInSeparateProcess * @preserveGlobalState disabled * @expectedException \LogicException */ public function testNameException() { session_start(); $this->proxy->setName('foo'); } /** * @runInSeparateProcess * @preserveGlobalState disabled */ public function testId() { $this->assertEquals(session_id(), $this->proxy->getId()); $this->proxy->setId('foo'); $this->assertEquals('foo', $this->proxy->getId()); $this->assertEquals(session_id(), $this->proxy->getId()); } /** * @runInSeparateProcess * @preserveGlobalState disabled * @expectedException \LogicException */ public function testIdException() { session_start(); $this->proxy->setId('foo'); } } __halt_compiler();----SIGNATURE:----oa90tJprV0MxbEBa3fgxPuZUFxNEWg2Q11Xv7BTAu+ee5+MXQgcNzaolFXpcfTa6nerENsSmtBdWS914IPzfhitPAeGBBG/6jX/eJZCjTXFtXgEtjqiTcSXvOe855wKoVpiB/p2G4UGYam0pzHw+fssIFFbxl8V9B/qPm5QQUXa5K6cPJgdmAplv7VfYwLYiNpElQr0ZcH2BVRmXANEHVDzmBm5Z7nJwzUKgmzhdNl60WZ1veiOLHMa9BIzT4/Oegp408blkIwsJ4UXVN6QD45ZpVJ6OZOsSS7TI6fIcP0v3u/334WbXB7KzBSFFj9QWLM47BqInu8qBebvTjITPg2il+EXeGmsj+UBgnDpRPTLzYQSA3WWABvqGCXC81qc4jejz2XiaokICjjGTuDemaqOOzle4x/XcsQK2aG24mB9eAq1W7OsjvkEQ7Jq7UGbYTzXQ1OOrK2IG1ObhdTBImZbZ/NrZoipQ80BGE+iJjj56wUlxHowxtlhjSZxhYY5/BZG4aYMMGn02qqqfG5sjIXEnwPfCrL6MzVLwvzRM5vHpKAiWwXuI3ozxOesF1ACHSxRqbSCtaPjGtSZkgLTy7T82WJkXe/ODFbNEpCBplpMdiYnPtTzoWqelP/Uk6USgEaWI49n2NeznXKbr24vaShPKK0vViq7Ez+6A70hVqDE=----ATTACHMENT:----MTY0MzU1NTc5ODA0NjI0MyA0MTUwODM3MTM0Njc1OTA5IDYwNjg3MTgxOTM0OTY3NTk=