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
|
/*
* 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 "expect_protocol_error.h"
#include "generated/fractional-scale-v1-client.h"
#include "in_process_server.h"
#include "version_specifier.h"
using namespace wlcs;
using testing::Eq;
namespace wlcs {
WLCS_CREATE_INTERFACE_DESCRIPTOR(wp_fractional_scale_manager_v1)
WLCS_CREATE_INTERFACE_DESCRIPTOR(wp_fractional_scale_v1)
}
class FractionalScaleV1Test : public wlcs::StartedInProcessServer
{
public:
Client a_client{the_server()};
Surface a_surface{a_client};
WlHandle<wp_fractional_scale_manager_v1> fractional_scale_manager{
a_client.bind_if_supported<wp_fractional_scale_manager_v1>(AnyVersion)};
};
TEST_F(FractionalScaleV1Test, fractional_scale_creation_does_not_throw)
{
auto fractional_scale =
wrap_wl_object(wp_fractional_scale_manager_v1_get_fractional_scale(fractional_scale_manager, a_surface));
EXPECT_NO_THROW(a_client.roundtrip());
}
TEST_F(FractionalScaleV1Test, duplicate_fractional_scales_throw_fractional_scale_exists)
{
auto fractional_scale1 =
wrap_wl_object(wp_fractional_scale_manager_v1_get_fractional_scale(fractional_scale_manager, a_surface));
auto fractional_scale2 =
wrap_wl_object(wp_fractional_scale_manager_v1_get_fractional_scale(fractional_scale_manager, a_surface));
EXPECT_PROTOCOL_ERROR(
{ a_client.roundtrip(); },
&wp_fractional_scale_manager_v1_interface,
WP_FRACTIONAL_SCALE_MANAGER_V1_ERROR_FRACTIONAL_SCALE_EXISTS);
}
|