mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-29 19:50:40 +00:00
tests: Add a gst-tester utility
gst-tester is a tool to launch `.validatetest` files with TAP[0] compatible output and supporting missing `gst-validate` application which means that it can be cleanly integrated with meson test harness. It allows us to use `gst-validate` to write integration tests in any GStreamer repository keeping them as close as possible to the code. It can simplify a lot test writing and reading and not having to go into another repository to implement or run tests makes it more convenient to use. This also implements a stupid simple test to show how that works [0] https://testanything.org/ Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/461>
This commit is contained in:
parent
618c37fca4
commit
34916e133d
5 changed files with 273 additions and 0 deletions
|
@ -2,6 +2,7 @@ if not get_option('benchmarks').disabled()
|
|||
subdir('benchmarks')
|
||||
endif
|
||||
if not get_option('tests').disabled() and gst_check_dep.found()
|
||||
subdir('validate')
|
||||
subdir('check')
|
||||
endif
|
||||
if not get_option('examples').disabled()
|
||||
|
|
216
tests/validate/gst-tester.c
Normal file
216
tests/validate/gst-tester.c
Normal file
|
@ -0,0 +1,216 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2020 Igalia, S.L.
|
||||
* Author: Thibault Saunier <tsaunier@igalia.com>
|
||||
|
||||
* gst-tester.c: tool to launch `.validatetest` files with
|
||||
* TAP compatible output and supporting missing `gst-validate`
|
||||
* application.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <gio/gio.h>
|
||||
|
||||
#ifdef HAVE_UNISTD_H
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef G_OS_UNIX
|
||||
#include <glib-unix.h>
|
||||
#include <sys/wait.h>
|
||||
#elif defined (G_OS_WIN32)
|
||||
#include <windows.h>
|
||||
#include <io.h>
|
||||
#ifndef STDOUT_FILENO
|
||||
#define STDOUT_FILENO 1
|
||||
#endif
|
||||
#define isatty _isatty
|
||||
#endif
|
||||
|
||||
#if defined (G_OS_WIN32)
|
||||
#define VALIDATE_NAME "gst-validate-" GST_API_VERSION ".exe"
|
||||
#else
|
||||
#define VALIDATE_NAME "gst-validate-" GST_API_VERSION
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
const gchar *testname;
|
||||
|
||||
GSubprocess *subproc;
|
||||
GMainLoop *ml;
|
||||
#if defined(G_OS_UNIX)
|
||||
guint signal_watch_intr_id;
|
||||
#endif
|
||||
gint exitcode;
|
||||
} Application;
|
||||
|
||||
#if defined(G_OS_UNIX)
|
||||
/* As the interrupt handler is dispatched from GMainContext as a GSourceFunc
|
||||
* handler, we can react to this by posting a message. */
|
||||
static gboolean
|
||||
intr_handler (gpointer user_data)
|
||||
{
|
||||
Application *app = user_data;
|
||||
|
||||
g_print ("Bail out! Got interupted.\n");
|
||||
|
||||
g_subprocess_force_exit (app->subproc);
|
||||
|
||||
/* remove signal handler */
|
||||
app->signal_watch_intr_id = 0;
|
||||
return G_SOURCE_REMOVE;
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
_run_app (Application * app)
|
||||
{
|
||||
GError *err = NULL;
|
||||
gboolean bailed_out = FALSE, skipped = FALSE;
|
||||
gchar *_stdout = NULL;
|
||||
gboolean is_tty = isatty (STDOUT_FILENO);
|
||||
|
||||
g_print ("1..1\n");
|
||||
g_subprocess_communicate_utf8 (app->subproc, NULL, NULL,
|
||||
is_tty ? NULL : &_stdout, NULL, &err);
|
||||
if (_stdout) {
|
||||
gchar *c;
|
||||
GString *output = g_string_new (NULL);
|
||||
|
||||
for (c = _stdout; *c != '\0'; c++) {
|
||||
g_string_append_c (output, *c);
|
||||
if (!bailed_out && !skipped && *c == '\n' && *(c + 1) != '\0') {
|
||||
if (strstr ((c + 1), "Bail out!") == c + 1) {
|
||||
bailed_out = TRUE;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (strstr ((c + 1), "ok") == c + 1 && strstr ((c + 1), "# SKIP")) {
|
||||
skipped = TRUE;
|
||||
app->exitcode = 0;
|
||||
continue;
|
||||
}
|
||||
|
||||
g_string_append (output, "# ");
|
||||
}
|
||||
}
|
||||
g_print ("# %s\n", output->str);
|
||||
g_string_free (output, TRUE);
|
||||
g_free (_stdout);
|
||||
}
|
||||
#ifdef G_OS_UNIX
|
||||
if (app->signal_watch_intr_id > 0)
|
||||
g_source_remove (app->signal_watch_intr_id);
|
||||
#endif
|
||||
|
||||
if (g_subprocess_get_if_signaled (app->subproc))
|
||||
app->exitcode = g_subprocess_get_term_sig (app->subproc);
|
||||
else
|
||||
app->exitcode = g_subprocess_get_exit_status (app->subproc);
|
||||
g_object_unref (app->subproc);
|
||||
|
||||
if (skipped || bailed_out)
|
||||
goto done;
|
||||
|
||||
if (app->exitcode == 0) {
|
||||
g_print ("ok 1 %s\n", app->testname);
|
||||
} else if (app->exitcode == 18) {
|
||||
g_print ("not ok 1 %s # Got a critical report\n", app->testname);
|
||||
} else {
|
||||
g_print ("not ok 1 %s # Unknown reason\n", app->testname);
|
||||
}
|
||||
|
||||
done:
|
||||
g_main_loop_quit (app->ml);
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, gchar ** argv)
|
||||
{
|
||||
Application app = { 0, };
|
||||
gchar *dirname;
|
||||
GFile *f;
|
||||
gchar **args = g_new0 (gchar *, argc + 2);
|
||||
gint i;
|
||||
GError *err = NULL;
|
||||
gboolean is_tty = isatty (STDOUT_FILENO);
|
||||
|
||||
if (argc < 2) {
|
||||
g_print ("1..0\nnot ok # Missing <testfile> argument\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
app.testname = argv[1];
|
||||
|
||||
dirname = g_path_get_dirname (argv[0]);
|
||||
f = g_file_new_build_filename ("subprojects", "gst-devtools",
|
||||
"validate", "tools", VALIDATE_NAME, NULL);
|
||||
|
||||
if (g_file_query_exists (f, NULL)) {
|
||||
/* Try to find `gst-validate` as a meson subproject */
|
||||
g_free (args[0]);
|
||||
g_clear_error (&err);
|
||||
args[0] = g_file_get_path (f);
|
||||
g_print ("# Running from meson subproject %s\n", args[0]);
|
||||
}
|
||||
g_free (dirname);
|
||||
g_object_unref (f);
|
||||
|
||||
if (!args[0])
|
||||
args[0] = g_strdup (VALIDATE_NAME);
|
||||
args[1] = g_strdup ("--set-test-file");
|
||||
for (i = 1; i < argc; i++)
|
||||
args[i + 1] = g_strdup (argv[i]);
|
||||
|
||||
app.subproc = g_subprocess_newv ((const char *const *) args,
|
||||
is_tty ? G_SUBPROCESS_FLAGS_STDIN_INHERIT :
|
||||
G_SUBPROCESS_FLAGS_STDOUT_PIPE, &err);
|
||||
|
||||
if (!app.subproc) {
|
||||
g_printerr ("%s %s\n", args[0], err->message);
|
||||
if (g_error_matches (err, G_SPAWN_ERROR, G_SPAWN_ERROR_NOENT)) {
|
||||
g_print ("1..0 # Skipped: `" VALIDATE_NAME "` not available\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
g_print ("1..0\nnot ok # %s\n", err->message);
|
||||
return -1;
|
||||
}
|
||||
|
||||
app.ml = g_main_loop_new (NULL, TRUE);
|
||||
|
||||
#ifdef G_OS_UNIX
|
||||
app.signal_watch_intr_id =
|
||||
g_unix_signal_add (SIGINT, (GSourceFunc) intr_handler, &app);
|
||||
#endif
|
||||
|
||||
/* Running the subprocess in it own thread so that we can properly catch
|
||||
* interuptions in the main thread main loop */
|
||||
g_thread_new ("gst-tester-thread", (GThreadFunc) _run_app, &app);
|
||||
g_main_loop_run (app.ml);
|
||||
g_main_loop_unref (app.ml);
|
||||
g_strfreev (args);
|
||||
|
||||
return app.exitcode;
|
||||
}
|
31
tests/validate/meson.build
Normal file
31
tests/validate/meson.build
Normal file
|
@ -0,0 +1,31 @@
|
|||
gst_tester = executable('gst-tester-' + apiversion,
|
||||
'gst-tester.c',
|
||||
c_args : gst_c_args + ['-DBUILDDIR=' + meson.build_root()],
|
||||
include_directories : [configinc],
|
||||
install: true,
|
||||
dependencies : [gio_dep],
|
||||
)
|
||||
|
||||
tests = [
|
||||
'simplest',
|
||||
]
|
||||
|
||||
env = environment()
|
||||
env.set('GST_PLUGIN_PATH_1_0', meson.build_root())
|
||||
env.set('GST_PLUGIN_SYSTEM_PATH_1_0', '')
|
||||
env.set('GST_REGISTRY', '@0@/@1@.registry'.format(meson.current_build_dir(), 'validate'))
|
||||
env.set('GST_PLUGIN_SCANNER_1_0', gst_scanner_dir + '/gst-plugin-scanner')
|
||||
env.set('GST_PLUGIN_LOADING_WHITELIST', 'gstreamer')
|
||||
|
||||
foreach t: tests
|
||||
test_dir_name = t.split('/')
|
||||
test_name = 'validate'
|
||||
foreach c: test_dir_name
|
||||
test_name += '.' + c
|
||||
endforeach
|
||||
test_env = env
|
||||
test_env.set('GST_VALIDATE_LOGSDIR', join_paths(meson.current_build_dir(), test_name))
|
||||
test_file = join_paths(meson.current_source_dir(), t + '.validatetest')
|
||||
test(test_name, gst_tester, args: [test_file, '--use-fakesinks'],
|
||||
env: test_env, timeout : 3 * 60, protocol: 'tap')
|
||||
endforeach
|
17
tests/validate/simplest.validatetest
Normal file
17
tests/validate/simplest.validatetest
Normal file
|
@ -0,0 +1,17 @@
|
|||
meta,
|
||||
handles-states=true,
|
||||
ignore-eos=true,
|
||||
args = {
|
||||
"fakesrc num-buffers=5 ! fakesink sync=true name=sink",
|
||||
},
|
||||
configs = {
|
||||
"core, fail-on-missing-plugin=true",
|
||||
"$(validateflow), pad=sink:sink, buffers-checksum=true",
|
||||
}
|
||||
|
||||
play
|
||||
crank-clock, expected-elapsed-time=0.0
|
||||
crank-clock, repeat=5, expected-elapsed-time=0.0
|
||||
|
||||
stop, on-message=eos
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
event stream-start: GstEventStreamStart, flags=(GstStreamFlags)GST_STREAM_FLAG_NONE, group-id=(uint)1;
|
||||
event segment: format=BYTES, start=0, offset=0, stop=18446744073709551615, time=0, base=0, position=0
|
||||
buffer: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709, dts=0:00:00.000000000, pts=0:00:00.000000000, flags=discont
|
||||
buffer: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709, dts=0:00:00.000000000, pts=0:00:00.000000000
|
||||
buffer: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709, dts=0:00:00.000000000, pts=0:00:00.000000000
|
||||
buffer: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709, dts=0:00:00.000000000, pts=0:00:00.000000000
|
||||
buffer: checksum=da39a3ee5e6b4b0d3255bfef95601890afd80709, dts=0:00:00.000000000, pts=0:00:00.000000000
|
||||
event eos: (no structure)
|
Loading…
Reference in a new issue