2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
#include "googletest.h"
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
#include <sqlitecolumn.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2017-08-17 15:33:25 +02:00
|
|
|
using Sqlite::ColumnType;
|
2020-05-13 20:29:49 +02:00
|
|
|
using Sqlite::ConstraintType;
|
2020-05-05 14:05:17 +02:00
|
|
|
using Sqlite::Enforment;
|
|
|
|
|
using Sqlite::ForeignKey;
|
|
|
|
|
using Sqlite::ForeignKeyAction;
|
2021-12-14 13:36:23 +01:00
|
|
|
using Sqlite::JournalMode;
|
|
|
|
|
using Sqlite::OpenMode;
|
|
|
|
|
using Sqlite::StrictColumnType;
|
2017-07-26 16:02:24 +02:00
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
class SqliteColumn : public ::testing::Test
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2021-12-14 13:36:23 +01:00
|
|
|
using Column = Sqlite::Column;
|
|
|
|
|
|
|
|
|
|
Column column;
|
2015-06-01 18:51:55 +02:00
|
|
|
};
|
|
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
TEST_F(SqliteColumn, DefaultConstruct)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2020-05-05 14:05:17 +02:00
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, IsEmpty()),
|
|
|
|
|
Field(&Column::tableName, IsEmpty()),
|
2021-12-14 13:36:23 +01:00
|
|
|
Field(&Column::type, ColumnType::None),
|
2020-05-13 20:29:49 +02:00
|
|
|
Field(&Column::constraints, IsEmpty())));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
TEST_F(SqliteColumn, Clear)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2020-05-05 14:05:17 +02:00
|
|
|
column.name = "foo";
|
|
|
|
|
column.name = "foo";
|
|
|
|
|
column.type = ColumnType::Text;
|
2020-05-13 20:29:49 +02:00
|
|
|
column.constraints = {Sqlite::PrimaryKey{}};
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
column.clear();
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, IsEmpty()),
|
|
|
|
|
Field(&Column::tableName, IsEmpty()),
|
2021-12-14 13:36:23 +01:00
|
|
|
Field(&Column::type, ColumnType::None),
|
2020-05-13 20:29:49 +02:00
|
|
|
Field(&Column::constraints, IsEmpty())));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
TEST_F(SqliteColumn, Constructor)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2021-12-14 13:36:23 +01:00
|
|
|
column = Column{"table",
|
|
|
|
|
"column",
|
|
|
|
|
ColumnType::Text,
|
|
|
|
|
{ForeignKey{"referencedTable",
|
|
|
|
|
"referencedColumn",
|
|
|
|
|
ForeignKeyAction::SetNull,
|
|
|
|
|
ForeignKeyAction::Cascade,
|
|
|
|
|
Enforment::Deferred}}};
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, Eq("column")),
|
|
|
|
|
Field(&Column::tableName, Eq("table")),
|
|
|
|
|
Field(&Column::type, ColumnType::Text),
|
2020-05-13 20:29:49 +02:00
|
|
|
Field(&Column::constraints,
|
|
|
|
|
ElementsAre(VariantWith<ForeignKey>(
|
|
|
|
|
AllOf(Field(&ForeignKey::table, Eq("referencedTable")),
|
|
|
|
|
Field(&ForeignKey::column, Eq("referencedColumn")),
|
|
|
|
|
Field(&ForeignKey::updateAction, ForeignKeyAction::SetNull),
|
|
|
|
|
Field(&ForeignKey::deleteAction, ForeignKeyAction::Cascade),
|
|
|
|
|
Field(&ForeignKey::enforcement, Enforment::Deferred)))))));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
TEST_F(SqliteColumn, FlatConstructor)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2021-12-14 13:36:23 +01:00
|
|
|
column = Column{"table",
|
|
|
|
|
"column",
|
|
|
|
|
ColumnType::Text,
|
|
|
|
|
{ForeignKey{"referencedTable",
|
|
|
|
|
"referencedColumn",
|
|
|
|
|
ForeignKeyAction::SetNull,
|
|
|
|
|
ForeignKeyAction::Cascade,
|
|
|
|
|
Enforment::Deferred}}};
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2017-08-01 14:02:57 +02:00
|
|
|
ASSERT_THAT(column,
|
2020-05-05 14:05:17 +02:00
|
|
|
AllOf(Field(&Column::name, Eq("column")),
|
|
|
|
|
Field(&Column::tableName, Eq("table")),
|
|
|
|
|
Field(&Column::type, ColumnType::Text),
|
2020-05-13 20:29:49 +02:00
|
|
|
Field(&Column::constraints,
|
|
|
|
|
ElementsAre(VariantWith<ForeignKey>(
|
|
|
|
|
AllOf(Field(&ForeignKey::table, Eq("referencedTable")),
|
|
|
|
|
Field(&ForeignKey::column, Eq("referencedColumn")),
|
|
|
|
|
Field(&ForeignKey::updateAction, ForeignKeyAction::SetNull),
|
|
|
|
|
Field(&ForeignKey::deleteAction, ForeignKeyAction::Cascade),
|
|
|
|
|
Field(&ForeignKey::enforcement, Enforment::Deferred)))))));
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2021-12-14 13:36:23 +01:00
|
|
|
class SqliteStrictColumn : public ::testing::Test
|
|
|
|
|
{
|
|
|
|
|
protected:
|
|
|
|
|
using Column = Sqlite::StrictColumn;
|
|
|
|
|
|
|
|
|
|
Column column;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TEST_F(SqliteStrictColumn, DefaultConstruct)
|
|
|
|
|
{
|
|
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, IsEmpty()),
|
|
|
|
|
Field(&Column::tableName, IsEmpty()),
|
|
|
|
|
Field(&Column::type, StrictColumnType::Any),
|
|
|
|
|
Field(&Column::constraints, IsEmpty())));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SqliteStrictColumn, Clear)
|
|
|
|
|
{
|
|
|
|
|
column.name = "foo";
|
|
|
|
|
column.name = "foo";
|
|
|
|
|
column.type = StrictColumnType::Text;
|
|
|
|
|
column.constraints = {Sqlite::PrimaryKey{}};
|
|
|
|
|
|
|
|
|
|
column.clear();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, IsEmpty()),
|
|
|
|
|
Field(&Column::tableName, IsEmpty()),
|
|
|
|
|
Field(&Column::type, StrictColumnType::Any),
|
|
|
|
|
Field(&Column::constraints, IsEmpty())));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SqliteStrictColumn, Constructor)
|
|
|
|
|
{
|
|
|
|
|
column = Column{"table",
|
|
|
|
|
"column",
|
|
|
|
|
StrictColumnType::Text,
|
|
|
|
|
{ForeignKey{"referencedTable",
|
|
|
|
|
"referencedColumn",
|
|
|
|
|
ForeignKeyAction::SetNull,
|
|
|
|
|
ForeignKeyAction::Cascade,
|
|
|
|
|
Enforment::Deferred}}};
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, Eq("column")),
|
|
|
|
|
Field(&Column::tableName, Eq("table")),
|
|
|
|
|
Field(&Column::type, StrictColumnType::Text),
|
|
|
|
|
Field(&Column::constraints,
|
|
|
|
|
ElementsAre(VariantWith<ForeignKey>(
|
|
|
|
|
AllOf(Field(&ForeignKey::table, Eq("referencedTable")),
|
|
|
|
|
Field(&ForeignKey::column, Eq("referencedColumn")),
|
|
|
|
|
Field(&ForeignKey::updateAction, ForeignKeyAction::SetNull),
|
|
|
|
|
Field(&ForeignKey::deleteAction, ForeignKeyAction::Cascade),
|
|
|
|
|
Field(&ForeignKey::enforcement, Enforment::Deferred)))))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SqliteStrictColumn, FlatConstructor)
|
|
|
|
|
{
|
|
|
|
|
column = Column{"table",
|
|
|
|
|
"column",
|
|
|
|
|
StrictColumnType::Text,
|
|
|
|
|
{ForeignKey{"referencedTable",
|
|
|
|
|
"referencedColumn",
|
|
|
|
|
ForeignKeyAction::SetNull,
|
|
|
|
|
ForeignKeyAction::Cascade,
|
|
|
|
|
Enforment::Deferred}}};
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(column,
|
|
|
|
|
AllOf(Field(&Column::name, Eq("column")),
|
|
|
|
|
Field(&Column::tableName, Eq("table")),
|
|
|
|
|
Field(&Column::type, StrictColumnType::Text),
|
|
|
|
|
Field(&Column::constraints,
|
|
|
|
|
ElementsAre(VariantWith<ForeignKey>(
|
|
|
|
|
AllOf(Field(&ForeignKey::table, Eq("referencedTable")),
|
|
|
|
|
Field(&ForeignKey::column, Eq("referencedColumn")),
|
|
|
|
|
Field(&ForeignKey::updateAction, ForeignKeyAction::SetNull),
|
|
|
|
|
Field(&ForeignKey::deleteAction, ForeignKeyAction::Cascade),
|
|
|
|
|
Field(&ForeignKey::enforcement, Enforment::Deferred)))))));
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
} // namespace
|