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
|
/*GRB*
Gerbera - https://gerbera.io/
test_sql_generators.cc - this file is part of Gerbera.
Copyright (C) 2021-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_sql_generators.cc
#include "database/sql_database.h"
#include "sqlite_config_fake.h"
#include <fmt/core.h>
#include <gtest/gtest.h>
class TestDatabase : public SQLDatabase, public std::enable_shared_from_this<SQLDatabase> {
public:
using SQLDatabase::identifier;
TestDatabase(const std::shared_ptr<Config>& config, const std::shared_ptr<Mime>& mime, const std::shared_ptr<ConverterManager>& converterManager)
: SQLDatabase(config, mime, converterManager)
{
table_quote_begin = '[';
table_quote_end = ']';
}
void storeInternalSetting(const std::string& key, const std::string& value) override { }
bool threadCleanupRequired() const override { return false; }
void threadCleanup() override { }
std::shared_ptr<Database> getSelf() override { return this->shared_from_this(); }
void shutdownDriver() override { }
std::string quote(const std::string& str) const override
{
return fmt::format("\"{}\"", str);
}
void del(std::string_view tableName, const std::string& clause, const std::vector<int>& values) override
{
auto query = clause.empty() ?
fmt::format("DELETE FROM {}", identifier(std::string(tableName))) :
fmt::format("DELETE FROM {} WHERE {}", identifier(std::string(tableName)), clause);
lastStatement = query;
}
void execOnly(const std::string& query) override
{
lastStatement = query;
}
void exec(std::string_view tableName, const std::string& query, int objId) override
{
lastStatement = query;
}
int exec(const std::string& query, bool) override
{
lastStatement = query;
return 0;
}
void _exec(const std::string& query) override
{
lastStatement = query;
}
std::shared_ptr<SQLResult> select(const std::string& query) override
{
lastStatement = query;
return {};
}
std::string lastStatement;
};
class DatabaseTest : public ::testing::Test {
public:
void SetUp() override
{
config = std::make_shared<SqliteConfigFake>();
database = std::make_shared<TestDatabase>(config, mime, converterManager);
}
void TearDown() override
{
database = {};
}
protected:
std::shared_ptr<Config> config;
std::shared_ptr<Mime> mime;
std::shared_ptr<ConverterManager> converterManager;
std::shared_ptr<TestDatabase> database;
};
TEST_F(DatabaseTest, BasicFormattingTest)
{
EXPECT_EQ(database->quote("123"), "\"123\"");
EXPECT_EQ(fmt::to_string(database->identifier("id")), "[id]");
}
TEST_F(DatabaseTest, UpdateTest)
{
database->updateRow(
"Table",
{ ColumnUpdate(database->identifier("a"), "4"), ColumnUpdate(database->identifier("b"), "101") },
"id", 1234);
EXPECT_EQ(database->lastStatement, "UPDATE [Table] SET [a] = 4, [b] = 101 WHERE [id] = 1234");
}
TEST_F(DatabaseTest, DeleteTest)
{
database->deleteAll("Table");
EXPECT_EQ(database->lastStatement, "DELETE FROM [Table]");
database->deleteRow("Table", "id", 123);
EXPECT_EQ(database->lastStatement, "DELETE FROM [Table] WHERE [id] = 123");
database->deleteRow("Table", "id", std::string("Text"));
EXPECT_EQ(database->lastStatement, "DELETE FROM [Table] WHERE [id] = \"Text\"");
database->deleteRows("Table", "id", { 1, 2, 3 });
EXPECT_EQ(database->lastStatement, "DELETE FROM [Table] WHERE [id] IN (1,2,3)");
}
|