f23822b7038ce93a5a91028cc51606e0fd4e5dc1
[platform/upstream/gstreamer.git] / tests / check / libs / typefindhelper.c
1 /* GStreamer
2  *
3  * unit test for typefind helper
4  *
5  * Copyright (C) 2006 Tim-Philipp Müller  <tim centricular net>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <gst/check/gstcheck.h>
28
29 #include <gst/base/gsttypefindhelper.h>
30
31 static const guint8 vorbisid[30] = { 0x01, 0x76, 0x6f, 0x72, 0x62, 0x69, 0x73,
32   0x00, 0x00, 0x00, 0x00, 0x02, 0x44, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00,
33   0x00, 0x03, 0xf4, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x01
34 };
35
36 static void foobar_typefind (GstTypeFind * tf, gpointer unused);
37
38 static GstStaticCaps foobar_caps = GST_STATIC_CAPS ("foo/x-bar");
39
40 #define FOOBAR_CAPS (gst_static_caps_get (&foobar_caps))
41
42 /* make sure the entire data in the buffer is available for peeking */
43 GST_START_TEST (test_buffer_range)
44 {
45   static gchar *foobar_exts[] = { "foobar", NULL };
46
47   GstStructure *s;
48   GstBuffer *buf;
49   GstCaps *caps;
50
51   fail_unless (gst_type_find_register (NULL, "foo/x-bar",
52           GST_RANK_PRIMARY + 50, foobar_typefind, foobar_exts, FOOBAR_CAPS,
53           NULL, NULL));
54
55   buf = gst_buffer_new ();
56   fail_unless (buf != NULL);
57   GST_BUFFER_DATA (buf) = (guint8 *) vorbisid;
58   GST_BUFFER_SIZE (buf) = 30;
59   GST_BUFFER_FLAG_SET (buf, GST_BUFFER_FLAG_READONLY);
60
61   caps = gst_type_find_helper_for_buffer (NULL, buf, NULL);
62   fail_unless (caps != NULL);
63   fail_unless (GST_CAPS_IS_SIMPLE (caps));
64   fail_unless (gst_caps_is_fixed (caps));
65
66   s = gst_caps_get_structure (caps, 0);
67   fail_unless (s != NULL);
68   fail_unless (gst_structure_has_name (s, "foo/x-bar"));
69
70   gst_caps_unref (caps);
71   gst_buffer_unref (buf);
72 }
73
74 GST_END_TEST;
75
76 static Suite *
77 gst_typefindhelper_suite (void)
78 {
79   Suite *s = suite_create ("typefindhelper");
80   TCase *tc_chain = tcase_create ("general");
81
82   suite_add_tcase (s, tc_chain);
83   tcase_add_test (tc_chain, test_buffer_range);
84
85   return s;
86 }
87
88 GST_CHECK_MAIN (gst_typefindhelper);
89
90 static void
91 foobar_typefind (GstTypeFind * tf, gpointer unused)
92 {
93   guint8 *data;
94
95   data = gst_type_find_peek (tf, 0, 10);
96   fail_unless (data != NULL);
97   fail_unless (memcmp (data, vorbisid, 10) == 0);
98
99   data = gst_type_find_peek (tf, 0, 20);
100   fail_unless (data != NULL);
101   fail_unless (memcmp (data, vorbisid, 20) == 0);
102
103   data = gst_type_find_peek (tf, 0, 30);
104   fail_unless (data != NULL);
105   fail_unless (memcmp (data, vorbisid, 30) == 0);
106
107   fail_unless (gst_type_find_peek (tf, 0, 31) == NULL);
108   fail_unless (gst_type_find_peek (tf, 1, 30) == NULL);
109   fail_unless (gst_type_find_peek (tf, 25, 6) == NULL);
110
111   data = gst_type_find_peek (tf, 1, 29);
112   fail_unless (data != NULL);
113   fail_unless (memcmp (data, vorbisid + 1, 29) == 0);
114
115   data = gst_type_find_peek (tf, 25, 4);
116   fail_unless (data != NULL);
117   fail_unless (memcmp (data, vorbisid + 25, 4) == 0);
118
119   fail_unless (gst_type_find_peek (tf, -1, 29) == NULL);
120   fail_unless (gst_type_find_peek (tf, -1, 1) == NULL);
121   fail_unless (gst_type_find_peek (tf, -1, 0) == NULL);
122
123   gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, FOOBAR_CAPS);
124 }