2015-06-01 18:51:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
**
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:55:33 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
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;
|
2017-08-17 15:33:25 +02:00
|
|
|
using Sqlite::JournalMode;
|
|
|
|
using Sqlite::OpenMode;
|
2017-09-18 10:21:45 +02:00
|
|
|
using Column = Sqlite::Column;
|
2020-05-05 14:05:17 +02:00
|
|
|
using Sqlite::Enforment;
|
|
|
|
using Sqlite::ForeignKey;
|
|
|
|
using Sqlite::ForeignKeyAction;
|
2017-08-01 14:02:57 +02:00
|
|
|
using Sqlite::SqliteColumns;
|
2017-07-26 16:02:24 +02:00
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
class SqliteColumn : public ::testing::Test
|
|
|
|
{
|
|
|
|
protected:
|
2017-09-18 10:21:45 +02:00
|
|
|
Sqlite::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()),
|
|
|
|
Field(&Column::type, ColumnType::Numeric),
|
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()),
|
|
|
|
Field(&Column::type, ColumnType::Numeric),
|
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
|
|
|
{
|
2020-05-05 14:05:17 +02:00
|
|
|
column = Sqlite::Column{"table",
|
|
|
|
"column",
|
|
|
|
ColumnType::Text,
|
2020-05-13 20:29:49 +02:00
|
|
|
{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
|
|
|
{
|
2020-05-05 14:05:17 +02:00
|
|
|
column = Sqlite::Column{"table",
|
|
|
|
"column",
|
|
|
|
ColumnType::Text,
|
2020-05-13 20:29:49 +02:00
|
|
|
{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
|
|
|
}
|
|
|
|
|
2020-05-05 14:05:17 +02:00
|
|
|
} // namespace
|