2017-05-24 20:16:27 -04:00
|
|
|
testconf = configuration_data()
|
|
|
|
testconf.set('MUTTER_TYPELIB_DIR', mutter_typelibdir)
|
|
|
|
testconf.set('srcdir', meson.current_source_dir())
|
2017-08-19 04:43:38 -04:00
|
|
|
run_test = configure_file(
|
2017-05-24 20:16:27 -04:00
|
|
|
input: 'run-test.sh.in',
|
|
|
|
output: 'run-test.sh',
|
|
|
|
configuration: testconf
|
|
|
|
)
|
2017-08-19 04:43:38 -04:00
|
|
|
|
2022-08-16 07:04:27 -04:00
|
|
|
mutter_tests_datadir = mutter_test_dep.get_variable('tests_datadir')
|
|
|
|
dbusrunnerconf = configuration_data()
|
|
|
|
dbusrunnerconf.set('MUTTER_TEST_PKGDATADIR', mutter_tests_datadir)
|
|
|
|
dbusrunnerconf.set('SRCDIR', meson.current_source_dir())
|
|
|
|
|
|
|
|
dbus_runner = configure_file(
|
|
|
|
input: 'gnome-shell-dbus-runner.py.in',
|
|
|
|
output: 'gnome-shell-dbus-runner.py',
|
|
|
|
configuration: dbusrunnerconf,
|
|
|
|
)
|
|
|
|
|
2021-11-16 21:05:05 -05:00
|
|
|
tests = [
|
|
|
|
'highlighter',
|
|
|
|
'insertSorted',
|
|
|
|
'jsParse',
|
|
|
|
'markup',
|
|
|
|
'params',
|
signalTracker: Provide monkey-patching for (dis)connectObject()
The module exports a `addObjectSignalMethods()` method that extends
the provided prototype with `connectObject()` and `disconnectObject()`
methods.
In its simplest form, `connectObject()` looks like the regular
`connect()` method, except for an additional parameter:
```js
this._button.connectObject('clicked',
() => this._onButtonClicked(), this);
```
The additional object can be used to disconnect all handlers on the
instance that were connected with that object, similar to
`g_signal_handlers_disconnect_by_data()` (which cannot be used
from introspection).
For objects that are subclasses of Clutter.Actor, that will happen
automatically when the actor is destroyed, similar to
`g_signal_connect_object()`.
Finally, `connectObject()` allows to conveniently connect multiple
signals at once, similar to `g_object_connect()`:
```js
this._toggleButton.connect(
'clicked', () => this._onClicked(),
'notify::checked', () => this._onChecked(), this);
```
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1953>
2021-08-15 18:01:40 -04:00
|
|
|
'signalTracker',
|
2021-11-16 21:05:05 -05:00
|
|
|
'url',
|
|
|
|
'versionCompare',
|
|
|
|
]
|
|
|
|
|
|
|
|
foreach test : tests
|
2017-08-19 04:43:38 -04:00
|
|
|
test(test, run_test,
|
|
|
|
args: 'unit/@0@.js'.format(test),
|
|
|
|
workdir: meson.current_source_dir())
|
|
|
|
endforeach
|
2022-08-17 10:43:13 -04:00
|
|
|
|
|
|
|
perf_tests = [
|
2023-02-02 10:28:06 -05:00
|
|
|
{
|
|
|
|
'name': 'basic',
|
|
|
|
},
|
2023-03-24 05:22:41 -04:00
|
|
|
{
|
|
|
|
'name': 'closeWithActiveWindows',
|
|
|
|
},
|
2023-02-02 10:28:06 -05:00
|
|
|
{
|
|
|
|
'name': 'headlessStart',
|
|
|
|
'options': ['--hotplug'],
|
|
|
|
},
|
2022-08-17 10:43:13 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
gvc_typelib_path = fs.parent(libgvc.get_variable('libgvc_gir')[1].full_path())
|
|
|
|
libgvc_path = fs.parent(libgvc.get_variable('libgvc').full_path())
|
|
|
|
|
2022-09-02 18:15:51 -04:00
|
|
|
background_file = files(join_paths('data', 'background.png'))
|
|
|
|
|
2023-02-23 22:32:08 -05:00
|
|
|
perf_testenv = environment()
|
2022-11-24 10:29:39 -05:00
|
|
|
perf_testenv.set('G_DEBUG', 'fatal-warnings')
|
2022-08-17 10:43:13 -04:00
|
|
|
perf_testenv.set('G_MESSAGES_DEBUG', 'GNOME Shell')
|
|
|
|
perf_testenv.set('GNOME_SHELL_DATADIR', data_builddir)
|
|
|
|
perf_testenv.set('GNOME_SHELL_BUILDDIR', src_builddir)
|
2023-02-23 22:32:51 -05:00
|
|
|
perf_testenv.set('GNOME_SHELL_SESSION_MODE', 'user')
|
2022-09-02 18:15:51 -04:00
|
|
|
perf_testenv.set('SHELL_BACKGROUND_IMAGE', '@0@'.format(background_file))
|
2022-08-17 10:43:13 -04:00
|
|
|
perf_testenv.append('GI_TYPELIB_PATH', gvc_typelib_path, separator: ':')
|
|
|
|
perf_testenv.append('LD_LIBRARY_PATH', libgvc_path, separator: ':')
|
|
|
|
|
|
|
|
foreach perf_test : perf_tests
|
2023-02-02 10:28:06 -05:00
|
|
|
test_name = perf_test['name']
|
|
|
|
options = perf_test.get('options', [])
|
|
|
|
|
|
|
|
test('perf-' + test_name, dbus_runner,
|
2022-08-17 10:43:13 -04:00
|
|
|
args: [
|
|
|
|
perf_tool,
|
|
|
|
'--headless',
|
2023-02-02 10:28:06 -05:00
|
|
|
'--perf=@0@'.format(test_name),
|
|
|
|
options,
|
2022-08-17 10:43:13 -04:00
|
|
|
],
|
2023-02-02 10:50:13 -05:00
|
|
|
is_parallel: false,
|
2022-08-17 10:43:13 -04:00
|
|
|
env: perf_testenv,
|
|
|
|
)
|
|
|
|
endforeach
|