~aleteoryx/muditaos

ref: 790c746ae1362439570525dfd81f85d4e46f0f2d muditaos/module-db/tests/Helpers.cpp -rw-r--r-- 5.6 KiB
790c746a — Maciej Gibowicz [BH-2096] Add quote group setting 10 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md

#include "Helpers.hpp"

#include <Utils.hpp>
#include <vector>
#include <set>
#include <algorithm>
#include <utility>
#include <fstream>

namespace
{
    std::string readContent(const std::string &filename)
    {
        std::ifstream file{filename};
        if (!file.is_open()) {
            return {};
        }

        const auto fileSize = std::filesystem::file_size(filename);
        auto fileContent    = std::make_unique<char[]>(fileSize + 1);

        file.read(fileContent.get(), fileSize);
        fileContent[fileSize] = '\0';

        return std::string{fileContent.get()};
    }

    std::vector<std::string> readCommands(const std::filesystem::path &filePath)
    {
        const auto &fileContent = readContent(filePath.c_str());
        std::string currentStatement{};
        std::vector<std::string> statements{};

        std::string line{};
        for (const auto c : fileContent) {
            if (c != '\n') {
                line += c;
            }
            else {
                if (line.empty() || utils::startsWith(line, "--")) {
                    line.clear();
                    continue;
                }
                if (utils::endsWith(line, ";")) {
                    statements.push_back(currentStatement + line);
                    currentStatement.clear();
                    line.clear();
                    continue;
                }
                currentStatement += line;

                line.clear();
            }
        }
        return statements;
    }

    std::set<std::filesystem::path> listVersionDirectories(const std::filesystem::path &path, const std::string &dbName)
    {
        std::set<std::filesystem::path> versions;
        for (const auto &entry : std::filesystem::directory_iterator(path)) {
            if (entry.is_directory() and entry.path().filename() == dbName) {
                for (const auto &version : std::filesystem::directory_iterator(entry.path())) {
                    versions.insert(version.path());
                }
            }
        }
        return versions;
    }

    std::vector<std::filesystem::path> searchForScripts(const std::filesystem::path &pathToVersion,
                                                        const std::string &scriptName)
    {
        std::vector<std::filesystem::path> scripts{};
        if (std::filesystem::exists(pathToVersion / scriptName)) {
            scripts.push_back(pathToVersion / scriptName);
        }
        else {
            for (const auto &subVersion : std::filesystem::directory_iterator(pathToVersion)) {
                if (std::filesystem::exists(subVersion.path() / scriptName)) {
                    scripts.push_back(subVersion.path() / scriptName);
                }
            }
        }
        return scripts;
    }

    std::vector<std::filesystem::path> listFiles(const std::filesystem::path &path,
                                                 const std::string &prefix,
                                                 const bool withDevelopment)
    {
        constexpr auto up_sql    = "up.sql";
        constexpr auto devel_sql = "devel.sql";
        std::vector<std::filesystem::path> files;
        for (const auto &version : listVersionDirectories(path, prefix)) {
            auto scriptsPath = searchForScripts(version, up_sql);
            if (not scriptsPath.empty()) {
                files.insert(files.end(), scriptsPath.begin(), scriptsPath.end());
            }
            if (withDevelopment) {
                scriptsPath = searchForScripts(version, devel_sql);
                if (not scriptsPath.empty()) {
                    files.insert(files.end(), scriptsPath.begin(), scriptsPath.end());
                }
            }
        }
        return files;
    }

    bool executeOnDb(Database &db, const std::vector<std::string> &statements)
    {
        return std::all_of(statements.begin(), statements.end(), [&db](const auto &statement) {
            return db.execute(statement.c_str());
        });
    }
} // namespace

namespace db::tests
{
    std::filesystem::path currentFileLocation()
    {
        const std::string path = __FILE__;
        return std::filesystem::path{path.substr(0, path.rfind('/'))};
    }

    std::filesystem::path getScriptsPath()
    {
        return currentFileLocation() / "../databases/migration";
    }

    /// TODO:
    /// This function is obviously wrong and should not exist in the first place. Unfortunately, due to the
    /// current directory structure, product specific modules and some unit tests are placed in common directories.
    /// After proper module-db and service-db split it wont' be needed as every product-specific db unit test will be
    /// placed in the correct directory.
    std::filesystem::path getPurePhoneScriptsPath()
    {
        return currentFileLocation() / "../../products/PurePhone/services/db/databases/migration";
    }

    bool DatabaseScripts::operator()(Database &db)
    {
        const std::filesystem::path dbpath = db.getName();
        const std::string dbname           = dbpath.filename().replace_extension();

        const auto scripts = listFiles(directory, dbname, withDevelopment);
        return std::all_of(scripts.begin(), scripts.end(), [&db](const auto &script) {
            return executeOnDb(db, readCommands(script));
        });
    }
    DatabaseScripts::DatabaseScripts(std::filesystem::path directory, bool withDevelopment)
        : directory{std::move(directory)}, withDevelopment{withDevelopment}
    {}
} // namespace db::tests