toc: add GstTocScope and require it in the constructor
[platform/upstream/gstreamer.git] / tests / check / gst / gsttocsetter.c
index 34e589a..4cdd3bf 100644 (file)
 
 #define ENTRY_TAG       "EntryTag"
 #define TOC_TAG         "TocTag"
-#define INFO_NAME       "info"
-#define INFO_FIELD      "info-test"
-#define INFO_TEXT_EN    "info-text-entry"
-#define INFO_TEXT_TOC   "info-text-toc"
-
-#define CHECK_TOC_ENTRY(entry_c,type_c,uid_c)                            \
-{                                                                        \
-  gchar *tag_c;                                                          \
-  const GValue *val;                                                     \
-                                                                         \
-  fail_unless_equals_string (entry_c->uid, uid_c);                       \
-  fail_unless (entry_c->type == type_c);                                 \
-  fail_unless (entry_c->tags != NULL);                                   \
-  fail_unless (entry_c->pads == NULL);                                   \
-                                                                         \
-  fail_unless (entry_c->info != NULL);                                   \
-  val = gst_structure_get_value (entry_c->info, INFO_FIELD);             \
-  fail_unless (val != NULL);                                             \
-  fail_unless_equals_string (g_value_get_string (val), INFO_TEXT_EN);    \
-                                                                         \
-  fail_unless (gst_tag_list_get_string (entry_c->tags,                   \
-               GST_TAG_TITLE, &tag_c));                                  \
-  fail_unless_equals_string (tag_c, ENTRY_TAG);                          \
+
+static void
+CHECK_TOC_ENTRY (GstTocEntry * entry_c, GstTocEntryType type_c,
+    const gchar * uid_c)
+{
+  GstTagList *tags;
+  gchar *tag_c;
+
+  fail_unless_equals_string (gst_toc_entry_get_uid (entry_c), uid_c);
+  fail_unless (gst_toc_entry_get_entry_type (entry_c) == type_c);
+
+  tags = gst_toc_entry_get_tags (entry_c);
+  fail_unless (tags != NULL);
+  fail_unless (gst_tag_list_get_string (tags, GST_TAG_TITLE, &tag_c));
+  fail_unless_equals_string (tag_c, ENTRY_TAG);
+  g_free (tag_c);
 }
 
-#define CHECK_TOC(toc_t)                                                 \
-{                                                                        \
-  GstTocEntry *entry_t, *subentry_t;                                     \
-  gchar *tag_t;                                                          \
-  const GValue *val;                                                     \
-  /* check TOC */                                                        \
-  fail_unless (g_list_length (toc_t->entries) == 2);                     \
-  fail_unless (toc_t->tags != NULL);                                     \
-  fail_unless (gst_tag_list_get_string (toc_t->tags,                     \
-               GST_TAG_TITLE, &tag_t));                                  \
-  fail_unless_equals_string (tag_t, TOC_TAG);                            \
-                                                                         \
-  fail_unless (toc_t->info != NULL);                                     \
-  val = gst_structure_get_value (toc_t->info, INFO_FIELD);               \
-  fail_unless (val != NULL);                                             \
-  fail_unless_equals_string (g_value_get_string (val), INFO_TEXT_TOC);   \
-                                                                         \
-  /* check edition1 */                                                   \
-  entry_t = g_list_nth_data (toc_t->entries, 0);                         \
-  fail_if (entry_t == NULL);                                             \
-  fail_unless (g_list_length (entry_t->subentries) == 2);                \
-  CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1);      \
-  /* check chapter1 */                                                   \
-  subentry_t = g_list_nth_data (entry_t->subentries, 0);                 \
-  fail_if (subentry_t == NULL);                                          \
-  fail_unless (g_list_length (subentry_t->subentries) == 0);             \
-  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1);   \
-  /* check chapter2 */                                                   \
-  subentry_t = g_list_nth_data (entry_t->subentries, 1);                 \
-  fail_if (subentry_t == NULL);                                          \
-  fail_unless (g_list_length (subentry_t->subentries) == 0);             \
-  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2);   \
-  /* check edition2 */                                                   \
-  entry_t = g_list_nth_data (toc_t->entries, 1);                         \
-  fail_if (entry_t == NULL);                                             \
-  fail_unless (g_list_length (entry_t->subentries) == 1);                \
-  CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2);      \
-  /* check chapter3 */                                                   \
-  subentry_t = g_list_nth_data (entry_t->subentries, 0);                 \
-  fail_if (subentry_t == NULL);                                          \
-  fail_unless (g_list_length (subentry_t->subentries) == 1);             \
-  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3);   \
-  /* check subchapter1 */                                                \
-  subentry_t = g_list_nth_data (subentry_t->subentries, 0);              \
-  fail_if (subentry_t == NULL);                                          \
-  fail_unless (g_list_length (subentry_t->subentries) == 0);             \
-  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1);  \
+static void
+CHECK_TOC (GstToc * toc_t)
+{
+  GstTocEntry *entry_t, *subentry_t;
+  GstTagList *tags;
+  GList *entries, *subentries, *subsubentries;
+  gchar *tag_t;
+
+  /* dump TOC */
+  gst_toc_dump (toc_t);
+
+  /* check TOC */
+  tags = gst_toc_get_tags (toc_t);
+  fail_unless (tags != NULL);
+  fail_unless (gst_tag_list_get_string (tags, GST_TAG_TITLE, &tag_t));
+  fail_unless_equals_string (tag_t, TOC_TAG);
+  g_free (tag_t);
+
+  entries = gst_toc_get_entries (toc_t);
+  fail_unless_equals_int (g_list_length (entries), 2);
+  /* check edition1 */
+  entry_t = g_list_nth_data (entries, 0);
+  fail_if (entry_t == NULL);
+  subentries = gst_toc_entry_get_sub_entries (entry_t);
+  fail_unless_equals_int (g_list_length (subentries), 2);
+  CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1);
+  /* check chapter1 */
+  subentry_t = g_list_nth_data (subentries, 0);
+  fail_if (subentry_t == NULL);
+  subsubentries = gst_toc_entry_get_sub_entries (subentry_t);
+  fail_unless_equals_int (g_list_length (subsubentries), 0);
+  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1);
+  /* check chapter2 */
+  subentry_t = g_list_nth_data (subentries, 1);
+  fail_if (subentry_t == NULL);
+  subsubentries = gst_toc_entry_get_sub_entries (subentry_t);
+  fail_unless_equals_int (g_list_length (subsubentries), 0);
+  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2);
+  /* check edition2 */
+  entry_t = g_list_nth_data (entries, 1);
+  fail_if (entry_t == NULL);
+  subentries = gst_toc_entry_get_sub_entries (entry_t);
+  fail_unless_equals_int (g_list_length (subentries), 1);
+  CHECK_TOC_ENTRY (entry_t, GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2);
+  /* check chapter3 */
+  subentry_t = g_list_nth_data (subentries, 0);
+  fail_if (subentry_t == NULL);
+  subsubentries = gst_toc_entry_get_sub_entries (subentry_t);
+  fail_unless_equals_int (g_list_length (subsubentries), 1);
+  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3);
+  /* check subchapter1 */
+  subentry_t = g_list_nth_data (subsubentries, 0);
+  fail_if (subentry_t == NULL);
+  subsubentries = gst_toc_entry_get_sub_entries (subentry_t);
+  fail_unless_equals_int (g_list_length (subsubentries), 0);
+  CHECK_TOC_ENTRY (subentry_t, GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1);
 }
 
 /* some minimal GstTocSetter object */
@@ -133,77 +135,64 @@ create_toc (void)
 {
   GstToc *toc;
   GstTocEntry *ed, *ch, *subch;
+  GstTagList *tags;
 
-  toc = gst_toc_new ();
-  gst_tag_list_add (toc->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      TOC_TAG, NULL);
-  toc->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_TOC,
-      NULL);
+  toc = gst_toc_new (GST_TOC_SCOPE_GLOBAL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, TOC_TAG, NULL);
+  gst_toc_set_tags (toc, tags);
 
   /* create edition1 */
   ed = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED1);
-  gst_tag_list_add (ed->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      ENTRY_TAG, NULL);
-  ed->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
-      NULL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, ENTRY_TAG, NULL);
+  gst_toc_entry_set_tags (ed, tags);
 
   /* append chapter1 to edition1 */
   ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH1);
-  gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      ENTRY_TAG, NULL);
-  ch->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
-      NULL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, ENTRY_TAG, NULL);
+  gst_toc_entry_set_tags (ch, tags);
 
-  ed->subentries = g_list_append (ed->subentries, ch);
+  gst_toc_entry_append_sub_entry (ed, ch);
 
   /* append chapter2 to edition1 */
   ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH2);
-  gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      ENTRY_TAG, NULL);
-  ch->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
-      NULL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, ENTRY_TAG, NULL);
+  gst_toc_entry_set_tags (ch, tags);
 
-  ed->subentries = g_list_append (ed->subentries, ch);
+  gst_toc_entry_append_sub_entry (ed, ch);
 
   /* append edition1 to the TOC */
-  toc->entries = g_list_append (toc->entries, ed);
+  gst_toc_append_entry (toc, ed);
 
   /* create edition2 */
   ed = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_EDITION, ENTRY_ED2);
-  gst_tag_list_add (ed->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      ENTRY_TAG, NULL);
-  ed->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
-      NULL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, ENTRY_TAG, NULL);
+  gst_toc_entry_set_tags (ed, tags);
 
   /* create chapter3 */
   ch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_CH3);
-  gst_tag_list_add (ch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      ENTRY_TAG, NULL);
-  ch->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
-      NULL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, ENTRY_TAG, NULL);
+  gst_toc_entry_set_tags (ch, tags);
 
   /* create subchapter1 */
   subch = gst_toc_entry_new (GST_TOC_ENTRY_TYPE_CHAPTER, ENTRY_SUB1);
-  gst_tag_list_add (subch->tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE,
-      ENTRY_TAG, NULL);
-  subch->info =
-      gst_structure_new (INFO_NAME, INFO_FIELD, G_TYPE_STRING, INFO_TEXT_EN,
-      NULL);
+  tags = gst_tag_list_new_empty ();
+  gst_tag_list_add (tags, GST_TAG_MERGE_APPEND, GST_TAG_TITLE, ENTRY_TAG, NULL);
+  gst_toc_entry_set_tags (subch, tags);
 
   /* append subchapter1 to chapter3 */
-  ch->subentries = g_list_append (ch->subentries, subch);
+  gst_toc_entry_append_sub_entry (ch, subch);
 
   /* append chapter3 to edition2 */
-  ed->subentries = g_list_append (ed->subentries, ch);
+  gst_toc_entry_append_sub_entry (ed, ch);
 
   /* finally append edition2 to the TOC */
-  toc->entries = g_list_append (toc->entries, ed);
+  gst_toc_append_entry (toc, ed);
 
   return toc;
 }
@@ -211,7 +200,9 @@ create_toc (void)
 GST_START_TEST (test_set)
 {
   GstToc *toc;
+#if 0
   GstTocEntry *entry, *ed;
+#endif
   GstTocSetter *setter;
   GstElement *enc;
 
@@ -225,11 +216,12 @@ GST_START_TEST (test_set)
 
   gst_toc_setter_set_toc (setter, toc);
 
-  gst_toc_free (toc);
-  toc = gst_toc_setter_get_toc_copy (setter);
+  gst_toc_unref (toc);
+  toc = gst_toc_setter_get_toc (setter);
 
   CHECK_TOC (toc);
 
+#if 0
   /* test entry adding into the root TOC */
   entry = g_list_last (toc->entries)->data;
   toc->entries = g_list_remove (toc->entries, entry);
@@ -237,11 +229,14 @@ GST_START_TEST (test_set)
   gst_toc_setter_set_toc (setter, toc);
   gst_toc_setter_add_toc_entry (setter, "0", entry);
 
-  gst_toc_free (toc);
-  toc = gst_toc_setter_get_toc_copy (setter);
+  gst_toc_unref (toc);
+  gst_toc_entry_unref (entry);
+  toc = gst_toc_setter_get_toc (setter);
 
   CHECK_TOC (toc);
+#endif
 
+#if 0
   /* test entry adding into the arbitrary entry */
   entry = gst_toc_find_entry (toc, ENTRY_CH2);
   fail_if (entry == NULL);
@@ -252,10 +247,11 @@ GST_START_TEST (test_set)
   gst_toc_setter_add_toc_entry (setter, ed->uid, entry);
 
   CHECK_TOC (toc);
+#endif
 
-  gst_toc_free (toc);
-  gst_toc_setter_reset_toc (setter);
-  toc = gst_toc_setter_get_toc_copy (setter);
+  gst_toc_unref (toc);
+  gst_toc_setter_reset (setter);
+  toc = gst_toc_setter_get_toc (setter);
 
   fail_unless (toc == NULL);
 
@@ -287,7 +283,7 @@ test_threads_thread_func1 (gpointer data)
   while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS)
     gst_toc_setter_set_toc (setter, toc);
 
-  gst_toc_free (toc);
+  gst_toc_unref (toc);
   g_timer_destroy (timer);
   GST_INFO ("Done");
 
@@ -314,7 +310,7 @@ test_threads_thread_func2 (gpointer data)
   while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS)
     gst_toc_setter_set_toc (setter, toc);
 
-  gst_toc_free (toc);
+  gst_toc_unref (toc);
   g_timer_destroy (timer);
   GST_INFO ("Done");
 
@@ -337,7 +333,7 @@ test_threads_thread_func3 (gpointer data)
   g_timer_start (timer);
 
   while (g_timer_elapsed (timer, NULL) < THREADS_TEST_SECONDS) {
-    gst_toc_setter_reset_toc (setter);
+    gst_toc_setter_reset (setter);
   }
 
   g_timer_destroy (timer);