]> git.mxchange.org Git - friendica.git/blob - tests/src/Core/KeyValueStorage/DBKeyValueStorageTest.php
Merge pull request #12679 from nupplaphil/feat/reduce_config_dependency
[friendica.git] / tests / src / Core / KeyValueStorage / DBKeyValueStorageTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test\src\Core\KeyValueStorage;
23
24 use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs;
25 use Friendica\Core\KeyValueStorage\Type\DBKeyValueStorage;
26 use Friendica\Database\Database;
27 use Friendica\Test\Util\CreateDatabaseTrait;
28
29 class DBKeyValueStorageTest extends KeyValueStorageTest
30 {
31         use CreateDatabaseTrait;
32
33         /** @var Database */
34         protected $database;
35
36         protected function setUp(): void
37         {
38                 parent::setUp();
39
40                 $this->setUpVfsDir();
41                 $this->setUpDb();
42         }
43
44         protected function tearDown(): void
45         {
46                 parent::tearDown();
47
48                 $this->tearDownDb();
49         }
50
51         public function getInstance(): IManageKeyValuePairs
52         {
53                 $this->database = $this->getDbInstance();
54
55                 return new DBKeyValueStorage($this->database);
56         }
57
58         /** @dataProvider dataTests */
59         public function testUpdatedAt($k, $v)
60         {
61                 $instance = $this->getInstance();
62
63                 $instance->set($k, $v);
64
65                 self::assertEquals($v, $instance->get($k));
66                 self::assertEquals($v, $instance[$k]);
67
68                 $entry = $this->database->selectFirst(DBKeyValueStorage::DB_KEY_VALUE_TABLE, ['updated_at'], ['k' => $k]);
69                 self::assertNotEmpty($entry);
70
71                 $updateAt = $entry['updated_at'];
72
73                 $instance->set($k, 'another_value');
74
75                 self::assertEquals('another_value', $instance->get($k));
76                 self::assertEquals('another_value', $instance[$k]);
77
78                 $entry = $this->database->selectFirst(DBKeyValueStorage::DB_KEY_VALUE_TABLE, ['updated_at'], ['k' => $k]);
79                 self::assertNotEmpty($entry);
80
81                 $updateAtAfter = $entry['updated_at'];
82
83                 self::assertLessThanOrEqual($updateAt, $updateAtAfter);
84         }
85 }