tests: add tests for videoflip
authorMatthew Waters <matthew@centricular.com>
Wed, 9 Dec 2020 08:49:47 +0000 (19:49 +1100)
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Mon, 4 Jan 2021 12:10:12 +0000 (12:10 +0000)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/836>

tests/check/elements/videoflip.c [new file with mode: 0644]
tests/check/meson.build

diff --git a/tests/check/elements/videoflip.c b/tests/check/elements/videoflip.c
new file mode 100644 (file)
index 0000000..361f715
--- /dev/null
@@ -0,0 +1,209 @@
+/* GStreamer
+ *
+ * unit test for videofilter elements
+ *
+ * Copyright (C) <2006> Mark Nauwelaerts <manauw@skynet.be>
+ *
+ * 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.
+ */
+
+#include <stdarg.h>
+
+#include <gst/video/video.h>
+#include <gst/check/gstcheck.h>
+#include <gst/check/gstharness.h>
+
+static GstBuffer *
+create_test_video_buffer_rgba8 (GstVideoInfo * info)
+{
+  guint8 *data;
+  guint i = 0, j, k;
+  gsize stride = GST_VIDEO_INFO_PLANE_STRIDE (info, i);
+
+  data = g_malloc0 (info->size);
+
+  for (j = 0; j < GST_VIDEO_INFO_COMP_HEIGHT (info, i); j++) {
+    for (k = 0; k < GST_VIDEO_INFO_COMP_WIDTH (info, i); k++) {
+      data[(j * stride + 4 * k) + 0] = j % 255;
+      data[(j * stride + 4 * k) + 1] = k % 255;
+      data[(j * stride + 4 * k) + 2] = (j + k) % 255;
+      data[(j * stride + 4 * k) + 3] = 255;
+    }
+  }
+
+  return gst_buffer_new_wrapped (data, info->size);
+}
+
+GST_START_TEST (test_passthrough)
+{
+  GstHarness *flip = gst_harness_new ("videoflip");
+  GstVideoInfo in_info, out_info;
+  GstCaps *in_caps, *out_caps;
+  GstEvent *e;
+  GstBuffer *buf;
+
+  gst_video_info_set_format (&in_info, GST_VIDEO_FORMAT_RGBA, 4, 9);
+  in_caps = gst_video_info_to_caps (&in_info);
+
+  gst_harness_set_src_caps (flip, in_caps);
+
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_STREAM_START);
+  gst_event_unref (e);
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_CAPS);
+  gst_event_parse_caps (e, &out_caps);
+  fail_unless (gst_video_info_from_caps (&out_info, out_caps));
+  fail_unless_equals_int (GST_VIDEO_INFO_WIDTH (&in_info),
+      GST_VIDEO_INFO_WIDTH (&out_info));
+  fail_unless_equals_int (GST_VIDEO_INFO_HEIGHT (&in_info),
+      GST_VIDEO_INFO_HEIGHT (&out_info));
+  gst_event_unref (e);
+
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_SEGMENT);
+  gst_event_unref (e);
+
+  buf = create_test_video_buffer_rgba8 (&in_info);
+  buf = gst_harness_push_and_pull (flip, buf);
+  fail_unless (buf != NULL);
+  gst_buffer_unref (buf);
+
+  gst_harness_teardown (flip);
+}
+
+GST_END_TEST;
+
+GST_START_TEST (test_change_method)
+{
+  GstHarness *flip = gst_harness_new ("videoflip");
+  GstVideoInfo in_info, out_info;
+  GstCaps *in_caps, *out_caps;
+  GstEvent *e;
+  GstBuffer *buf;
+
+  gst_video_info_set_format (&in_info, GST_VIDEO_FORMAT_RGBA, 4, 9);
+  in_caps = gst_video_info_to_caps (&in_info);
+
+  gst_harness_set_src_caps (flip, in_caps);
+
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_STREAM_START);
+  gst_event_unref (e);
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_CAPS);
+  gst_event_parse_caps (e, &out_caps);
+  fail_unless (gst_video_info_from_caps (&out_info, out_caps));
+  fail_unless_equals_int (GST_VIDEO_INFO_WIDTH (&in_info),
+      GST_VIDEO_INFO_WIDTH (&out_info));
+  fail_unless_equals_int (GST_VIDEO_INFO_HEIGHT (&in_info),
+      GST_VIDEO_INFO_HEIGHT (&out_info));
+  gst_event_unref (e);
+
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_SEGMENT);
+  gst_event_unref (e);
+
+  buf = create_test_video_buffer_rgba8 (&in_info);
+  buf = gst_harness_push_and_pull (flip, buf);
+  fail_unless (buf != NULL);
+  gst_buffer_unref (buf);
+
+  g_object_set (flip->element, "video-direction", 1 /* 90r */ , NULL);
+
+  buf = create_test_video_buffer_rgba8 (&in_info);
+  fail_unless_equals_int (gst_harness_push (flip, buf), GST_FLOW_OK);
+  e = gst_harness_pull_event (flip);
+  fail_unless_equals_int (GST_EVENT_TYPE (e), GST_EVENT_CAPS);
+  gst_event_parse_caps (e, &out_caps);
+  fail_unless (gst_video_info_from_caps (&out_info, out_caps));
+  fail_unless_equals_int (GST_VIDEO_INFO_WIDTH (&in_info),
+      GST_VIDEO_INFO_HEIGHT (&out_info));
+  fail_unless_equals_int (GST_VIDEO_INFO_HEIGHT (&in_info),
+      GST_VIDEO_INFO_WIDTH (&out_info));
+  gst_event_unref (e);
+  buf = gst_harness_pull (flip);
+  fail_unless (buf != NULL);
+  gst_buffer_unref (buf);
+
+  gst_harness_teardown (flip);
+}
+
+GST_END_TEST;
+
+GST_START_TEST (test_stress_change_method)
+{
+  GstHarness *flip = gst_harness_new ("videoflip");
+  GParamSpec *pspec =
+      g_object_class_find_property (G_OBJECT_GET_CLASS (flip->element),
+      "video-direction");
+  GstHarnessThread *thread_identity, *thread_90r;
+  GValue direction_identity = G_VALUE_INIT, direction_90r = G_VALUE_INIT;
+  GstVideoInfo in_info;
+  guint i = 0;
+#define N_PUSHES 1000
+
+  gst_video_info_set_format (&in_info, GST_VIDEO_FORMAT_RGBA, 4, 9);
+  gst_harness_set_src_caps (flip, gst_video_info_to_caps (&in_info));
+
+  g_value_init (&direction_identity, pspec->value_type);
+  g_value_init (&direction_90r, pspec->value_type);
+
+  fail_unless (gst_value_deserialize_with_pspec (&direction_identity,
+          "identity", pspec));
+  fail_unless (gst_value_deserialize_with_pspec (&direction_90r, "90r", pspec));
+
+  thread_identity =
+      gst_harness_stress_property_start_full (flip, "video-direction",
+      &direction_identity, 210);
+  thread_90r =
+      gst_harness_stress_property_start_full (flip, "video-direction",
+      &direction_90r, 160);
+
+  while (i++ < N_PUSHES) {
+    GstBuffer *buf = create_test_video_buffer_rgba8 (&in_info);
+    buf = gst_harness_push_and_pull (flip, buf);
+    fail_unless (buf != NULL);
+    gst_buffer_unref (buf);
+    g_usleep (100);
+  }
+
+  gst_harness_stress_thread_stop (thread_identity);
+  gst_harness_stress_thread_stop (thread_90r);
+
+  g_value_unset (&direction_identity);
+  g_value_unset (&direction_90r);
+
+  gst_harness_teardown (flip);
+}
+
+GST_END_TEST;
+
+static Suite *
+videoflip_suite (void)
+{
+  Suite *s = suite_create ("videoflip");
+  TCase *tc_chain = tcase_create ("general");
+
+  suite_add_tcase (s, tc_chain);
+  tcase_add_test (tc_chain, test_passthrough);
+  tcase_add_test (tc_chain, test_change_method);
+  tcase_add_test (tc_chain, test_stress_change_method);
+
+  return s;
+}
+
+GST_CHECK_MAIN (videoflip);
index 57bc18a..c4b7245 100644 (file)
@@ -98,6 +98,7 @@ good_tests = [
   [ 'elements/videobox' ],
   [ 'elements/videocrop' ],
   [ 'elements/videofilter' ],
+  [ 'elements/videoflip' ],
   [ 'elements/videomixer' ],
   [ 'elements/aspectratiocrop' ],
   [ 'pipelines/wavenc' ],