tests/icles/: Does what it says on the tin.
authorTim-Philipp Müller <tim@centricular.net>
Tue, 16 Oct 2007 14:58:53 +0000 (14:58 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 16 Oct 2007 14:58:53 +0000 (14:58 +0000)
Original commit message from CVS:
* tests/icles/.cvsignore:
* tests/icles/Makefile.am:
* tests/icles/stress-playbin.c:
Does what it says on the tin.

ChangeLog
tests/icles/.gitignore
tests/icles/Makefile.am
tests/icles/stress-playbin.c [new file with mode: 0644]

index c1ea3801b24ab74feec32a6b728df397fafc92ad..f482ea355c8e5f95f19005b27bb78a3133541458 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * tests/icles/.cvsignore:
+       * tests/icles/Makefile.am:
+       * tests/icles/stress-playbin.c:
+         Does what it says on the tin.
+
 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
 
        * gst/playback/gstqueue2.c: (gst_queue_init), (gst_queue_push_one):
index afaa386626cb8e7670f66602f60510229acc18f6..73cc2f9c914d18355a4046aecaee028983e5cca7 100644 (file)
@@ -1,2 +1,3 @@
+stress-playbin
 stress-xoverlay
 test-textoverlay
index 793475385c41ff24ae96b4cee3ad3b8d8b11e4e2..bb9e9006c1efaf70b0080bf750cc1bf940e0d269 100644 (file)
@@ -21,4 +21,8 @@ else
 PANGO_TESTS = 
 endif
 
-noinst_PROGRAMS = $(X_TESTS) $(PANGO_TESTS)
+stress_playbin_SOURCES = stress-playbin.c
+stress_playbin_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
+stress_playbin_LDFLAGS = $(GST_LIBS) $(LIBM)
+
+noinst_PROGRAMS = $(X_TESTS) $(PANGO_TESTS) stress-playbin
diff --git a/tests/icles/stress-playbin.c b/tests/icles/stress-playbin.c
new file mode 100644 (file)
index 0000000..a6cf3a6
--- /dev/null
@@ -0,0 +1,122 @@
+#include <gst/gst.h>
+
+#define TEST_RUNTIME 120.0      /* how long to run the test, in seconds */
+
+static void
+play_file (const gchar * uri)
+{
+  GstStateChangeReturn sret;
+  GstMessage *msg;
+  GstElement *play;
+  guint wait_nanosecs;
+
+  play = gst_element_factory_make ("playbin", "playbin");
+
+  g_object_set (play, "uri", uri, NULL);
+  sret = gst_element_set_state (play, GST_STATE_PLAYING);
+  if (sret != GST_STATE_CHANGE_ASYNC) {
+    g_printerr ("ERROR: state change failed, sret=%d\n", sret);
+    goto next;
+  }
+
+  wait_nanosecs = g_random_int_range (0, GST_SECOND / 10);
+  msg = gst_bus_poll (GST_ELEMENT_BUS (play),
+      GST_MESSAGE_ERROR | GST_MESSAGE_EOS, wait_nanosecs);
+  if (msg) {
+    g_printerr ("Got %s messge\n", GST_MESSAGE_TYPE_NAME (msg));
+    gst_message_unref (msg);
+    goto next;
+  }
+
+  /* on to the next one */
+  g_print (".");
+
+next:
+  gst_element_set_state (play, GST_STATE_NULL);
+}
+
+static void
+check_arg (GPtrArray * files, const gchar * arg)
+{
+  GDir *dir;
+
+  if ((dir = g_dir_open (arg, 0, NULL))) {
+    const gchar *entry;
+
+    while ((entry = g_dir_read_name (dir))) {
+      gchar *path;
+
+      path = g_strconcat (arg, G_DIR_SEPARATOR_S, entry, NULL);
+      check_arg (files, path);
+      g_free (path);
+    }
+
+    g_dir_close (dir);
+    return;
+  } else if (g_file_test (arg, G_FILE_TEST_EXISTS)) {
+    /* hack: technically an URI is not just file:// + path, but it'll do here */
+    g_ptr_array_add (files, g_strdup_printf ("file://%s", arg));
+  }
+}
+
+int
+main (int argc, char **argv)
+{
+  GPtrArray *files;
+  gchar **args = NULL;
+  guint num, i;
+  GError *err = NULL;
+  GOptionContext *ctx;
+  GOptionEntry options[] = {
+    {G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &args, NULL},
+    {NULL}
+  };
+  GTimer *timer;
+
+  if (!g_thread_supported ())
+    g_thread_init (NULL);
+
+  ctx = g_option_context_new ("FILES OR DIRECTORIES WITH AUDIO FILES");
+  g_option_context_add_main_entries (ctx, options, NULL);
+  g_option_context_add_group (ctx, gst_init_get_option_group ());
+  if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
+    g_print ("Error initializing: %s\n", GST_STR_NULL (err->message));
+    exit (1);
+  }
+  g_option_context_free (ctx);
+
+  if (args == NULL || *args == NULL) {
+    g_print ("Please provide one or more directories with audio files\n\n");
+    return 1;
+  }
+
+  files = g_ptr_array_new ();
+
+  num = g_strv_length (args);
+  for (i = 0; i < num; ++i) {
+    if (g_path_is_absolute (args[i])) {
+      check_arg (files, args[i]);
+    } else {
+      g_warning ("Argument '%s' is not an absolute file path", args[i]);
+    }
+  }
+
+  if (files->len == 0) {
+    g_print ("Did not find any files\n\n");
+    return 1;
+  }
+
+  timer = g_timer_new ();
+
+  while (g_timer_elapsed (timer, NULL) < TEST_RUNTIME) {
+    gint32 idx;
+
+    idx = g_random_int_range (0, files->len);
+    play_file ((const gchar *) g_ptr_array_index (files, idx));
+  }
+
+  g_strfreev (args);
+  g_timer_destroy (timer);
+
+  return 0;
+}