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
|
/*
* 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 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 "test_window_manager_tools.h"
#include "mir/events/event_builders.h"
using namespace miral;
using namespace testing;
namespace mt = mir::test;
using mir::operator<<;
namespace
{
X const display_left{0};
Y const display_top{0};
Width const display_width{640};
Height const display_height{480};
Rectangle const display_area{{display_left, display_top},
{display_width, display_height}};
struct IgnoredRequests;
struct IgnoredRequestParam
{
std::string name;
std::function<Window(IgnoredRequests&)> window;
};
std::ostream& operator<<(std::ostream& ostream, IgnoredRequestParam const& param)
{
return ostream << param.name;
}
struct IgnoredRequests : mt::TestWindowManagerTools, WithParamInterface<IgnoredRequestParam>
{
Size const window_size{200, 200};
mir::shell::SurfaceSpecification simple_modification;
mir::EventUPtr event{
mir::events::make_pointer_event({}, std::chrono::nanoseconds{100}, {}, {}, {}, {}, {}, {}, {}, {}, {})};
MirInputEvent const* input_ev = mir_event_get_input_event(event.get());
void SetUp() override
{
simple_modification.state = mir_window_state_maximized;
notify_configuration_applied(create_fake_display_configuration({display_area}));
basic_window_manager.add_session(session);
}
auto create_window() -> Window
{
Window window;
mir::shell::SurfaceSpecification creation_parameters;
creation_parameters.type = mir_window_type_normal;
creation_parameters.set_size(window_size);
EXPECT_CALL(*window_manager_policy, advise_new_window(_))
.WillOnce(
Invoke(
[&window](WindowInfo const& window_info)
{ window = window_info.window(); }));
basic_window_manager.add_surface(session, creation_parameters, &create_surface);
basic_window_manager.select_active_window(window);
// Clear the expectations used to capture parent & child
Mock::VerifyAndClearExpectations(window_manager_policy);
return window;
}
auto create_destroyed_window() -> Window
{
auto const window = create_window();
basic_window_manager.remove_surface(session, window);
return window;
}
auto create_never_before_seen_window() -> Window
{
mir::shell::SurfaceSpecification creation_parameters;
creation_parameters.type = mir_window_type_normal;
creation_parameters.set_size(window_size);
return Window{session, create_surface(session, creation_parameters)};
}
auto create_null_window() const -> Window
{
return Window{session, nullptr};
}
};
}
TEST_P(IgnoredRequests, modify_unknown_surface_noops)
{
auto const window = GetParam().window(*this);
basic_window_manager.modify_surface(session, window, simple_modification);
}
TEST_P(IgnoredRequests, remove_unknown_surface_noops)
{
auto const window = GetParam().window(*this);
basic_window_manager.remove_surface(session, window);
}
TEST_P(IgnoredRequests, raise_unknown_surface_noops)
{
auto const window = GetParam().window(*this);
basic_window_manager.handle_raise_surface(session, window, 100);
}
TEST_P(IgnoredRequests, move_unknown_surface_noops)
{
auto const window = GetParam().window(*this);
basic_window_manager.handle_request_move(session, window, input_ev);
}
TEST_P(IgnoredRequests, resize_unknown_surface_noops)
{
auto const window = GetParam().window(*this);
basic_window_manager.handle_request_resize(session, window, input_ev, mir_resize_edge_southeast);
}
TEST_F(IgnoredRequests, remove_session_twice_noops)
{
basic_window_manager.remove_session(session);
basic_window_manager.remove_session(session);
}
INSTANTIATE_TEST_SUITE_P(UnknownWindow, IgnoredRequests, ::testing::Values(
IgnoredRequestParam{
"null window",
[](IgnoredRequests& test){ return test.create_null_window(); }},
IgnoredRequestParam{
"destroyed window",
[](IgnoredRequests& test){ return test.create_destroyed_window(); }},
IgnoredRequestParam{
"never before seen window",
[](IgnoredRequests& test){ return test.create_never_before_seen_window(); }}));
INSTANTIATE_TEST_SUITE_P(UnknownSession, IgnoredRequests, ::testing::Values(
IgnoredRequestParam{
"destroyed session",
[](IgnoredRequests& test)
{
Window const window = test.create_window();
test.basic_window_manager.remove_session(test.session);
return window;
}}));
|