/* * Copyright (C) 2021 Emeric Poupon * * This file is part of LMS. * * LMS is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * LMS 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 LMS. If not, see . */ #pragma once #include #include #include #include "database/Artist.hpp" #include "database/Cluster.hpp" #include "database/Db.hpp" #include "database/Release.hpp" #include "database/Session.hpp" #include "database/Track.hpp" #include "database/TrackArtistLink.hpp" #include "database/TrackBookmark.hpp" #include "database/TrackList.hpp" #include "database/Types.hpp" #include "database/User.hpp" template class ScopedEntity { public: using IdType = typename T::IdType; template ScopedEntity(Database::Session& session, Args&& ...args) : _session {session} { auto transaction {_session.createUniqueTransaction()}; auto entity {T::create(_session, std::forward(args)...)}; EXPECT_TRUE(entity); _id = entity->getId(); } ~ScopedEntity() { auto transaction {_session.createUniqueTransaction()}; auto entity {T::getById(_session, _id)}; entity.remove(); } ScopedEntity(const ScopedEntity&) = delete; ScopedEntity(ScopedEntity&&) = delete; ScopedEntity& operator=(const ScopedEntity&) = delete; ScopedEntity& operator=(ScopedEntity&&) = delete; typename T::pointer lockAndGet() { auto transaction {_session.createSharedTransaction()}; return get(); } typename T::pointer get() { _session.checkSharedLocked(); auto entity {T::getById(_session, _id)}; EXPECT_TRUE(entity); return entity; } typename T::pointer operator->() { return get(); } IdType getId() const { return _id; } private: Database::Session& _session; IdType _id {}; }; using ScopedArtist = ScopedEntity; using ScopedCluster = ScopedEntity; using ScopedClusterType = ScopedEntity; using ScopedRelease = ScopedEntity; using ScopedTrack = ScopedEntity; using ScopedTrackBookmark = ScopedEntity; using ScopedTrackList = ScopedEntity; using ScopedUser = ScopedEntity; class ScopedFileDeleter final { public: ScopedFileDeleter(const std::filesystem::path& path) : _path {path} {} ~ScopedFileDeleter() { std::filesystem::remove(_path); } ScopedFileDeleter(const ScopedFileDeleter&) = delete; ScopedFileDeleter(ScopedFileDeleter&&) = delete; ScopedFileDeleter operator=(const ScopedFileDeleter&) = delete; ScopedFileDeleter operator=(ScopedFileDeleter&&) = delete; private: const std::filesystem::path _path; }; class TmpDatabase final { public: Database::Db& getDb() { return _db; } private: const std::filesystem::path _tmpFile {std::tmpnam(nullptr)}; ScopedFileDeleter fileDeleter {_tmpFile}; Database::Db _db {_tmpFile}; }; class DatabaseFixture : public ::testing::Test { public: ~DatabaseFixture() { testDatabaseEmpty(); } public: static void SetUpTestCase() { _tmpDb = std::make_unique(); { Database::Session s {_tmpDb->getDb()}; s.prepareTables(); s.optimize(); // remove default created entries { auto transaction {s.createUniqueTransaction()}; auto clusterTypes {Database::ClusterType::getAll(s)}; for (auto& clusterType : clusterTypes) clusterType.remove(); } } } static void TearDownTestCase() { _tmpDb.reset(); } private: void testDatabaseEmpty() { auto uniqueTransaction {session.createUniqueTransaction()}; EXPECT_TRUE(Database::Artist::getAll(session, Database::Artist::SortMethod::ByName).empty()); EXPECT_TRUE(Database::Cluster::getAll(session).empty()); EXPECT_TRUE(Database::ClusterType::getAll(session).empty()); EXPECT_TRUE(Database::Release::getAll(session).empty()); EXPECT_TRUE(Database::Track::getAll(session).empty()); EXPECT_TRUE(Database::TrackBookmark::getAll(session).empty()); EXPECT_TRUE(Database::TrackList::getAll(session).empty()); EXPECT_TRUE(Database::User::getAll(session).empty()); } static inline std::unique_ptr _tmpDb {}; public: Database::Session session {_tmpDb->getDb()}; };