1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/*GRB*
Gerbera - https://gerbera.io/
test_database.cc - this file is part of Gerbera.
Copyright (C) 2020-2025 Gerbera Contributors
Gerbera is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation.
Gerbera 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with Gerbera. If not, see <http://www.gnu.org/licenses/>.
$Id$
*/
/// \file test_database.cc
#include "cds/cds_objects.h"
#include "config/result/autoscan.h"
#include "database/sqlite3/sqlite_database.h"
#include "exceptions.h"
#include "sqlite_config_fake.h"
#include "upnp/xml_builder.h"
#include "util/tools.h"
#if HAVE_MYSQL
#include "database/mysql/mysql_database.h"
#include "mysql_config_fake.h"
#endif
#include <gtest/gtest.h>
#include <pugixml.hpp>
class TestSqliteDatabase : public Sqlite3Database {
friend class Sqlite3DatabaseTest;
};
class DatabaseTestBase : public ::testing::Test {
protected:
void testUpgrade(ConfigVal option);
std::shared_ptr<Database> subject;
std::shared_ptr<Config> config;
};
void DatabaseTestBase::testUpgrade(ConfigVal option)
{
const fs::path& upgradeFile = config->getOption(option);
pugi::xml_document xmlDoc;
pugi::xml_parse_result result = xmlDoc.load_file(upgradeFile.c_str());
if (result.status != pugi::xml_parse_status::status_ok) {
throw ConfigParseException(result.description());
}
auto root = xmlDoc.document_element();
EXPECT_TRUE(root.name() == std::string_view("upgrade"));
size_t version = 1;
for (auto&& versionElement : root.select_nodes("/upgrade/version")) {
const pugi::xml_node& versionNode = versionElement.node();
auto&& myHash = stringHash(UpnpXMLBuilder::printXml(versionNode));
EXPECT_EQ(myHash, std::dynamic_pointer_cast<SQLDatabase>(subject)->getHash(version));
version++;
}
}
class Sqlite3DatabaseTest : public DatabaseTestBase {
public:
Sqlite3DatabaseTest() = default;
~Sqlite3DatabaseTest() override = default;
void SetUp() override
{
config = std::make_shared<SqliteConfigFake>();
subject = std::make_shared<Sqlite3Database>(config, nullptr, nullptr, nullptr);
}
void TearDown() override
{
subject = nullptr;
}
};
TEST_F(Sqlite3DatabaseTest, CheckInitScript)
{
auto sqlFilePath = config->getOption(ConfigVal::SERVER_STORAGE_SQLITE_INIT_SQL_FILE);
auto sql = GrbFile(sqlFilePath).readTextFile();
auto&& myHash = stringHash(sql);
EXPECT_EQ(myHash, std::dynamic_pointer_cast<SQLDatabase>(subject)->getHash(0));
}
TEST_F(Sqlite3DatabaseTest, CheckUpgradeCommands)
{
testUpgrade(ConfigVal::SERVER_STORAGE_SQLITE_UPGRADE_FILE);
}
// test is blocking on CONAN
#if 0
class DatabaseTest : public DatabaseTestBase {
public:
DatabaseTest() {};
virtual ~DatabaseTest() {};
virtual void SetUp()
{
config = std::make_shared<SqliteConfigFake>();
subject = std::make_shared<Sqlite3Database>(config, nullptr, nullptr);
}
virtual void TearDown()
{
}
};
TEST_F(DatabaseTest, AddObject)
{
subject->init();
auto cds = std::make_shared<CdsItem>();
cds->setTrackNumber(854);
cds->setMetadata(M_ARTIST, "Your Mother");
cds->setMetadata(M_ALBUM, "Wombats");
cds->setLocation(fs::path("/mnt/basilisk/Music/Adele/21/01 - Adele - Rolling In The Deep.flac"));
int number = 1;
subject->addObject(cds, &number);
subject->shutdown();
}
#endif
#ifdef HAVE_MYSQL
class MysqlDatabaseTest : public DatabaseTestBase {
public:
MysqlDatabaseTest() = default;
~MysqlDatabaseTest() override = default;
void SetUp() override
{
config = std::make_shared<MySQLConfigFake>();
subject = std::make_shared<MySQLDatabase>(config, nullptr, nullptr);
}
void TearDown() override
{
}
};
TEST_F(MysqlDatabaseTest, CheckUpgradeCommands)
{
testUpgrade(ConfigVal::SERVER_STORAGE_MYSQL_UPGRADE_FILE);
}
TEST_F(MysqlDatabaseTest, CheckInitScript)
{
auto sqlFilePath = config->getOption(ConfigVal::SERVER_STORAGE_MYSQL_INIT_SQL_FILE);
auto sql = GrbFile(sqlFilePath).readTextFile();
auto&& myHash = stringHash(sql);
EXPECT_EQ(myHash, std::dynamic_pointer_cast<SQLDatabase>(subject)->getHash(0));
}
#endif
|