-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_dnf5daemon_client.cpp
More file actions
833 lines (679 loc) · 34.5 KB
/
Copy pathtest_dnf5daemon_client.cpp
File metadata and controls
833 lines (679 loc) · 34.5 KB
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
// -----------------------------------------------------------------------------
// test_dnf5daemon_client.cpp
// dnf5daemon transaction client tests
// Exercises the same preview client path used by the GTK frontend.
// -----------------------------------------------------------------------------
#include <catch2/catch_test_macros.hpp>
#include "test_utils.hpp"
#include "transaction/transaction_preview.hpp"
#include "transaction/transaction_request.hpp"
#include "dnf5daemon_client/transaction_service_client.hpp"
#include <glib.h>
#include <algorithm>
#include <sstream>
#include <string>
#include <vector>
namespace {
// -----------------------------------------------------------------------------
// Return the package used for daemon preview tests.
// -----------------------------------------------------------------------------
std::string
dnf5daemon_test_install_spec()
{
const char *spec = g_getenv("DNFUI_TEST_DNF5DAEMON_INSTALL_SPEC");
if (spec && *spec) {
return spec;
}
return "cowsay";
}
// -----------------------------------------------------------------------------
// Return the package used for daemon downgrade preview tests.
// -----------------------------------------------------------------------------
std::string
dnf5daemon_test_downgrade_spec()
{
const char *spec = g_getenv("DNFUI_TEST_DNF5DAEMON_DOWNGRADE_SPEC");
if (spec && *spec) {
return spec;
}
return "";
}
// -----------------------------------------------------------------------------
// Return true when a preview section contains a package label by name.
// -----------------------------------------------------------------------------
bool
preview_section_contains_name(const std::vector<TransactionPreviewPackage> &items, const std::string &name)
{
return std::any_of(items.begin(), items.end(), [&](const TransactionPreviewPackage &item) {
return item.label.rfind(name + "-", 0) == 0;
});
}
bool
preview_section_contains_label(const std::vector<TransactionPreviewPackage> &items, const std::string &label)
{
return std::any_of(
items.begin(), items.end(), [&](const TransactionPreviewPackage &item) { return item.label == label; });
}
TransactionPreviewPackage
preview_package(const std::string &name, const std::string &arch = "x86_64")
{
return { name + "-1.2.3-1." + arch, name, arch };
}
// -----------------------------------------------------------------------------
// Return true when progress contains the expected message.
// -----------------------------------------------------------------------------
bool
progress_contains(const std::vector<std::string> &progress_lines, const std::string &expected)
{
return std::any_of(progress_lines.begin(), progress_lines.end(), [&](const std::string &line) {
return line.find(expected) != std::string::npos;
});
}
// -----------------------------------------------------------------------------
// Verify that cold-offline repository load failures are shown as user-facing preparation errors.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preparation maps repository load failures to a clear message")
{
const std::string message =
transaction_service_client_testonly_prepare_error_message("org.rpm.dnf.v0.Error", "Cannot load repositories.");
REQUIRE(message.find("Repository data is unavailable") != std::string::npos);
REQUIRE(message.find("refresh repositories") != std::string::npos);
REQUIRE(message.find("GDBus.Error") == std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that package download failures are shown without the raw D-Bus prefix.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon apply maps package download failures to a clear message")
{
const std::string message =
transaction_service_client_testonly_apply_error_message("org.rpm.dnf.v0.Error", "Failed to download packages.");
REQUIRE(message.find("Required packages could not be downloaded") != std::string::npos);
REQUIRE(message.find("network connection") != std::string::npos);
REQUIRE(message.find("GDBus.Error") == std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that only remove-only selected transactions skip available repository loading.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon selected transaction sessions load repositories by request type")
{
TransactionRequest request;
request.remove.push_back("test-package.x86_64");
REQUIRE_FALSE(transaction_service_client_testonly_request_loads_available_repos(request));
request.install.push_back("other-package.x86_64");
REQUIRE(transaction_service_client_testonly_request_loads_available_repos(request));
request = {};
request.install.push_back("test-package.x86_64");
REQUIRE(transaction_service_client_testonly_request_loads_available_repos(request));
request = {};
request.upgrade.push_back("test-package.x86_64");
REQUIRE(transaction_service_client_testonly_request_loads_available_repos(request));
request = {};
request.downgrade.push_back("test-package-1.0-1.x86_64");
REQUIRE(transaction_service_client_testonly_request_loads_available_repos(request));
request = {};
request.reinstall.push_back("test-package.x86_64");
REQUIRE(transaction_service_client_testonly_request_loads_available_repos(request));
}
// -----------------------------------------------------------------------------
// Return progress lines as one string so Catch2 can show them on failure.
// -----------------------------------------------------------------------------
std::string
joined_progress_lines(const std::vector<std::string> &progress_lines)
{
std::ostringstream out;
for (const auto &line : progress_lines) {
if (out.tellp() > 0) {
out << "\n";
}
out << line;
}
return out.str();
}
// -----------------------------------------------------------------------------
// Skip daemon tests unless the caller explicitly enabled them.
// -----------------------------------------------------------------------------
void
require_dnf5daemon_test_enabled()
{
const char *enabled = g_getenv("DNFUI_TEST_DNF5DAEMON");
if (!enabled || std::string(enabled) != "1") {
SKIP("Set DNFUI_TEST_DNF5DAEMON=1 to run dnf5daemon client tests.");
}
}
} // namespace
// -----------------------------------------------------------------------------
// Verify that replaced packages are listed as actions instead of only as disk space changes.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview parser represents replaced package actions")
{
TransactionPreview preview;
std::string error;
bool ok = transaction_service_client_testonly_build_preview_from_item(
"package", "replaced", "test-package", preview, error);
REQUIRE(ok);
REQUIRE(error.empty());
REQUIRE(preview.replaced.size() == 1);
REQUIRE(preview.replaced[0].label == "test-package-2.0-3.x86_64");
REQUIRE(preview.replaced[0].name == "test-package");
REQUIRE(preview.replaced[0].arch == "x86_64");
REQUIRE(preview.disk_space_delta == -4096);
REQUIRE_FALSE(preview.empty());
}
// -----------------------------------------------------------------------------
// Verify that downgrade preview items are represented explicitly.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview parser represents downgrade package actions")
{
TransactionPreview preview;
std::string error;
bool ok = transaction_service_client_testonly_build_preview_from_item(
"package", "downgrade", "test-package", preview, error);
REQUIRE(ok);
REQUIRE(error.empty());
REQUIRE(preview.downgrade.size() == 1);
REQUIRE(preview.downgrade[0].label == "test-package-2.0-3.x86_64");
REQUIRE(preview.downgrade[0].name == "test-package");
REQUIRE(preview.downgrade[0].arch == "x86_64");
REQUIRE(preview.disk_space_delta == 4096);
REQUIRE_FALSE(preview.empty());
}
// -----------------------------------------------------------------------------
// Verify that successful resolve warnings do not count as package actions.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview warnings do not count as package actions")
{
TransactionPreview preview;
preview.resolve_warnings = "Package test-package is already installed.";
REQUIRE_FALSE(preview.resolve_warnings.empty());
REQUIRE(preview.empty());
}
// -----------------------------------------------------------------------------
// Verify that cancellation wins before a trusted repository key answer reaches dnf5daemon.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon key import confirmation honors cancellation after user approval")
{
GCancellable *cancellable = g_cancellable_new();
bool callback_called = false;
TransactionKeyImportCallback callback = [&](const TransactionKeyImportRequest &) {
callback_called = true;
g_cancellable_cancel(cancellable);
return true;
};
bool confirmed = true;
REQUIRE(transaction_service_client_testonly_key_import_answer_after_callback(callback, cancellable, confirmed));
GCancellable *confirmation_cancellable =
transaction_service_client_testonly_key_import_confirmation_cancellable(confirmed, cancellable);
g_object_unref(cancellable);
REQUIRE(callback_called);
REQUIRE_FALSE(confirmed);
REQUIRE(confirmation_cancellable == nullptr);
}
// -----------------------------------------------------------------------------
// Verify that the completed preview rejects removing the daemon server DNF UI needs for package changes.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview validation rejects removing dnf5daemon-server")
{
TransactionPreview preview;
std::string error;
preview.remove.push_back(preview_package("dnf5daemon-server"));
REQUIRE_FALSE(transaction_service_client_testonly_verify_preview_keeps_required_daemon_server(preview, error));
REQUIRE(error.find("dnf5daemon-server") != std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that replacing dnf5daemon-server is allowed only when the preview also installs its successor.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview validation handles dnf5daemon-server replacement pairs")
{
TransactionPreview preview;
std::string error;
preview.replaced.push_back(preview_package("dnf5daemon-server"));
REQUIRE_FALSE(transaction_service_client_testonly_verify_preview_keeps_required_daemon_server(preview, error));
REQUIRE(error.find("dnf5daemon-server") != std::string::npos);
error.clear();
preview.upgrade.push_back(preview_package("dnf5daemon-server"));
REQUIRE(transaction_service_client_testonly_verify_preview_keeps_required_daemon_server(preview, error));
REQUIRE(error.empty());
}
// -----------------------------------------------------------------------------
// Verify that self-protection blocks destructive preview actions, not normal upgrades.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview self-protection allows normal upgrades")
{
ScopedEnvVar protected_name("DNFUI_TEST_SELF_PROTECTED_PACKAGE_NAME", "dnf-ui");
TransactionPreview preview;
preview.upgrade.push_back(preview_package("dnf-ui"));
std::string error;
REQUIRE(transaction_service_client_testonly_verify_preview_keeps_running_app_package(preview, error));
REQUIRE(error.empty());
}
// -----------------------------------------------------------------------------
// Verify that self-protection allows the replaced old package that belongs to a normal upgrade.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview self-protection allows normal upgrade replacement pairs")
{
ScopedEnvVar protected_name("DNFUI_TEST_SELF_PROTECTED_PACKAGE_NAME", "dnf-ui");
TransactionPreview preview;
preview.upgrade.push_back(preview_package("dnf-ui"));
preview.replaced.push_back(preview_package("dnf-ui"));
std::string error;
REQUIRE(transaction_service_client_testonly_verify_preview_keeps_running_app_package(preview, error));
REQUIRE(error.empty());
}
// -----------------------------------------------------------------------------
// Verify that self-protection rejects a replacement without a matching incoming upgrade.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview self-protection rejects replacements")
{
ScopedEnvVar protected_name("DNFUI_TEST_SELF_PROTECTED_PACKAGE_NAME", "dnf-ui");
TransactionPreview preview;
preview.replaced.push_back(preview_package("dnf-ui"));
std::string error;
REQUIRE_FALSE(transaction_service_client_testonly_verify_preview_keeps_running_app_package(preview, error));
REQUIRE(error.find("DNF UI") != std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that self-protection rejects a resolved downgrade of the running app package.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview self-protection rejects downgrades")
{
ScopedEnvVar protected_name("DNFUI_TEST_SELF_PROTECTED_PACKAGE_NAME", "dnf-ui");
TransactionPreview preview;
preview.downgrade.push_back(preview_package("dnf-ui"));
std::string error;
REQUIRE_FALSE(transaction_service_client_testonly_verify_preview_keeps_running_app_package(preview, error));
REQUIRE(error.find("DNF UI") != std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that self-protection rejects a resolved reinstall of the running app package.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon preview self-protection rejects reinstalls")
{
ScopedEnvVar protected_name("DNFUI_TEST_SELF_PROTECTED_PACKAGE_NAME", "dnf-ui");
TransactionPreview preview;
preview.reinstall.push_back(preview_package("dnf-ui"));
std::string error;
REQUIRE_FALSE(transaction_service_client_testonly_verify_preview_keeps_running_app_package(preview, error));
REQUIRE(error.find("DNF UI") != std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that daemon upgrade targets keep internal identity and daemon specs separate.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon upgrade target parser exposes stable identity helpers")
{
TransactionServiceUpgradeTarget target;
std::string error;
REQUIRE(transaction_service_client_testonly_build_upgrade_target_from_fields("demo",
"0",
"1.2.3",
"4.fc44",
"x86_64",
"updates",
"demo-1.2.3-4.fc44.x86_64",
"demo-0:1.2.3-4.fc44.x86_64",
target,
error));
REQUIRE(error.empty());
REQUIRE(target.name_arch_key() == "demo\nx86_64");
REQUIRE(target.upgrade_spec() == "demo.x86_64");
}
// -----------------------------------------------------------------------------
// Verify that normal NEVRA stays the application-facing package ID.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon upgrade target parser keeps normal and full NEVRA")
{
TransactionServiceUpgradeTarget target;
std::string error;
REQUIRE(transaction_service_client_testonly_build_upgrade_target_from_fields("demo",
"0",
"1.2.3",
"4.fc44",
"x86_64",
"updates",
"demo-1.2.3-4.fc44.x86_64",
"demo-0:1.2.3-4.fc44.x86_64",
target,
error));
REQUIRE(target.nevra == "demo-1.2.3-4.fc44.x86_64");
REQUIRE(target.full_nevra == "demo-0:1.2.3-4.fc44.x86_64");
REQUIRE(target.repo_id == "updates");
}
// -----------------------------------------------------------------------------
// Verify that full NEVRA alone is still kept while normal NEVRA is reconstructed.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon upgrade target parser builds normal NEVRA when missing")
{
TransactionServiceUpgradeTarget target;
std::string error;
REQUIRE(transaction_service_client_testonly_build_upgrade_target_from_fields(
"demo", "0", "1.2.3", "4.fc44", "x86_64", "updates", "", "demo-0:1.2.3-4.fc44.x86_64", target, error));
REQUIRE(target.nevra == "demo-1.2.3-4.fc44.x86_64");
REQUIRE(target.full_nevra == "demo-0:1.2.3-4.fc44.x86_64");
}
// -----------------------------------------------------------------------------
// Verify that a missing full NEVRA still keeps the epoch-zero full form.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon upgrade target parser builds epoch-zero full NEVRA")
{
TransactionServiceUpgradeTarget target;
std::string error;
REQUIRE(transaction_service_client_testonly_build_upgrade_target_from_fields(
"demo", "0", "1.2.3", "4.fc44", "x86_64", "updates", "", "", target, error));
REQUIRE(target.nevra == "demo-1.2.3-4.fc44.x86_64");
REQUIRE(target.full_nevra == "demo-0:1.2.3-4.fc44.x86_64");
}
// -----------------------------------------------------------------------------
// Verify that nonzero epochs are kept in the reconstructed NEVRA.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon upgrade target parser builds nonzero epoch NEVRA")
{
TransactionServiceUpgradeTarget target;
std::string error;
REQUIRE(transaction_service_client_testonly_build_upgrade_target_from_fields(
"demo", "2", "1.2.3", "4.fc44", "x86_64", "updates", "", "", target, error));
REQUIRE(target.nevra == "demo-2:1.2.3-4.fc44.x86_64");
REQUIRE(target.full_nevra == target.nevra);
}
// -----------------------------------------------------------------------------
// Verify that incomplete daemon upgrade targets fail instead of entering the snapshot.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon upgrade target parser rejects missing required fields")
{
TransactionServiceUpgradeTarget target;
std::string error;
REQUIRE_FALSE(transaction_service_client_testonly_build_upgrade_target_from_fields(
"", "0", "1.2.3", "4.fc44", "x86_64", "updates", "", "", target, error));
REQUIRE(error.find("incomplete upgrade item") != std::string::npos);
REQUIRE_FALSE(transaction_service_client_testonly_build_upgrade_target_from_fields(
"demo", "0", "", "4.fc44", "x86_64", "updates", "", "", target, error));
REQUIRE(error.find("incomplete upgrade item") != std::string::npos);
}
// -----------------------------------------------------------------------------
// Verify that the client can ask dnf5daemon for an install preview.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client previews install requests", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string install_spec = dnf5daemon_test_install_spec();
TransactionRequest request;
request.install.push_back(install_spec);
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE_FALSE(transaction_path.empty());
bool preview_contains_package = preview_section_contains_name(preview.install, install_spec);
transaction_service_client_release_request(transaction_path);
transaction_service_client_reset_for_tests();
REQUIRE(preview_contains_package);
}
// -----------------------------------------------------------------------------
// Verify that the client can ask dnf5daemon for an upgrade-all preview.
// A fully updated test container may return an empty preview, which is still a successful preview result.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client previews upgrade-all requests", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_upgrade_all_request(preview, transaction_path, error));
if (!transaction_path.empty()) {
transaction_service_client_release_request(transaction_path);
}
transaction_service_client_reset_for_tests();
}
// -----------------------------------------------------------------------------
// Verify that the client can ask dnf5daemon for a downgrade preview.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client previews downgrade requests", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string downgrade_spec = dnf5daemon_test_downgrade_spec();
if (downgrade_spec.empty()) {
SKIP("Set DNFUI_TEST_DNF5DAEMON_DOWNGRADE_SPEC to run the daemon downgrade preview test.");
}
TransactionRequest request;
request.downgrade.push_back(downgrade_spec);
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE_FALSE(transaction_path.empty());
bool preview_contains_package = preview_section_contains_name(preview.downgrade, downgrade_spec) ||
preview_section_contains_label(preview.downgrade, downgrade_spec);
transaction_service_client_release_request(transaction_path);
transaction_service_client_reset_for_tests();
REQUIRE(preview_contains_package);
}
// -----------------------------------------------------------------------------
// Verify that the client can list daemon upgrade targets without resolving an Upgrade All preview.
// A fully updated test system may return an empty list.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client lists upgrade targets", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
std::vector<TransactionServiceUpgradeTarget> targets;
std::string error;
bool listed = transaction_service_client_list_upgrade_targets(targets, error);
transaction_service_client_reset_for_tests();
INFO(error);
REQUIRE(listed);
for (const auto &target : targets) {
REQUIRE_FALSE(target.name.empty());
REQUIRE_FALSE(target.arch.empty());
REQUIRE_FALSE(target.version.empty());
REQUIRE_FALSE(target.release.empty());
REQUIRE_FALSE(target.nevra.empty());
REQUIRE(target.name_arch_key() == target.name + "\n" + target.arch);
REQUIRE(target.upgrade_spec() == target.name + "." + target.arch);
}
}
// -----------------------------------------------------------------------------
// Verify that the client can ask dnf5daemon to refresh repository metadata.
// This is the same daemon path used by the Refresh Repositories button.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client refreshes repositories", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
std::string error;
bool refreshed = transaction_service_client_refresh_repositories(error);
transaction_service_client_reset_for_tests();
INFO(error);
REQUIRE(refreshed);
}
// -----------------------------------------------------------------------------
// Verify that releasing a preview session really closes it in dnf5daemon.
// This is the same path used when the user closes the preview dialog.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client releases preview sessions", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string install_spec = dnf5daemon_test_install_spec();
TransactionRequest request;
request.install.push_back(install_spec);
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE_FALSE(transaction_path.empty());
transaction_service_client_release_request(transaction_path);
std::vector<std::string> progress_lines;
bool applied_after_release = transaction_service_client_apply_started_request(
transaction_path, [&](const std::string &line) { progress_lines.push_back(line); }, {}, error);
transaction_service_client_reset_for_tests();
REQUIRE_FALSE(applied_after_release);
REQUIRE_FALSE(error.empty());
}
// -----------------------------------------------------------------------------
// Verify that the client can apply an install transaction through dnf5daemon.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client applies install requests", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string install_spec = dnf5daemon_test_install_spec();
TransactionRequest request;
request.install.push_back(install_spec);
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE_FALSE(transaction_path.empty());
REQUIRE(transaction_service_client_session_exists_for_tests(transaction_path));
bool preview_contains_package = preview_section_contains_name(preview.install, install_spec);
std::vector<std::string> progress_lines;
bool applied = transaction_service_client_apply_started_request(
transaction_path, [&](const std::string &line) { progress_lines.push_back(line); }, {}, error);
transaction_service_client_release_request(transaction_path);
bool session_exists_after_release = transaction_service_client_session_exists_for_tests(transaction_path);
transaction_service_client_reset_for_tests();
REQUIRE(preview_contains_package);
INFO(error);
INFO(joined_progress_lines(progress_lines));
REQUIRE(applied);
REQUIRE(progress_contains(progress_lines, "Transaction applied successfully."));
REQUIRE_FALSE(session_exists_after_release);
}
// -----------------------------------------------------------------------------
// Verify that release still closes the daemon session after apply fails.
// A second daemon session changes the package state after the first preview.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client releases sessions after failed apply", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string install_spec = dnf5daemon_test_install_spec();
TransactionRequest remove_request;
remove_request.remove.push_back(install_spec);
TransactionPreview first_preview;
std::string first_transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(remove_request, first_preview, first_transaction_path, error));
REQUIRE_FALSE(first_transaction_path.empty());
REQUIRE(transaction_service_client_session_exists_for_tests(first_transaction_path));
TransactionPreview second_preview;
std::string second_transaction_path;
REQUIRE(transaction_service_client_preview_request(remove_request, second_preview, second_transaction_path, error));
REQUIRE_FALSE(second_transaction_path.empty());
std::vector<std::string> progress_lines;
REQUIRE(transaction_service_client_apply_started_request(
second_transaction_path, [&](const std::string &line) { progress_lines.push_back(line); }, {}, error));
transaction_service_client_release_request(second_transaction_path);
bool failed_apply = transaction_service_client_apply_started_request(
first_transaction_path, [&](const std::string &line) { progress_lines.push_back(line); }, {}, error);
transaction_service_client_release_request(first_transaction_path);
bool session_exists_after_release = transaction_service_client_session_exists_for_tests(first_transaction_path);
transaction_service_client_reset_for_tests();
REQUIRE_FALSE(failed_apply);
INFO(error);
INFO(joined_progress_lines(progress_lines));
REQUIRE_FALSE(error.empty());
REQUIRE(error.find("The approved transaction was not applied.") != std::string::npos);
REQUIRE_FALSE(session_exists_after_release);
}
// -----------------------------------------------------------------------------
// Verify that the client can preview removing an installed package.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client previews remove requests", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string install_spec = dnf5daemon_test_install_spec();
TransactionRequest request;
request.remove.push_back(install_spec);
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE_FALSE(transaction_path.empty());
bool preview_contains_package = preview_section_contains_name(preview.remove, install_spec);
transaction_service_client_release_request(transaction_path);
transaction_service_client_reset_for_tests();
REQUIRE(preview_contains_package);
}
// -----------------------------------------------------------------------------
// Verify that the client can preview reinstalling an installed package.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client previews reinstall requests", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
const std::string install_spec = dnf5daemon_test_install_spec();
TransactionRequest request;
request.reinstall.push_back(install_spec);
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE_FALSE(transaction_path.empty());
bool preview_contains_package = preview_section_contains_name(preview.reinstall, install_spec);
transaction_service_client_release_request(transaction_path);
transaction_service_client_reset_for_tests();
REQUIRE(preview_contains_package);
}
// -----------------------------------------------------------------------------
// Verify that DNF UI refuses a transaction that would remove its transaction backend.
// Removing dnf5daemon-server would leave the app unable to apply later package changes.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client rejects removing dnf5daemon-server", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
TransactionRequest request;
request.remove.push_back("dnf5daemon-server");
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE_FALSE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE(transaction_path.empty());
REQUIRE_FALSE(error.empty());
REQUIRE(error.find("dnf5daemon-server") != std::string::npos);
REQUIRE(preview.empty());
transaction_service_client_reset_for_tests();
}
// -----------------------------------------------------------------------------
// Verify that daemon resolver failures are returned as normal client errors.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client reports resolve failure", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
TransactionRequest request;
request.install.push_back("dnf-ui-definitely-not-a-real-package-name");
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE_FALSE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE(transaction_path.empty());
REQUIRE_FALSE(error.empty());
REQUIRE(preview.empty());
transaction_service_client_reset_for_tests();
}
// -----------------------------------------------------------------------------
// Verify that connection failure is reported before any daemon session is opened.
// -----------------------------------------------------------------------------
TEST_CASE("dnf5daemon client reports unavailable daemon", "[dnf5daemon]")
{
require_dnf5daemon_test_enabled();
transaction_service_client_reset_for_tests();
ScopedEnvVar missing_system_bus("DBUS_SYSTEM_BUS_ADDRESS", "unix:path=/tmp/dnfui-missing-system-bus");
TransactionRequest request;
request.install.push_back(dnf5daemon_test_install_spec());
TransactionPreview preview;
std::string transaction_path;
std::string error;
REQUIRE_FALSE(transaction_service_client_preview_request(request, preview, transaction_path, error));
REQUIRE(transaction_path.empty());
REQUIRE_FALSE(error.empty());
REQUIRE(preview.empty());
transaction_service_client_reset_for_tests();
}
// -----------------------------------------------------------------------------
// EOF
// -----------------------------------------------------------------------------