File: runner.cpp

package info (click to toggle)
mir 2.20.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,636 kB
  • sloc: cpp: 174,574; xml: 13,422; ansic: 8,221; python: 1,337; sh: 874; makefile: 216; javascript: 37
file content (166 lines) | stat: -rw-r--r-- 4,857 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
/*
 * Copyright © Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 or 3 as
 * published by the Free Software Foundation.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "miral/test_server.h"
#include "miral/x11_support.h"

#include "mir/test/pipe.h"
#include "mir/test/signal.h"

#include <gtest/gtest.h>
#include <gmock/gmock.h>

using namespace testing;

namespace mt = mir::test;

namespace
{
auto const a_long_time = std::chrono::seconds(1);
auto const a_short_time = std::chrono::milliseconds(250);

struct Runner : miral::TestServer
{
    void SetUp() override
    {
    }

    MOCK_METHOD(void, callback, ());

    int const signum{SIGUSR1};
    mt::Pipe pipe;
    char const data_to_write = 'a';
};
}

TEST_F(Runner, stop_callback_is_called)
{
    add_stop_callback([this] { callback(); });
    miral::TestServer::SetUp();
    EXPECT_CALL(*this, callback());
}

TEST_F(Runner, start_callback_is_called)
{
    auto signal = std::make_shared<mt::Signal>();

    add_start_callback([this] { callback(); });
    EXPECT_CALL(*this, callback())
        .WillOnce(InvokeWithoutArgs([signal] { signal->raise(); }));

    miral::TestServer::SetUp();

    signal->wait_for(a_long_time);
    testing::Mock::VerifyAndClearExpectations(this);
}

TEST_F(Runner, wayland_socket_is_returned_by_default)
{
    miral::TestServer::SetUp();

    miral::TestServer::invoke_runner([](auto& runner){ EXPECT_TRUE(runner.wayland_display().is_set()); });
}

TEST_F(Runner, x11_socket_is_not_returned_by_default)
{
    miral::TestServer::SetUp();

    miral::TestServer::invoke_runner([](auto& runner){ EXPECT_FALSE(runner.x11_display().is_set()); });
}

TEST_F(Runner, register_signal_handler_before_setup_invokes_callback_after_setup)
{
    auto signal = std::make_shared<mt::Signal>();

    // Storing this in a variable fixes an address sanitizer issue
    std::initializer_list<int> sigs = {signum};
    register_signal_handler(sigs, [signal](int){ signal->raise(); });

    miral::TestServer::SetUp();

    kill(getpid(), signum);
    EXPECT_TRUE(signal->wait_for(a_long_time));
}

TEST_F(Runner, register_signal_handler_after_setup_invokes_callback_when_signal_raised)
{
    auto signal = std::make_shared<mt::Signal>();
    miral::TestServer::SetUp();

    register_signal_handler({signum}, [signal](int){ signal->raise(); });

    kill(getpid(), signum);
    EXPECT_TRUE(signal->wait_for(a_long_time));
}

TEST_F(Runner, register_signal_handler_does_not_invoke_callback_if_signal_not_raised)
{
    auto signal = std::make_shared<mt::Signal>();
    miral::TestServer::SetUp();

    register_signal_handler({signum}, [signal](int){ signal->raise(); });

    EXPECT_FALSE(signal->wait_for(a_long_time));
}

TEST_F(Runner, register_fd_handler_before_setup_invokes_callback_after_setup)
{
    auto signal = std::make_shared<mt::Signal>();
    auto const handle = register_fd_handler(pipe.read_fd(), [signal](int){ signal->raise(); });

    miral::TestServer::SetUp();

    EXPECT_THAT(write(pipe.write_fd(), &data_to_write, sizeof(data_to_write)), Gt(0));
    EXPECT_TRUE(signal->wait_for(a_long_time));
}

TEST_F(Runner, register_fd_handler_after_setup_invokes_callback_when_fd_written_to)
{
    auto signal = std::make_shared<mt::Signal>();
    miral::TestServer::SetUp();

    auto const handle = register_fd_handler(pipe.read_fd(), [signal](int){ signal->raise(); });

    EXPECT_THAT(write(pipe.write_fd(), &data_to_write, sizeof(data_to_write)), Gt(0));
    EXPECT_TRUE(signal->wait_for(a_short_time));
}

TEST_F(Runner, register_fd_handler_does_not_invoke_callback_when_fd_not_written_to)
{
    auto signal = std::make_shared<mt::Signal>();
    miral::TestServer::SetUp();

    auto const handle = register_fd_handler(pipe.read_fd(), [signal](int){ signal->raise(); });

    EXPECT_FALSE(signal->wait_for(a_short_time));
}

// We can't spin up the X11 subsystem during LP builds. We would get:
// "Mir fatal error: Failed to bind socket /tmp/.X11-unix/X666"
//TEST_F(Runner, x11_socket_is_returned_if_configured)
//{
//    miral::X11Support x11support;
//    add_server_init(x11support);
//    add_to_environment("MIR_SERVER_x11_DISPLAY_EXPERIMENTAL", "666");
//
//    miral::TestServer::SetUp();
//
//    miral::TestServer::invoke_runner([](auto& runner)
//    {
//        EXPECT_TRUE(runner.x11_display().is_set());
//        EXPECT_THAT(runner.x11_display().value(), Eq(":666"));
//    });
//}