mirror of
https://gitlab.freedesktop.org/wayland/weston.git
synced 2026-02-04 07:10:28 +01:00
The protocol requires clients to perform an initial commit before they receive configure events: > After creating a role-specific object and setting it up (e.g. by sending > the title, app ID, size constraints, parent, etc), the client must > perform an initial commit without any buffer attached. The compositor > will reply with initial wl_surface state such as > wl_surface.preferred_buffer_scale followed by an xdg_surface.configure > event. The client must acknowledge it and is then allowed to attach a > buffer to map the surface. Previous to this patch various calls such as set_fullscreen() or set_maximized() would schedule configure events, resulting in clients being able skip the initial commit. This again made it possible to write clients that only work on Weston, in violation of the protocol. For xdg-popups we already tracked the initial commit status. Move it to xdg-surface, guard schedule_configure() on it and ensure to run the later on the initial commit. Incorporate tests that checks if we get configure events when calling set_fullscreen/set_maximized and tests that uses the main xdg_surface as a parent to a sub-surface (which initially triggered this issue). Signed-off-by: Robert Mader <robert.mader@collabora.com>
515 lines
12 KiB
Meson
515 lines
12 KiB
Meson
plugin_test_shell_desktop = shared_library(
|
|
'weston-test-desktop-shell',
|
|
'weston-test-desktop-shell.c',
|
|
include_directories: common_inc,
|
|
dependencies: [ dep_libweston_public, dep_libexec_weston ],
|
|
name_prefix: '',
|
|
install: false
|
|
)
|
|
env_modmap += 'weston-test-desktop-shell.so=@0@;'.format(plugin_test_shell_desktop.full_path())
|
|
|
|
lib_test_runner = static_library(
|
|
'test-runner',
|
|
'weston-test-runner.c',
|
|
dependencies: [
|
|
dep_libweston_private_h_deps,
|
|
dep_wayland_client,
|
|
dep_libdl,
|
|
dep_threads,
|
|
],
|
|
include_directories: common_inc,
|
|
install: false,
|
|
)
|
|
dep_test_runner = declare_dependency(
|
|
dependencies: dep_wayland_client,
|
|
link_with: lib_test_runner
|
|
)
|
|
|
|
lib_test_client = static_library(
|
|
'test-client',
|
|
[
|
|
'weston-test-client-helper.c',
|
|
'weston-test-fixture-compositor.c',
|
|
'xdg-client-helper.c',
|
|
color_representation_v1_client_protocol_h,
|
|
color_representation_v1_protocol_c,
|
|
commit_timing_v1_client_protocol_h,
|
|
commit_timing_v1_protocol_c,
|
|
fifo_v1_client_protocol_h,
|
|
fifo_v1_protocol_c,
|
|
presentation_time_client_protocol_h,
|
|
presentation_time_protocol_c,
|
|
single_pixel_buffer_v1_client_protocol_h,
|
|
single_pixel_buffer_v1_protocol_c,
|
|
weston_test_client_protocol_h,
|
|
weston_test_protocol_c,
|
|
weston_output_capture_client_protocol_h,
|
|
weston_output_capture_protocol_c,
|
|
viewporter_client_protocol_h,
|
|
viewporter_protocol_c,
|
|
xdg_shell_client_protocol_h,
|
|
xdg_shell_protocol_c,
|
|
'color_util.h',
|
|
'color_util.c',
|
|
],
|
|
include_directories: common_inc,
|
|
dependencies: [
|
|
dep_client_buffer,
|
|
dep_libshared,
|
|
dep_wayland_client,
|
|
dep_libexec_weston,
|
|
dep_libweston_private,
|
|
dep_libdrm_headers,
|
|
dep_pixman,
|
|
dep_threads,
|
|
dependency('cairo'),
|
|
],
|
|
install: false,
|
|
)
|
|
dep_test_client = declare_dependency(
|
|
link_with: lib_test_client,
|
|
sources: [
|
|
viewporter_client_protocol_h,
|
|
],
|
|
dependencies: [
|
|
dep_wayland_client,
|
|
dep_test_runner,
|
|
dep_pixman,
|
|
dep_libdrm_headers,
|
|
dep_threads,
|
|
dependency('libudev', version: '>= 136'),
|
|
]
|
|
)
|
|
|
|
lib_lcms_util = static_library(
|
|
'lib_lcms_util',
|
|
[ 'lcms_util.c' ],
|
|
include_directories: common_inc,
|
|
dependencies: [
|
|
dep_lcms2, dep_libm, dep_wayland_server, dep_pixman
|
|
],
|
|
build_by_default: false,
|
|
install: false,
|
|
)
|
|
dep_lcms_util = declare_dependency(
|
|
link_with: lib_lcms_util,
|
|
dependencies: [ dep_lcms2 ]
|
|
)
|
|
|
|
exe_plugin_test = shared_library(
|
|
'test-plugin',
|
|
'weston-test.c',
|
|
weston_test_server_protocol_h,
|
|
weston_test_protocol_c,
|
|
include_directories: common_inc,
|
|
dependencies: [
|
|
dep_libexec_weston,
|
|
dep_libweston_private,
|
|
dep_threads
|
|
],
|
|
name_prefix: '',
|
|
install: false,
|
|
)
|
|
|
|
tests = [
|
|
{
|
|
'name': 'alpha-blending',
|
|
'dep_objs': dep_libm,
|
|
},
|
|
{ 'name': 'assert', },
|
|
{ 'name': 'bad-buffer', },
|
|
{ 'name': 'buffer-transforms', },
|
|
{
|
|
'name': 'client-buffer',
|
|
'dep_objs': [
|
|
dep_libdrm_headers,
|
|
dep_libm,
|
|
],
|
|
},
|
|
{
|
|
'name': 'color-math',
|
|
'dep_objs': dep_libm,
|
|
},
|
|
{ 'name': 'color-effects', },
|
|
{
|
|
'name': 'color-metadata-errors',
|
|
'dep_objs': dep_libexec_weston,
|
|
},
|
|
{
|
|
'name': 'color-output-parsing',
|
|
'dep_objs': [
|
|
dep_libexec_weston,
|
|
dep_libdisplay_info,
|
|
],
|
|
},
|
|
{ 'name': 'color-representation-drm',
|
|
'sources': [
|
|
'color-representation-common.c',
|
|
'color-representation-common.h',
|
|
'color-representation-drm-test.c',
|
|
],
|
|
'run_exclusive': true
|
|
},
|
|
{ 'name': 'color-representation-renderer',
|
|
'sources': [
|
|
'color-representation-common.c',
|
|
'color-representation-common.h',
|
|
'color-representation-renderer-test.c',
|
|
],
|
|
},
|
|
{ 'name': 'color-representation-protocol', },
|
|
{ 'name': 'commit-timing', },
|
|
{ 'name': 'config-parser', },
|
|
{
|
|
'name': 'constraints',
|
|
'sources': [
|
|
'constraints-test.c',
|
|
pointer_constraints_unstable_v1_protocol_c,
|
|
],
|
|
},
|
|
{ 'name': 'custom-env', },
|
|
{ 'name': 'devices', },
|
|
{
|
|
'name': 'drm-formats',
|
|
'dep_objs': dep_libdrm_headers,
|
|
},
|
|
{ 'name': 'drm-offload', 'run_exclusive': true },
|
|
{ 'name': 'drm-smoke', 'run_exclusive': true },
|
|
{ 'name': 'drm-writeback-screenshot', 'run_exclusive': true },
|
|
{ 'name': 'event', },
|
|
{ 'name': 'fifo', },
|
|
{ 'name': 'idalloc', },
|
|
{
|
|
'name': 'keyboard',
|
|
'sources': [
|
|
'keyboard-test.c',
|
|
'input-timestamps-helper.c',
|
|
input_timestamps_unstable_v1_client_protocol_h,
|
|
input_timestamps_unstable_v1_protocol_c,
|
|
],
|
|
},
|
|
{
|
|
'name': 'linalg',
|
|
'dep_objs': [ dep_libm ]
|
|
},
|
|
{
|
|
'name': 'linux-explicit-synchronization',
|
|
'sources': [
|
|
'linux-explicit-synchronization-test.c',
|
|
linux_explicit_synchronization_unstable_v1_client_protocol_h,
|
|
linux_explicit_synchronization_unstable_v1_protocol_c,
|
|
],
|
|
},
|
|
{
|
|
'name': 'matrix',
|
|
'dep_objs': [ dep_libm ]
|
|
},
|
|
{
|
|
'name': 'matrix-transform',
|
|
'dep_objs': dep_libm,
|
|
},
|
|
{
|
|
'name': 'output-capture-protocol',
|
|
'sources': [
|
|
'output-capture-protocol-test.c',
|
|
weston_output_capture_protocol_c,
|
|
weston_output_capture_client_protocol_h,
|
|
],
|
|
'dep_objs': [ dep_libdrm_headers ],
|
|
},
|
|
{ 'name': 'output-damage', },
|
|
{ 'name': 'output-decorations', },
|
|
{ 'name': 'output-transforms', },
|
|
{ 'name': 'plugin-registry', },
|
|
{ 'name': 'paint-node', },
|
|
{
|
|
'name': 'pointer',
|
|
'sources': [
|
|
'pointer-test.c',
|
|
'input-timestamps-helper.c',
|
|
input_timestamps_unstable_v1_client_protocol_h,
|
|
input_timestamps_unstable_v1_protocol_c,
|
|
],
|
|
},
|
|
{ 'name': 'pointer-shot', },
|
|
{ 'name': 'presentation', },
|
|
{
|
|
'name': 'roles',
|
|
'sources': [
|
|
'roles-test.c',
|
|
xdg_shell_client_protocol_h,
|
|
xdg_shell_protocol_c,
|
|
],
|
|
},
|
|
{ 'name': 'single-pixel-buffer', },
|
|
{ 'name': 'string', },
|
|
{ 'name': 'subsurface', },
|
|
{ 'name': 'subsurface-shot', },
|
|
{ 'name': 'surface', },
|
|
{ 'name': 'surface-global', },
|
|
{ 'name': 'timespec', },
|
|
{
|
|
'name': 'touch',
|
|
'sources': [
|
|
'touch-test.c',
|
|
'input-timestamps-helper.c',
|
|
input_timestamps_unstable_v1_client_protocol_h,
|
|
input_timestamps_unstable_v1_protocol_c,
|
|
],
|
|
},
|
|
{ 'name': 'viewporter', },
|
|
{ 'name': 'viewporter-shot', },
|
|
{ 'name': 'safe-signal', },
|
|
{ 'name': 'safe-signal-output-removal',
|
|
'sources': [
|
|
'safe-signal-output-removal-test.c',
|
|
],
|
|
'dep_objs': [ dep_libweston_public ]
|
|
},
|
|
{ 'name': 'iterate-debug-scopes',
|
|
'sources': [
|
|
'iterate-debug-scopes-test.c',
|
|
],
|
|
'dep_objs': [ dep_libweston_public ]
|
|
},
|
|
]
|
|
|
|
if get_option('renderer-gl')
|
|
tests += {
|
|
'name': 'vertex-clip',
|
|
'link_with': plugin_gl,
|
|
}
|
|
|
|
endif
|
|
|
|
if get_option('color-management-lcms')
|
|
if not dep_lcms2.found()
|
|
error('color-management-lcms tests require lcms2 which was not found. Or, you can use \'-Dcolor-management-lcms=false\'.')
|
|
endif
|
|
tests += [
|
|
{
|
|
'name': 'color-icc-output',
|
|
'dep_objs': [ dep_libm, dep_lcms_util ]
|
|
},
|
|
{
|
|
'name': 'color-lcms-optimizer',
|
|
'link_with': plugin_color_lcms,
|
|
'dep_objs': [ dep_lcms_util ]
|
|
},
|
|
{ 'name': 'color-management',
|
|
'sources': [
|
|
'color-management-test.c',
|
|
color_management_v1_client_protocol_h,
|
|
color_management_v1_protocol_c,
|
|
],
|
|
'dep_objs': [ dep_lcms_util ]
|
|
},
|
|
{ 'name': 'color-management-parametric',
|
|
'sources': [
|
|
'color-management-parametric-test.c',
|
|
color_management_v1_client_protocol_h,
|
|
color_management_v1_protocol_c,
|
|
],
|
|
},
|
|
{ 'name': 'color-metadata-parsing' },
|
|
{
|
|
'name': 'lcms-util',
|
|
'dep_objs': [ dep_lcms_util ]
|
|
},
|
|
]
|
|
endif
|
|
|
|
if get_option('xwayland')
|
|
xcb_dep = dependency('xcb', required: false)
|
|
xcb_cursor_dep = dependency('xcb-cursor', required: false)
|
|
|
|
if not xcb_dep.found() or not xcb_cursor_dep.found()
|
|
error('xcb and xcb-cursor required for running xwayland tests')
|
|
endif
|
|
|
|
libxwayland_test_client = static_library(
|
|
'test-xwayland-client',
|
|
[ 'xcb-client-helper.c', weston_test_client_protocol_h ],
|
|
include_directories: common_inc,
|
|
dependencies: [
|
|
dep_pixman, dep_xcb_xwayland,
|
|
xcb_dep, xcb_cursor_dep,
|
|
dep_wayland_client,
|
|
],
|
|
install: false,
|
|
)
|
|
|
|
dep_libxwayland_test = declare_dependency(
|
|
dependencies: [ xcb_dep, xcb_cursor_dep ],
|
|
link_with: libxwayland_test_client,
|
|
)
|
|
|
|
tests += [ {
|
|
'name': 'xwayland',
|
|
'dep_objs': dep_libxwayland_test,
|
|
} ]
|
|
endif
|
|
|
|
# Manual test plugin, not used in the automatic suite
|
|
surface_screenshot_test = shared_library(
|
|
'test-surface-screenshot',
|
|
'surface-screenshot-test.c',
|
|
include_directories: common_inc,
|
|
dependencies: [ dep_libweston_private, dep_libshared ],
|
|
name_prefix: '',
|
|
install: false,
|
|
)
|
|
|
|
if get_option('shell-desktop')
|
|
tests += [
|
|
{ 'name': 'internal-screenshot', },
|
|
{
|
|
'name': 'text',
|
|
'sources': [
|
|
'text-test.c',
|
|
text_input_unstable_v1_client_protocol_h,
|
|
text_input_unstable_v1_protocol_c,
|
|
],
|
|
},
|
|
{
|
|
'name': 'xdg-shell-initial-commit',
|
|
'sources': [
|
|
'xdg-shell-intial-commit.c',
|
|
xdg_shell_client_protocol_h,
|
|
xdg_shell_protocol_c,
|
|
],
|
|
},
|
|
]
|
|
endif
|
|
|
|
if get_option('shell-ivi')
|
|
ivi_layout_test_plugin = shared_library(
|
|
'test-ivi-layout',
|
|
[
|
|
'ivi-layout-test-plugin.c',
|
|
weston_test_server_protocol_h,
|
|
weston_test_protocol_c,
|
|
],
|
|
include_directories: common_inc,
|
|
dependencies: [ dep_libweston_private, dep_libexec_weston ],
|
|
name_prefix: '',
|
|
install: false,
|
|
)
|
|
env_modmap += 'test-ivi-layout.so=' + ivi_layout_test_plugin.full_path() + ';'
|
|
|
|
tests += [
|
|
{
|
|
'name': 'ivi-layout-client',
|
|
'sources': [
|
|
'ivi-layout-test-client.c',
|
|
ivi_application_client_protocol_h,
|
|
ivi_application_protocol_c,
|
|
],
|
|
'test_deps': [ ivi_layout_test_plugin ],
|
|
},
|
|
{ 'name': 'ivi-layout-internal', },
|
|
{
|
|
'name': 'ivi-shell-app',
|
|
'sources': [
|
|
'ivi-shell-app-test.c',
|
|
ivi_application_client_protocol_h,
|
|
ivi_application_protocol_c,
|
|
],
|
|
},
|
|
]
|
|
endif
|
|
|
|
if get_option('shell-kiosk')
|
|
tests += [
|
|
{
|
|
'name': 'kiosk-shell',
|
|
'sources': [
|
|
'kiosk-shell-test.c',
|
|
xdg_shell_client_protocol_h,
|
|
xdg_shell_protocol_c,
|
|
],
|
|
},
|
|
]
|
|
endif
|
|
|
|
if get_option('shell-lua')
|
|
tests += [
|
|
{
|
|
'name': 'lua-shell',
|
|
'sources': [
|
|
'lua-shell-test.c',
|
|
xdg_shell_client_protocol_h,
|
|
xdg_shell_protocol_c,
|
|
],
|
|
},
|
|
]
|
|
endif
|
|
|
|
test_config_h = configuration_data()
|
|
test_config_h.set_quoted('WESTON_TEST_REFERENCE_PATH', meson.current_source_dir() + '/reference')
|
|
test_config_h.set_quoted('WESTON_MODULE_MAP', env_modmap)
|
|
test_config_h.set_quoted('WESTON_DATA_DIR', join_paths(meson.current_source_dir(), '..', 'data'))
|
|
test_config_h.set_quoted('WESTON_LUA_SHELL_DIR', join_paths(meson.current_source_dir(), '..', 'lua-shell'))
|
|
test_config_h.set_quoted('TESTSUITE_PLUGIN_PATH', exe_plugin_test.full_path())
|
|
test_config_h.set10('WESTON_TEST_SKIP_IS_FAILURE', get_option('test-skip-is-failure'))
|
|
configure_file(output: 'test-config.h', configuration: test_config_h)
|
|
|
|
test_env = {}
|
|
|
|
# there are some leaks in fontconfig we can't fix;
|
|
# use_tls=0 is a workaround for LeakSanitizer crashing after successful
|
|
# program exit when it scans for leaks. Due to use_tls=0 even more
|
|
# suppressions had to be added.
|
|
# TODO XXX: Try to revert the addition of use_tls=0 when our CI image
|
|
# upgrades from Debian Trixie to something more recent.
|
|
if get_option('b_sanitize') in ['address', 'address,undefined' ]
|
|
test_env += { 'LSAN_OPTIONS': 'use_tls=0:suppressions=@0@'.format(dir_gitlab_ci / 'leak-sanitizer.supp') }
|
|
endif
|
|
|
|
foreach t : tests
|
|
t_name = 'test-' + t.get('name')
|
|
t_sources = t.get('sources', [t.get('name') + '-test.c'])
|
|
t_sources += weston_test_client_protocol_h
|
|
|
|
t_deps = [ dep_test_client, dep_libweston_private_h ]
|
|
t_deps += t.get('dep_objs', [])
|
|
|
|
run_exclusive = t.get('run_exclusive', false)
|
|
|
|
t_exe = executable(
|
|
t_name,
|
|
t_sources,
|
|
c_args: [
|
|
'-DTHIS_TEST_NAME="' + t_name + '"',
|
|
],
|
|
build_by_default: true,
|
|
include_directories: common_inc,
|
|
dependencies: t_deps,
|
|
link_with: t.get('link_with', []),
|
|
install: false,
|
|
)
|
|
|
|
test(
|
|
t.get('name'),
|
|
t_exe,
|
|
env: test_env,
|
|
depends: t.get('test_deps', []),
|
|
timeout: 120,
|
|
protocol: 'tap',
|
|
is_parallel: not run_exclusive
|
|
)
|
|
endforeach
|
|
|
|
if get_option('backend-drm')
|
|
executable(
|
|
'setbacklight',
|
|
'setbacklight.c',
|
|
dependencies: [
|
|
dep_backlight,
|
|
dep_libdrm,
|
|
dependency('libudev')
|
|
],
|
|
include_directories: common_inc,
|
|
install: false
|
|
)
|
|
endif
|