diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2024-03-18 14:51:35 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2024-03-19 18:27:53 +0100 |
commit | b8868e26521b5df9a4e38d93c907dbe57c1b4a6e (patch) | |
tree | bdff78a8a2acb4bb48ebdabfe9ccb3262b3ca0a1 /tests | |
parent | 174c10ab3fd7bf92b7cc509f9405cc8f57848e83 (diff) | |
download | nextcloud-server-b8868e26521b5df9a4e38d93c907dbe57c1b4a6e.tar.gz nextcloud-server-b8868e26521b5df9a4e38d93c907dbe57c1b4a6e.zip |
fix(config): Make sure user keys are strings
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/AllConfigTest.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/lib/AllConfigTest.php b/tests/lib/AllConfigTest.php index fca4e8d8308..540eff42e51 100644 --- a/tests/lib/AllConfigTest.php +++ b/tests/lib/AllConfigTest.php @@ -277,6 +277,31 @@ class AllConfigTest extends \Test\TestCase { $this->connection->executeUpdate('DELETE FROM `*PREFIX*preferences`'); } + public function testGetUserKeysAllInts() { + $config = $this->getConfig(); + + // preparation - add something to the database + $data = [ + ['userFetch', 'appFetch1', '123', 'value'], + ['userFetch', 'appFetch1', '456', 'value'], + ]; + foreach ($data as $entry) { + $this->connection->executeUpdate( + 'INSERT INTO `*PREFIX*preferences` (`userid`, `appid`, ' . + '`configkey`, `configvalue`) VALUES (?, ?, ?, ?)', + $entry + ); + } + + $value = $config->getUserKeys('userFetch', 'appFetch1'); + $this->assertEquals(['123', '456'], $value); + $this->assertIsString($value[0]); + $this->assertIsString($value[1]); + + // cleanup + $this->connection->executeUpdate('DELETE FROM `*PREFIX*preferences`'); + } + public function testGetUserValueDefault() { $config = $this->getConfig(); |