1 /* GStreamer GstTocSetter interface unit tests
2 * Copyright (C) 2010, 2012 Alexander Saprykin <xelfium@gmail.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #include <gst/check/gstcheck.h>
24 #define ENTRY_ED1 "/edition1"
25 #define ENTRY_ED2 "/edition2"
26 #define ENTRY_ED3 "test-edition"
28 #define ENTRY_CH1 "/edition1/chapter1"
29 #define ENTRY_CH2 "/edition1/chapter2"
30 #define ENTRY_CH3 "/edition2/chapter3"
31 #define ENTRY_CH4 "/test-chapter"
33 #define ENTRY_SUB1 "/edition2/chapter3/subchapter1"
35 #define ENTRY_TAG "EntryTag"
36 #define TOC_TAG "TocTag"
37 #define INFO_NAME "info"
38 #define INFO_FIELD "info-test"
39 #define INFO_TEXT_EN "info-text-entry"
40 #define INFO_TEXT_TOC "info-text-toc"
42 #define CHECK_TOC_ENTRY(entry_c,type_c,uid_c) \
47 fail_unless_equals_string (entry_c->uid, uid_c); \
48 fail_unless (entry_c->type == type_c); \
49 fail_unless (entry_c->tags != NULL); \
50 fail_unless (entry_c->pads == NULL); \
52 fail_unless (entry_c->info != NULL); \
53 val = gst_structure_get_value (entry_c->info, INFO_FIELD); \
54 fail_unless (val != NULL); \
55 fail_unless_equals_string (g_value_get_string (val), INFO_TEXT_EN); \
57 fail_unless (gst_tag_list_get_string (entry_c->tags, \
58 GST_TAG_TITLE, &tag_c)); \
59 fail_unless_equals_string (tag_c, ENTRY_TAG); \
62 #define CHECK_TOC(toc_t) \
64 GstTocEntry *entry_t, *subentry_t; \
68 fail_unless (g_list_length (toc_t->entries) == 2); \
69 fail_unless (toc_t->tags != NULL); \
70 fail_unless (gst_tag_list_get_string (toc_t->tags, \
71 GST_TAG_TITLE, &tag_t)); \
72 fail_unless_equals_string (tag_t, TOC_TAG); \
74 fail_unless (toc_t->info != NULL); \
75 val = gst_structure_get_value (toc_t->info, INFO_FIELD); \
76 fail_unless (val != NULL); \
77 fail_unless_equals_string (g_value_get_string (val), INFO_TEXT_TOC); \
79 /* check edition1 */ \
80 entry_t = g_list_nth_data (toc_t->entries, 0); \
81 fail_if (entry_t == NULL); \
82 fail_unless (g_list_length (entry_t->subentries) == 2); \
83 CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1); \
84 /* check chapter1 */ \
85 subentry_t = g_list_nth_data (entry_t->subentries, 0); \
86 fail_if (subentry_t == NULL); \
87 fail_unless (g_list_length (subentry_t->subentries) == 0); \
88 CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1); \
89 /* check chapter2 */ \
90 subentry_t = g_list_nth_data (entry_t->subentries, 1); \
91 fail_if (subentry_t == NULL); \
92 fail_unless (g_list_length (subentry_t->subentries) == 0); \
93 CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2); \
94 /* check edition2 */ \
95 entry_t = g_list_nth_data (toc_t->entries, 1); \
96 fail_if (entry_t == NULL); \
97 fail_unless (g_list_length (entry_t->subentries) == 1); \
98 CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2); \
99 /* check chapter3 */ \
100 subentry_t = g_list_nth_data (entry_t->subentries, 0); \
101 fail_if (subentry_t == NULL); \
102 fail_unless (g_list_length (subentry_t->subentries) == 1); \
103 CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3); \
104 /* check subchapter1 */ \
105 subentry_t = g_list_nth_data (subentry_t->subentries, 0); \
106 fail_if (subentry_t == NULL); \
107 fail_unless (g_list_length (subentry_t->subentries) == 0); \
108 CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1); \
111 /* some minimal GstTocSetter object */
112 #define GST_TYPE_DUMMY_ENC gst_dummy_enc_get_type()
114 typedef GstElement GstDummyEnc;
115 typedef GstElementClass GstDummyEncClass;
117 static void gst_dummy_enc_add_interfaces (GType enc_type);
119 GType gst_dummy_enc_get_type (void);
120 GST_BOILERPLATE_FULL (GstDummyEnc, gst_dummy_enc, GstElement,
121 GST_TYPE_ELEMENT, gst_dummy_enc_add_interfaces);
124 gst_dummy_enc_add_interfaces (GType enc_type)
126 static const GInterfaceInfo toc_setter_info = { NULL, NULL, NULL };
128 g_type_add_interface_static (enc_type, GST_TYPE_TOC_SETTER, &toc_setter_info);
132 gst_dummy_enc_base_init (gpointer g_class)
137 gst_dummy_enc_class_init (GstDummyEncClass * klass)
142 gst_dummy_enc_init (GstDummyEnc * enc, GstDummyEncClass * klass)
150 GstTocEntry *ed, *ch, *subch;
152 toc = gst_toc_new ();
153 gst_tag_list_add (toc->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
156 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_TOC,
159 /* create edition1 */
160 ed = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1);
161 gst_tag_list_add (ed->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
164 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
167 /* append chapter1 to edition1 */
168 ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1);
169 gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
172 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
175 ed->subentries = g_list_append (ed->subentries, ch);
177 /* append chapter2 to edition1 */
178 ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2);
179 gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
182 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
185 ed->subentries = g_list_append (ed->subentries, ch);
187 /* append edition1 to the TOC */
188 toc->entries = g_list_append (toc->entries, ed);
190 /* create edition2 */
191 ed = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2);
192 gst_tag_list_add (ed->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
195 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
198 /* create chapter3 */
199 ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3);
200 gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
203 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
206 /* create subchapter1 */
207 subch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1);
208 gst_tag_list_add (subch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
211 gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
214 /* append subchapter1 to chapter3 */
215 ch->subentries = g_list_append (ch->subentries, subch);
217 /* append chapter3 to edition2 */
218 ed->subentries = g_list_append (ed->subentries, ch);
220 /* finally append edition2 to the TOC */
221 toc->entries = g_list_append (toc->entries, ed);
226 GST_START_TEST (test_set)
229 GstTocEntry *entry, *ed;
230 GstTocSetter *setter;
233 enc = g_object_new (GST_TYPE_DUMMY_ENC, NULL);
234 fail_unless (enc != NULL);
236 setter = GST_TOC_SETTER (enc);
239 fail_unless (toc != NULL);
241 gst_toc_setter_set_toc (setter, toc);
244 toc = gst_toc_setter_get_toc_copy (setter);
248 /* test entry adding into the root TOC */
249 entry = g_list_last (toc->entries)->data;
250 toc->entries = g_list_remove (toc->entries, entry);
252 gst_toc_setter_set_toc (setter, toc);
253 gst_toc_setter_add_toc_entry (setter, "0", entry);
256 toc = gst_toc_setter_get_toc_copy (setter);
260 /* test entry adding into the arbitrary entry */
261 entry = gst_toc_find_entry (toc, ENTRY_CH2);
262 fail_if (entry == NULL);
264 ed = toc->entries->data;
265 ed->subentries = g_list_remove (ed->subentries, entry);
267 gst_toc_setter_add_toc_entry (setter, ed->uid, entry);
272 gst_toc_setter_reset_toc (setter);
273 toc = gst_toc_setter_get_toc_copy (setter);
275 fail_unless (toc == NULL);
277 g_object_unref (enc);
280 GST_END_TEST static int spin_and_wait = 1;
281 static int threads_running = 0;
283 #define THREADS_TEST_SECONDS 1.5
286 test_threads_thread_func1 (gpointer data)
289 GstTocSetter *setter = GST_TOC_SETTER (data);
293 timer = g_timer_new ();
295 g_atomic_int_inc (&threads_running);
296 while (g_atomic_int_get (&spin_and_wait))
300 g_timer_start (timer);
302 while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS)
303 gst_toc_setter_set_toc (setter, toc);
306 g_timer_destroy (timer);
313 test_threads_thread_func2 (gpointer data)
316 GstTocSetter *setter = GST_TOC_SETTER (data);
320 timer = g_timer_new ();
322 g_atomic_int_inc (&threads_running);
323 while (g_atomic_int_get (&spin_and_wait))
327 g_timer_start (timer);
329 while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS)
330 gst_toc_setter_set_toc (setter, toc);
333 g_timer_destroy (timer);
340 test_threads_thread_func3 (gpointer data)
342 GstTocSetter *setter = GST_TOC_SETTER (data);
345 timer = g_timer_new ();
347 g_atomic_int_inc (&threads_running);
348 while (g_atomic_int_get (&spin_and_wait))
352 g_timer_start (timer);
354 while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS) {
355 gst_toc_setter_reset_toc (setter);
358 g_timer_destroy (timer);
364 GST_START_TEST (test_threads)
366 GstTocSetter *setter;
369 setter = GST_TOC_SETTER (g_object_new (GST_TYPE_DUMMY_ENC, NULL));
371 spin_and_wait = TRUE;
372 threads[0] = g_thread_create (test_threads_thread_func1, setter, TRUE, NULL);
373 threads[1] = g_thread_create (test_threads_thread_func2, setter, TRUE, NULL);
374 threads[2] = g_thread_create (test_threads_thread_func3, setter, TRUE, NULL);
376 while (g_atomic_int_get (&threads_running) < 3)
379 g_atomic_int_set (&spin_and_wait, FALSE);
381 g_thread_join (threads[0]);
382 g_thread_join (threads[1]);
383 g_thread_join (threads[2]);
385 g_object_unref (G_OBJECT (setter));
388 GST_END_TEST static Suite *
389 gst_toc_setter_suite (void)
391 Suite *s = suite_create ("GstTocSetter");
392 TCase *tc_chain = tcase_create ("general");
394 suite_add_tcase (s, tc_chain);
395 tcase_add_test (tc_chain, test_set);
396 tcase_add_test (tc_chain, test_threads);
401 GST_CHECK_MAIN (gst_toc_setter);