summaryrefslogtreecommitdiff
path: root/test/storage/sqlite.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/storage/sqlite.test.cpp')
-rw-r--r--test/storage/sqlite.test.cpp31
1 files changed, 30 insertions, 1 deletions
diff --git a/test/storage/sqlite.test.cpp b/test/storage/sqlite.test.cpp
index 553736a0b1..a7c9d95e9b 100644
--- a/test/storage/sqlite.test.cpp
+++ b/test/storage/sqlite.test.cpp
@@ -1,8 +1,10 @@
#include <mbgl/test/util.hpp>
+#include <mbgl/test/fixture_log_observer.hpp>
-#include <gtest/gtest.h>
#include <sqlite3.hpp>
+using namespace mbgl;
+
TEST(SQLite, Statement) {
using namespace mbgl;
@@ -29,9 +31,36 @@ TEST(SQLite, Statement) {
}
TEST(SQLite, TEST_REQUIRES_WRITE(TryOpen)) {
+ FixtureLog log;
+
// Should return a CANTOPEN exception when the database doesn't exist,
// make sure all the backends behave the same way.
auto result = mapbox::sqlite::Database::tryOpen("test/fixtures/offline_database/foobar123.db", mapbox::sqlite::ReadOnly);
ASSERT_TRUE(result.is<mapbox::sqlite::Exception>());
ASSERT_EQ(result.get<mapbox::sqlite::Exception>().code, mapbox::sqlite::ResultCode::CantOpen);
+
+#ifndef __QT__
+ // Only non-Qt platforms are setting a logger on the SQLite object.
+ EXPECT_EQ(1u, log.count({ EventSeverity::Info, Event::Database, static_cast<int64_t>(mapbox::sqlite::ResultCode::CantOpen), "cannot open file" }, true));
+ EXPECT_EQ(1u, log.count({ EventSeverity::Info, Event::Database, static_cast<int64_t>(mapbox::sqlite::ResultCode::CantOpen), "No such file or directory" }, true));
+#endif
+ EXPECT_EQ(0u, log.uncheckedCount());
+}
+
+TEST(SQLite, CloseDatabaseWithPendingTransaction) {
+ auto db = std::make_unique<mapbox::sqlite::Database>(mapbox::sqlite::Database::open(
+ ":memory:", mapbox::sqlite::ReadWrite | mapbox::sqlite::Create));
+ mapbox::sqlite::Transaction transaction(*db);
+ transaction.commit();
+}
+
+TEST(SQLite, CloseMovedDatabaseWithPendingTransaction) {
+ // Verifies that we can correctly commit a transaction even if we move the Database object to
+ // another address.
+ auto db1 = mapbox::sqlite::Database::open(":memory:",
+ mapbox::sqlite::ReadWrite | mapbox::sqlite::Create);
+ std::unique_ptr<mapbox::sqlite::Database> db2;
+ mapbox::sqlite::Transaction transaction(db1);
+ db2 = std::make_unique<mapbox::sqlite::Database>(std::move(db1));
+ transaction.commit();
}