Add first version
[ric-plt/sdl.git] / tst / databaseconfiguration_test.cpp
diff --git a/tst/databaseconfiguration_test.cpp b/tst/databaseconfiguration_test.cpp
new file mode 100644 (file)
index 0000000..67bb6ce
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+   Copyright (c) 2018-2019 Nokia.
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+*/
+
+#include <gtest/gtest.h>
+#include "private/databaseconfiguration.hpp"
+
+using namespace shareddatalayer;
+using namespace testing;
+
+
+TEST(DatabaseConfigurationTest, HasVirtualDestructor)
+{
+    EXPECT_TRUE(std::has_virtual_destructor<DatabaseConfiguration>::value);
+}
+
+TEST(DatabaseConfigurationTest, IsAbstract)
+{
+    EXPECT_TRUE(std::is_abstract<DatabaseConfiguration>::value);
+}
+
+TEST(DatabaseConfigurationTest, IsNotCopyableAndIsNotMovable)
+{
+    EXPECT_FALSE(std::is_copy_assignable<DatabaseConfiguration>::value);
+    EXPECT_FALSE(std::is_move_assignable<DatabaseConfiguration>::value);
+    EXPECT_FALSE(std::is_copy_constructible<DatabaseConfiguration>::value);
+    EXPECT_FALSE(std::is_move_constructible<DatabaseConfiguration>::value);
+}
+
+TEST(DatabaseConfigurationTest, CanThrowAndCatchInvalidDbType)
+{
+    try
+    {
+        throw DatabaseConfiguration::InvalidDbType("someBadDbType");
+    }
+    catch (const std::exception& e)
+    {
+        EXPECT_STREQ("invalid database type: 'someBadDbType'. Allowed types are: 'redis-standalone' or 'redis-cluster'", e.what());
+    }
+}
+