| /* |
| * Copyright © 2018 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/>. |
| * |
| * Authored by: Alan Griffiths <alan@octopull.co.uk> |
| */ |
| |
| #include "data_device.h" |
| #include "helpers.h" |
| #include "in_process_server.h" |
| |
| #include <gmock/gmock.h> |
| |
| #include <memory> |
| |
| using namespace testing; |
| using namespace wlcs; |
| |
| namespace |
| { |
| struct StartedInProcessServer : InProcessServer |
| { |
| StartedInProcessServer() { InProcessServer::SetUp(); } |
| |
| void SetUp() override {} |
| }; |
| |
| struct SelfTest : StartedInProcessServer |
| { |
| Client client1{the_server()}; |
| }; |
| |
| auto static const any_width = 100; |
| auto static const any_height = 100; |
| } |
| |
| TEST_F(SelfTest, when_creating_second_client_nothing_bad_happens) |
| { |
| Client client2{the_server()}; |
| } |
| |
| TEST_F(SelfTest, given_second_client_when_roundtripping_first_client_nothing_bad_happens) |
| { |
| Client client2{the_server()}; |
| client1.roundtrip(); |
| } |
| |
| TEST_F(SelfTest, given_second_client_when_roundtripping_both_clients_nothing_bad_happens) |
| { |
| Client client2{the_server()}; |
| |
| for (auto i = 0; i != 10; ++i) |
| { |
| client1.roundtrip(); |
| client2.roundtrip(); |
| } |
| } |
| |
| TEST_F(SelfTest, when_a_client_creates_a_surface_nothing_bad_happens) |
| { |
| Surface const surface1{client1.create_visible_surface(any_width, any_height)}; |
| client1.roundtrip(); |
| } |
| |
| TEST_F(SelfTest, given_second_client_when_first_creates_a_surface_nothing_bad_happens) |
| { |
| Client client2{the_server()}; |
| |
| Surface const surface1{client1.create_visible_surface(any_width, any_height)}; |
| |
| for (auto i = 0; i != 10; ++i) |
| { |
| client1.roundtrip(); |
| client2.roundtrip(); |
| } |
| } |
| |
| TEST_F(SelfTest, given_second_client_when_both_create_a_surface_nothing_bad_happens) |
| { |
| Client client2{the_server()}; |
| |
| Surface const surface1{client1.create_visible_surface(any_width, any_height)}; |
| |
| Surface const surface2{client2.create_visible_surface(any_width, any_height)}; |
| |
| for (auto i = 0; i != 10; ++i) |
| { |
| client1.roundtrip(); |
| client2.roundtrip(); |
| } |
| } |
| |
| TEST_F(SelfTest, xfail_failure_is_noted) |
| { |
| ::testing::Test::RecordProperty("wlcs-skip-test", "Reason goes here"); |
| |
| FAIL() << "This message shouldn't be seen"; |
| } |
| |
| TEST_F(SelfTest, expected_missing_extension_is_xfail) |
| { |
| throw wlcs::ExtensionExpectedlyNotSupported("xdg_not_really_an_extension", 1); |
| } |
| |
| TEST_F(SelfTest, acquiring_unsupported_extension_is_xfail) |
| { |
| auto const extension_list = the_server().supported_extensions(); |
| |
| if (!extension_list) |
| { |
| ::testing::Test::RecordProperty("wlcs-skip-test", "Compositor Integration module is too old for expected extension failures"); |
| FAIL() << "Requires unsupported feature from module under test"; |
| } |
| |
| auto unsupported_extension = |
| std::string{"wlcs_non_existent_extension"} + extension_list->begin()->first; |
| |
| Client client{the_server()}; |
| |
| client.acquire_interface(unsupported_extension, &wl_buffer_interface, 1); |
| |
| FAIL() << "We should have (x)failed at acquiring the interface"; |
| } |
| |
| TEST_F(SelfTest, acquiring_unsupported_extension_version_is_xfail) |
| { |
| auto const extension_list = the_server().supported_extensions(); |
| |
| if (!extension_list) |
| { |
| ::testing::Test::RecordProperty("wlcs-skip-test", "Compositor Integration module is too old for expected extension failures"); |
| FAIL() << "Requires unsupported feature from module under test"; |
| } |
| |
| auto const unsupported_extension_version = extension_list->begin()->second + 1; |
| Client client{the_server()}; |
| |
| client.acquire_interface(extension_list->begin()->first, &wl_buffer_interface, unsupported_extension_version); |
| |
| FAIL() << "We should have (x)failed at acquiring the interface"; |
| } |