Page MenuHomePhorge

Session.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

Session.php

<?php
/**
* Test class to test rcube_session class
*
* @package Tests
*/
class Framework_Session extends PHPUnit\Framework\TestCase
{
/**
* Test factory method
*/
function test_factory()
{
$rcube = rcube::get_instance();
// We cannot test DB session handler as it's initialization
// will collide with already sent headers. Let's try php session.
$rcube->config->set('session_storage', 'php');
$session = rcube_session::factory($rcube->config);
$this->assertInstanceOf('rcube_session_php', $session);
// This method should not do any harm, just call it and expect no errors
$session->reload();
}
/**
* Test unserialize() method
*/
function test_unserialize()
{
$rcube = rcube::get_instance();
$rcube->config->set('session_storage', 'php');
$session = rcube_session::factory($rcube->config);
$this->assertSame([], $session->unserialize(''));
$this->assertSame(
['ok' => true, 'name' => 'me', 'int' => 34],
$session->unserialize('ok|b:1;name|s:2:"me";int|i:34;')
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 4:02 AM (1 d, 2 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b1/b2/f906973b9b830540f0a48cf1fafd
Default Alt Text
Session.php (1 KB)

Event Timeline