2013-05-27 18:50:00 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2013-05-27 18:50:00 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test\Session;
|
|
|
|
|
|
2025-06-12 12:31:58 -04:00
|
|
|
use OC\Session\Memory;
|
|
|
|
|
use OCP\Session\Exceptions\SessionNotAvailableException;
|
|
|
|
|
|
2016-05-20 09:38:20 -04:00
|
|
|
class MemoryTest extends Session {
|
2019-11-21 10:40:38 -05:00
|
|
|
protected function setUp(): void {
|
2014-11-10 17:30:38 -05:00
|
|
|
parent::setUp();
|
2025-06-12 12:31:58 -04:00
|
|
|
$this->instance = new Memory();
|
2013-05-27 18:50:00 -04:00
|
|
|
}
|
2016-04-25 04:23:06 -04:00
|
|
|
|
2024-06-25 09:16:40 -04:00
|
|
|
|
2024-09-15 16:32:31 -04:00
|
|
|
public function testThrowsExceptionOnGetId(): void {
|
2025-06-12 12:31:58 -04:00
|
|
|
$this->expectException(SessionNotAvailableException::class);
|
2019-11-27 09:27:18 -05:00
|
|
|
|
2016-04-25 04:23:06 -04:00
|
|
|
$this->instance->getId();
|
|
|
|
|
}
|
2013-05-27 18:50:00 -04:00
|
|
|
}
|