File: tests-backend-debian.cpp

package info (click to toggle)
appstream-generator 0.10.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,344 kB
  • sloc: cpp: 42,038; python: 292; xml: 259; sh: 223; makefile: 20
file content (417 lines) | stat: -rw-r--r-- 13,153 bytes parent folder | download
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
/*
 * Copyright (C) 2019-2025 Matthias Klumpp <matthias@tenstral.net>
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */

#define CATCH_CONFIG_MAIN
#include <catch2/catch_all.hpp>

#include <filesystem>
#include <algorithm>
#include <fstream>
#include <memory>

#include "logging.h"
#include "utils.h"
#include "backends/debian/debpkgindex.h"
#include "backends/debian/debpkg.h"
#include "backends/debian/tagfile.h"
#include "backends/debian/debutils.h"

using namespace ASGenerator;

static struct TestSetup {
    TestSetup()
    {
        setVerbose(true);
    }
} testSetup;

// Test-friendly wrapper class that exposes protected methods for testing
class TestableDebianPackageIndex : public DebianPackageIndex
{
public:
    TestableDebianPackageIndex(const std::string &dir)
        : DebianPackageIndex(dir)
    {
    }

    // Expose protected methods for testing
    using DebianPackageIndex::findTranslations;
    using DebianPackageIndex::getIndexFile;
    using DebianPackageIndex::packageDescToAppStreamDesc;
};

TEST_CASE("DebianPackageIndex: findTranslations", "[debian][debpkgindex]")
{
    auto samplesDir = Utils::getTestSamplesDir();
    auto debianSamplesDir = samplesDir / "debian";

    SECTION("Find translations for existing suite and section")
    {
        TestableDebianPackageIndex pi(debianSamplesDir.string());

        auto translations = pi.findTranslations("sid", "main");
        std::sort(translations.begin(), translations.end());

        // Expected translations
        std::vector<std::string> expected = {"en", "ca", "cs", "da", "de", "de_DE", "el",    "eo",    "es",
                                             "eu", "fi", "fr", "hr", "hu", "id",    "it",    "ja",    "km",
                                             "ko", "ml", "nb", "nl", "pl", "pt",    "pt_BR", "ro",    "ru",
                                             "sk", "sr", "sv", "tr", "uk", "vi",    "zh",    "zh_CN", "zh_TW"};
        std::sort(expected.begin(), expected.end());

        REQUIRE(translations == expected);
    }

    SECTION("Non-existent suite returns default translation")
    {
        TestableDebianPackageIndex pi(debianSamplesDir.string());
        auto translations = pi.findTranslations("nonexistent", "main");

        // Should return default "en" when InRelease is not found
        REQUIRE(translations.size() == 1);
        REQUIRE(translations[0] == "en");
    }
}

TEST_CASE("DebianPackageIndex: packageDescToAppStreamDesc", "[debian][debpkgindex]")
{
    auto samplesDir = Utils::getTestSamplesDir();
    auto debianSamplesDir = samplesDir / "debian";

    TestableDebianPackageIndex pi(debianSamplesDir.string());

    SECTION("Convert simple description")
    {
        std::vector<std::string> lines = {"This is a simple description.", "With a second line."};

        auto result = pi.packageDescToAppStreamDesc(lines);
        REQUIRE(result == "<p>This is a simple description. With a second line.</p>");
    }

    SECTION("Convert description with paragraph breaks")
    {
        std::vector<std::string> lines = {"First paragraph.", ".", "Second paragraph."};

        auto result = pi.packageDescToAppStreamDesc(lines);
        REQUIRE(result == "<p>First paragraph.</p>\n<p>Second paragraph.</p>");
    }

    SECTION("Convert description with markup escaping")
    {
        std::vector<std::string> lines = {"This has <special> & 'characters'."};

        auto result = pi.packageDescToAppStreamDesc(lines);
        REQUIRE(result == "<p>This has &lt;special&gt; &amp; &apos;characters&apos;.</p>");
    }
}

TEST_CASE("DebPackage: Basic operations", "[debian][debpkg]")
{
    SECTION("Package construction and basic properties")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");

        REQUIRE(pkg.name() == "test-package");
        REQUIRE(pkg.ver() == "1.0.0");
        REQUIRE(pkg.arch() == "amd64");
        REQUIRE(pkg.id() == "test-package/1.0.0/amd64");

        // Test property setters
        pkg.setName("new-package");
        pkg.setVersion("2.0.0");
        pkg.setArch("i386");

        REQUIRE(pkg.name() == "new-package");
        REQUIRE(pkg.ver() == "2.0.0");
        REQUIRE(pkg.arch() == "i386");
    }

    SECTION("Package maintainer")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");
        pkg.setMaintainer("Test User <test@example.com>");

        REQUIRE(pkg.maintainer() == "Test User <test@example.com>");
    }

    SECTION("Package filename handling")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");
        pkg.setFilename("/path/to/package.deb");

        // For local files, getFilename should return the same path
        REQUIRE(pkg.getFilename() == "/path/to/package.deb");
    }

    SECTION("GStreamer codec information")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");

        // Initially no GStreamer info
        REQUIRE_FALSE(pkg.gst().has_value());

        // Set GStreamer info
        std::vector<std::string> decoders = {"mp3", "ogg"};
        std::vector<std::string> encoders = {"wav"};
        GStreamer gst(decoders, encoders, {}, {}, {});

        pkg.setGst(gst);
        auto retrievedGst = pkg.gst();
        REQUIRE(retrievedGst.has_value());
        REQUIRE(retrievedGst->isNotEmpty());
    }
}

TEST_CASE("DebPackageLocaleTexts: Thread safety and functionality", "[debian][debpkg]")
{
    auto l10nTexts = std::make_shared<DebPackageLocaleTexts>();

    SECTION("Set and retrieve descriptions")
    {
        l10nTexts->setDescription("English description", "en");
        l10nTexts->setDescription("Deutsche Beschreibung", "de");

        REQUIRE(l10nTexts->description.at("en") == "English description");
        REQUIRE(l10nTexts->description.at("de") == "Deutsche Beschreibung");
    }

    SECTION("Set and retrieve summaries")
    {
        l10nTexts->setSummary("English summary", "en");
        l10nTexts->setSummary("Deutsche Zusammenfassung", "de");

        REQUIRE(l10nTexts->summary.at("en") == "English summary");
        REQUIRE(l10nTexts->summary.at("de") == "Deutsche Zusammenfassung");
    }

    SECTION("Shared localized texts between packages")
    {
        DebPackage pkg1("test-package", "1.0.0", "amd64", l10nTexts);
        DebPackage pkg2("test-package", "1.0.0", "i386", l10nTexts);

        l10nTexts->setDescription("Shared description", "en");

        // Both packages should have the same description
        REQUIRE(pkg1.description().at("en") == "Shared description");
        REQUIRE(pkg2.description().at("en") == "Shared description");
    }
}

TEST_CASE("TagFile: Debian control file parsing", "[debian][tagfile]")
{
    SECTION("Parse simple control data")
    {
        std::string controlData =
            "Package: test-package\n"
            "Version: 1.0.0\n"
            "Architecture: amd64\n"
            "Description: A test package\n"
            " This is a longer description\n"
            " that spans multiple lines.\n"
            "\n"
            "Package: another-package\n"
            "Version: 2.0.0\n";

        TagFile tf;
        tf.load(controlData);

        // First section
        REQUIRE(tf.readField("Package") == "test-package");
        REQUIRE(tf.readField("Version") == "1.0.0");
        REQUIRE(tf.readField("Architecture") == "amd64");

        auto description = tf.readField("Description");
        REQUIRE(description.find("A test package") != std::string::npos);
        REQUIRE(description.find("longer description") != std::string::npos);

        // Move to next section
        REQUIRE(tf.nextSection());
        REQUIRE(tf.readField("Package") == "another-package");
        REQUIRE(tf.readField("Version") == "2.0.0");

        // No more sections
        REQUIRE_FALSE(tf.nextSection());
    }

    SECTION("Handle missing fields gracefully")
    {
        std::string controlData = "Package: test-package\n";

        TagFile tf;
        tf.load(controlData);

        REQUIRE(tf.readField("Package") == "test-package");
        REQUIRE(tf.readField("NonExistent").empty());
    }

    SECTION("Parse empty control data")
    {
        TagFile tf;
        tf.load("");

        REQUIRE(tf.readField("Package").empty());
        REQUIRE_FALSE(tf.nextSection());
    }
}

TEST_CASE("Debian version comparison", "[debian][debutils]")
{
    SECTION("Simple version comparisons")
    {
        REQUIRE(compareVersions("1.0", "2.0") < 0);
        REQUIRE(compareVersions("2.0", "1.0") > 0);
        REQUIRE(compareVersions("1.0", "1.0") == 0);
    }

    SECTION("Version with epochs")
    {
        REQUIRE(compareVersions("1:1.0", "2.0") > 0);
        REQUIRE(compareVersions("2:1.0", "1:2.0") > 0);
        REQUIRE(compareVersions("1:1.0", "1:1.0") == 0);
    }

    SECTION("Version with revisions")
    {
        REQUIRE(compareVersions("1.0-1", "1.0-2") < 0);
        REQUIRE(compareVersions("1.0-2", "1.0-1") > 0);
        REQUIRE(compareVersions("1.0-1", "1.0-1") == 0);
    }

    SECTION("Complex version strings")
    {
        REQUIRE(compareVersions("1.0~beta1", "1.0") < 0);
        REQUIRE(compareVersions("1.0", "1.0+build1") < 0);
        REQUIRE(compareVersions("1.0-1ubuntu1", "1.0-1ubuntu2") < 0);
    }

    SECTION("Real-world examples")
    {
        REQUIRE(compareVersions("2.7.2-linux-1", "2.7.3-linux-1") < 0);
        REQUIRE(compareVersions("1:7.4.052-1ubuntu3", "1:7.4.052-1ubuntu3.1") < 0);
        REQUIRE(compareVersions("0.8.15-1", "0.8.15-1+deb8u1") < 0);
    }
}

TEST_CASE("DebianPackageIndex: Package loading and caching", "[debian][debpkgindex]")
{
    auto samplesDir = Utils::getTestSamplesDir();
    auto debianSamplesDir = samplesDir / "debian";
    auto chromodorisMainDir = debianSamplesDir / "dists" / "chromodoris" / "main" / "binary-amd64";

    SECTION("Load packages from index")
    {
        DebianPackageIndex pi(debianSamplesDir.string());

        // This should work if we have the proper structure
        REQUIRE_NOTHROW([&]() {
            auto packages = pi.packagesFor("chromodoris", "main", "amd64", false);
            INFO("Loaded " << packages.size() << " packages");
        }());
    }

    SECTION("Package caching works")
    {
        DebianPackageIndex pi(debianSamplesDir.string());

        // Load packages twice - second call should use cache
        auto packages1 = pi.packagesFor("chromodoris", "main", "amd64", false);
        auto packages2 = pi.packagesFor("chromodoris", "main", "amd64", false);

        // Should return the same packages (from cache)
        REQUIRE(packages1.size() == packages2.size());
    }

    SECTION("Release clears cache")
    {
        DebianPackageIndex pi(debianSamplesDir.string());

        auto packages1 = pi.packagesFor("chromodoris", "main", "amd64", false);
        pi.release();
        auto packages2 = pi.packagesFor("chromodoris", "main", "amd64", false);

        // Should still work after release
        REQUIRE(packages1.size() == packages2.size());
    }
}

TEST_CASE("DebianPackageIndex: Index file handling", "[debian][debpkgindex]")
{
    auto samplesDir = Utils::getTestSamplesDir();
    auto debianSamplesDir = samplesDir / "debian";

    SECTION("Get index file path")
    {
        TestableDebianPackageIndex pi(debianSamplesDir.string());

        REQUIRE_NOTHROW([&]() {
            auto indexPath = pi.getIndexFile("chromodoris", "main", "amd64");
            INFO("Index file path: " << indexPath);
        }());
    }
}

TEST_CASE("DebPackage: Package validation", "[debian][debpkg]")
{
    SECTION("Valid package")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");
        pkg.setMaintainer("Test User <test@example.com>");

        REQUIRE(pkg.isValid());
    }

    SECTION("Package with empty name is invalid")
    {
        DebPackage pkg("", "1.0.0", "amd64");
        REQUIRE_FALSE(pkg.isValid());
    }

    SECTION("Package with empty version is invalid")
    {
        DebPackage pkg("test-package", "", "amd64");
        REQUIRE_FALSE(pkg.isValid());
    }

    SECTION("Package with empty architecture is invalid")
    {
        DebPackage pkg("test-package", "1.0.0", "");
        REQUIRE_FALSE(pkg.isValid());
    }
}

TEST_CASE("DebPackage: Temporary directory handling", "[debian][debpkg]")
{
    SECTION("Temporary directory path generation")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");
        pkg.updateTmpDirPath();

        // Can't easily test the exact path without knowing the config,
        // but we can ensure it doesn't crash
        REQUIRE_NOTHROW(pkg.updateTmpDirPath());
    }

    SECTION("Cleanup operations don't crash")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");

        REQUIRE_NOTHROW(pkg.cleanupTemp());
        REQUIRE_NOTHROW(pkg.finish());
    }
}

TEST_CASE("DebPackage: Package string representation", "[debian][debpkg]")
{
    SECTION("toString method")
    {
        DebPackage pkg("test-package", "1.0.0", "amd64");

        auto str = pkg.toString();
        REQUIRE(str.find("test-package") != std::string::npos);
        REQUIRE(str.find("1.0.0") != std::string::npos);
        REQUIRE(str.find("amd64") != std::string::npos);
    }
}