2020-01-05 00:58:49 +00:00
|
|
|
<?php
|
2020-02-09 14:45:36 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2020-01-05 00:58:49 +00:00
|
|
|
|
|
|
|
namespace Friendica\Test\src\Model\Storage;
|
|
|
|
|
2021-08-10 20:07:52 +00:00
|
|
|
use Friendica\Model\Storage\IWritableStorage;
|
2020-01-05 00:58:49 +00:00
|
|
|
use Friendica\Model\Storage\IStorage;
|
2021-08-01 12:31:57 +00:00
|
|
|
use Friendica\Model\Storage\ReferenceStorageException;
|
2020-01-05 00:58:49 +00:00
|
|
|
use Friendica\Test\MockedTest;
|
|
|
|
|
|
|
|
abstract class StorageTest extends MockedTest
|
|
|
|
{
|
2021-08-10 20:07:52 +00:00
|
|
|
/** @return IWritableStorage */
|
2020-01-05 00:58:49 +00:00
|
|
|
abstract protected function getInstance();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if the instance is "really" implementing the interface
|
|
|
|
*/
|
|
|
|
public function testInstance()
|
|
|
|
{
|
|
|
|
$instance = $this->getInstance();
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertInstanceOf(IStorage::class, $instance);
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test basic put, get and delete operations
|
|
|
|
*/
|
|
|
|
public function testPutGetDelete()
|
|
|
|
{
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
|
|
|
$ref = $instance->put('data12345');
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertNotEmpty($ref);
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertEquals('data12345', $instance->get($ref));
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2021-08-01 12:31:57 +00:00
|
|
|
$instance->delete($ref);
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test a delete with an invalid reference
|
|
|
|
*/
|
|
|
|
public function testInvalidDelete()
|
|
|
|
{
|
2021-08-01 12:31:57 +00:00
|
|
|
self::expectException(ReferenceStorageException::class);
|
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
2021-08-01 12:31:57 +00:00
|
|
|
$instance->delete(-1234456);
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test a get with an invalid reference
|
|
|
|
*/
|
|
|
|
public function testInvalidGet()
|
|
|
|
{
|
2021-08-01 12:31:57 +00:00
|
|
|
self::expectException(ReferenceStorageException::class);
|
|
|
|
|
2020-01-05 00:58:49 +00:00
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
2021-08-01 12:31:57 +00:00
|
|
|
$instance->get(-123456);
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test an update with a given reference
|
|
|
|
*/
|
|
|
|
public function testUpdateReference()
|
|
|
|
{
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
|
|
|
$ref = $instance->put('data12345');
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertNotEmpty($ref);
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertEquals('data12345', $instance->get($ref));
|
2020-01-05 00:58:49 +00:00
|
|
|
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertEquals($ref, $instance->put('data5432', $ref));
|
|
|
|
self::assertEquals('data5432', $instance->get($ref));
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that an invalid update results in an insert
|
|
|
|
*/
|
|
|
|
public function testInvalidUpdate()
|
|
|
|
{
|
|
|
|
$instance = $this->getInstance();
|
|
|
|
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertEquals(-123, $instance->put('data12345', -123));
|
2020-01-05 00:58:49 +00:00
|
|
|
}
|
|
|
|
}
|