From ad1a4102fec4702be7b5cc0c888ade5b6cbf84ec Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Mon, 11 Nov 2019 16:28:28 +0200 Subject: [PATCH] tests: migrate ivi-layout-internal Moving to the new harness. It would be possible to convert every case here into a separate PLUGIN_TEST, but I did not see the value in that at this time. Signed-off-by: Pekka Paalanen --- tests/ivi-layout-internal-test.c | 45 ++++++++++++++++---------------- tests/meson.build | 4 +-- 2 files changed, 24 insertions(+), 25 deletions(-) diff --git a/tests/ivi-layout-internal-test.c b/tests/ivi-layout-internal-test.c index 9a552681..8f2d6be8 100644 --- a/tests/ivi-layout-internal-test.c +++ b/tests/ivi-layout-internal-test.c @@ -38,6 +38,20 @@ #include "ivi-shell/ivi-layout-private.h" #include "ivi-test.h" #include "shared/helpers.h" +#include "weston-test-runner.h" +#include "weston-test-fixture-compositor.h" + +static enum test_result_code +fixture_setup(struct weston_test_harness *harness) +{ + struct compositor_setup setup; + + compositor_setup_defaults(&setup); + setup.shell = SHELL_IVI; + + return weston_test_harness_execute_as_plugin(harness, &setup); +} +DECLARE_FIXTURE_SETUP(fixture_setup); struct test_context { struct weston_compositor *compositor; @@ -942,10 +956,8 @@ test_surface_bad_remove_notification(struct test_context *ctx) /************************ tests end ********************************/ static void -run_internal_tests(void *data) +run_internal_tests(struct test_context *ctx) { - struct test_context *ctx = data; - test_surface_bad_visibility(ctx); test_surface_bad_destination_rectangle(ctx); test_surface_bad_source_rectangle(ctx); @@ -987,35 +999,24 @@ run_internal_tests(void *data) test_surface_bad_create_notification(ctx); test_layer_bad_remove_notification(ctx); test_surface_bad_remove_notification(ctx); - - weston_compositor_exit_with_code(ctx->compositor, EXIT_SUCCESS); - free(ctx); } -WL_EXPORT int -wet_module_init(struct weston_compositor *compositor, - int *argc, char *argv[]) +PLUGIN_TEST(ivi_layout_internal) { - struct wl_event_loop *loop; - struct test_context *ctx; + /* struct weston_compositor *compositor; */ + struct test_context ctx = {}; const struct ivi_layout_interface *iface; iface = ivi_layout_get_api(compositor); if (!iface) { weston_log("fatal: cannot use ivi_layout_interface.\n"); - return -1; + weston_compositor_exit_with_code(compositor, RESULT_HARD_ERROR); + return; } - ctx = zalloc(sizeof(*ctx)); - if (!ctx) - return -1; + ctx.compositor = compositor; + ctx.layout_interface = iface; - ctx->compositor = compositor; - ctx->layout_interface = iface; - - loop = wl_display_get_event_loop(compositor->wl_display); - wl_event_loop_add_idle(loop, run_internal_tests, ctx); - - return 0; + run_internal_tests(&ctx); } diff --git a/tests/meson.build b/tests/meson.build index b3f8ef26..371286fc 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -218,9 +218,6 @@ if get_option('shell-ivi') ] ] ] - tests_weston_plugin += [ - ['ivi-layout-internal'], - ] ivi_layout_test_plugin = shared_library( 'test-ivi-layout', @@ -246,6 +243,7 @@ if get_option('shell-ivi') ], 'test_deps': [ ivi_layout_test_plugin ], }, + { 'name': 'ivi-layout-internal', }, ] endif