Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2020 CESNET, https://photonics.cesnet.cz/ |
| 3 | * |
| 4 | * Written by Tomáš Pecka <tomas.pecka@fit.cvut.cz> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include "trompeloeil_doctest.h" |
| 9 | #include "dbus-helpers/dbus_systemd_server.h" |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 10 | #include "health/inputs/DbusSystemdInput.h" |
Tomáš Pecka | 339bc67 | 2020-11-11 15:59:03 +0100 | [diff] [blame] | 11 | #include "mock/health.h" |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 12 | #include "test_log_setup.h" |
| 13 | #include "utils/log-init.h" |
| 14 | #include "utils/log.h" |
| 15 | |
| 16 | TEST_CASE("Systemd monitor") |
| 17 | { |
| 18 | TEST_INIT_LOGS; |
| 19 | trompeloeil::sequence seq1; |
| 20 | |
| 21 | // Create and setuo separate connections for both client and server. Could be done using a single connection but this way it is more generic |
| 22 | auto clientConnection = sdbus::createSessionBusConnection(); |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 23 | auto serverConnection = sdbus::createSessionBusConnection(); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 24 | clientConnection->enterEventLoopAsync(); |
| 25 | serverConnection->enterEventLoopAsync(); |
| 26 | |
| 27 | auto mx = std::make_shared<FakeManager>(); |
| 28 | auto server = DbusSystemdServer(*serverConnection); |
| 29 | |
| 30 | // i1 gets constructed which means: |
| 31 | // - a registration is performed, along with an updateState call (State::OK) |
| 32 | // - i1's constructor queries the current state and performs updateState |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 33 | REQUIRE_CALL(*mx, registerInput(ANY(void*), velia::health::State::OK)).LR_SIDE_EFFECT(mx->updateState(_1, _2)).IN_SEQUENCE(seq1); |
| 34 | REQUIRE_CALL(*mx, updateState(ANY(void*), velia::health::State::OK)).IN_SEQUENCE(seq1); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 35 | |
| 36 | // create units. Unit2 and Unit3 are in states that we consider failed |
| 37 | // therefore the DbusSystemdInput will report ERROR after loading the second unit |
| 38 | // FailedUnits: {unit2, unit3} -> ERROR |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 39 | server.createUnit(*serverConnection, "unit1.service", "/org/freedesktop/systemd1/unit/unit1", "active", "running"); |
| 40 | server.createUnit(*serverConnection, "unit2.service", "/org/freedesktop/systemd1/unit/unit2", "activating", "auto-restart"); |
| 41 | server.createUnit(*serverConnection, "unit3.service", "/org/freedesktop/systemd1/unit/unit3", "failed", "failed"); |
| 42 | server.createUnit(*serverConnection, "unitIgnored.service", "/org/freedesktop/systemd1/unit/unitIgnored", "failed", "failed"); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 43 | |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 44 | REQUIRE_CALL(*mx, updateState(ANY(void*), velia::health::State::OK)).IN_SEQUENCE(seq1); |
| 45 | REQUIRE_CALL(*mx, updateState(ANY(void*), velia::health::State::ERROR)).IN_SEQUENCE(seq1); |
| 46 | REQUIRE_CALL(*mx, updateState(ANY(void*), velia::health::State::ERROR)).IN_SEQUENCE(seq1); |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 47 | auto i1 = std::make_shared<velia::health::DbusSystemdInput>(mx, std::set<std::string> {"unitIgnored.service"}, *clientConnection, serverConnection->getUniqueName(), "/org/freedesktop/systemd1", "org.freedesktop.systemd1.Manager", "org.freedesktop.systemd1.Unit"); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 48 | // i1 now listens for dbus events, we can start the semaphore server |
| 49 | |
| 50 | // FailedUnits: {unit3} -> ERROR |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 51 | REQUIRE_CALL(*mx, updateState(i1.get(), velia::health::State::ERROR)).IN_SEQUENCE(seq1); |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 52 | server.changeUnitState("/org/freedesktop/systemd1/unit/unit2", "active", "running"); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 53 | |
| 54 | // FailedUnits: {} -> OK |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 55 | REQUIRE_CALL(*mx, updateState(i1.get(), velia::health::State::OK)).IN_SEQUENCE(seq1); |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 56 | server.changeUnitState("/org/freedesktop/systemd1/unit/unit3", "active", "running"); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 57 | |
Tomáš Pecka | 8ce8835 | 2020-11-04 19:14:13 +0100 | [diff] [blame] | 58 | // In case we obtain a notifications that unit changed state from (X,Y) to (X,Y), do not trigger any events. |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 59 | server.changeUnitState("/org/freedesktop/systemd1/unit/unit3", "active", "running"); |
Tomáš Pecka | 8ce8835 | 2020-11-04 19:14:13 +0100 | [diff] [blame] | 60 | |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 61 | // add new unit with failed/failed, DbusSystemdInput should receive UnitNew signal and monitor this unit too |
| 62 | // FailedUnits: {unit4} -> OK |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 63 | REQUIRE_CALL(*mx, updateState(i1.get(), velia::health::State::ERROR)).IN_SEQUENCE(seq1); |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 64 | server.createUnit(*serverConnection, "unit4.service", "/org/freedesktop/systemd1/unit/unit4", "failed", "failed"); |
Tomáš Pecka | f2391d6 | 2020-11-06 14:02:00 +0100 | [diff] [blame] | 65 | |
| 66 | // unitIgnored is ignored by us, so it can change in any way but since we don't obtain the notifications, nothing will happen |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 67 | server.changeUnitState("/org/freedesktop/systemd1/unit/unitIgnored", "failed", "failed"); |
| 68 | server.changeUnitState("/org/freedesktop/systemd1/unit/unitIgnored", "active", "auto-restarting"); |
| 69 | server.changeUnitState("/org/freedesktop/systemd1/unit/unitIgnored", "active", "running"); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 70 | |
| 71 | waitForCompletionAndBitMore(seq1); |
| 72 | |
| 73 | // FailedUnits: {} -> OK |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 74 | REQUIRE_CALL(*mx, updateState(i1.get(), velia::health::State::OK)).IN_SEQUENCE(seq1); |
Tomáš Pecka | 7443425 | 2021-02-03 16:57:47 +0100 | [diff] [blame^] | 75 | server.changeUnitState("/org/freedesktop/systemd1/unit/unit4", "active", "running"); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 76 | |
| 77 | waitForCompletionAndBitMore(seq1); |
| 78 | |
| 79 | REQUIRE_CALL(*mx, unregisterInput(i1.get())).IN_SEQUENCE(seq1); |
| 80 | i1.reset(); |
| 81 | } |
| 82 | |
| 83 | #if 0 |
| 84 | // Runs a StateManager with DbusSystemdInput connected to the development machine's systemd. Might be useful for debugging. |
| 85 | TEST_CASE("This machine's systemd monitor") |
| 86 | { |
| 87 | TEST_INIT_LOGS; |
| 88 | |
| 89 | auto clientConnection = sdbus::createSystemBusConnection(); |
| 90 | |
Tomáš Pecka | 261c886 | 2020-11-05 11:23:08 +0100 | [diff] [blame] | 91 | auto mx = std::make_shared<velia::health::StateManager>(); |
Tomáš Pecka | ccd80c3 | 2020-06-22 14:44:32 +0200 | [diff] [blame] | 92 | auto i1 = std::make_shared<velia::DbusSystemdInput>(mx, *clientConnection); |
| 93 | |
| 94 | clientConnection->enterEventLoop(); |
| 95 | } |
| 96 | #endif |