summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Toso <me@victortoso.com>2018-09-03 10:46:29 +0200
committerVictor Toso <me@victortoso.com>2018-10-02 16:14:35 +0200
commita43916a27bf488f1719ab44a438e3e71ac8be4f6 (patch)
tree3d2d921ed5c9a1c0cb45931ca9c96c4d4ec936d9
parent1169e447417f8305e89ac1624c3ecedc6cd0ba5b (diff)
downloadgrilo-a43916a27bf488f1719ab44a438e3e71ac8be4f6.tar.gz
tests: Add tests for grl_data_*_for_id()
Basic tests to handle API that was recently introduced to the following cases: - When a metadata-key does not exist and shall be created by this API with GType based on GValue (parameter). This test checks all supported GTypes by those APIs. - When the metadata-key exists, so it sets or adds the GValue to it. Signed-off-by: Victor Toso <victortoso@gnome.org>
-rw-r--r--tests/media.c203
-rw-r--r--tests/meson.build1
2 files changed, 204 insertions, 0 deletions
diff --git a/tests/media.c b/tests/media.c
new file mode 100644
index 0000000..6d228c5
--- /dev/null
+++ b/tests/media.c
@@ -0,0 +1,203 @@
+/*
+ * Copyright (C) 2018 Grilo Project
+ *
+ * Author: Victor Toso <me@victortoso.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; version 2.1 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser 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 <stdio.h>
+#include <stdbool.h>
+#include <stdlib.h>
+#include <string.h>
+#include <locale.h>
+#include <glib.h>
+
+#include <grilo.h>
+
+typedef struct {
+ GrlRegistry *registry;
+} Fixture;
+
+static void
+fixture_setup (Fixture *fixture, gconstpointer data)
+{
+
+ fixture->registry = grl_registry_get_default ();
+}
+
+static void
+fixture_teardown (Fixture *fixture, gconstpointer data)
+{
+}
+
+/* We are testing if metadata-keys were created correctly based on its GValue's type */
+static void
+test_set_for_id_new_key (Fixture *fixture, gconstpointer data)
+{
+ gboolean is_set_op = GPOINTER_TO_INT (data);
+
+#define TEST_NEW(type, getter, value, st_set, st_add) { \
+ GValue key_value = G_VALUE_INIT; \
+ gchar *name = g_strdup_printf ("grl-key-%s-%s-that-does-not-exist", \
+ g_type_name (type), is_set_op ? "set" : "add"); \
+ GrlKeyID key_id = grl_registry_lookup_metadata_key (fixture->registry, name); \
+ g_assert_true (key_id == GRL_METADATA_KEY_INVALID); \
+ g_value_init (&key_value, type); \
+ g_value_set_##getter (&key_value, value); \
+ \
+ GrlMedia * media = grl_media_new (); \
+ if (is_set_op) { \
+ if (!st_set) \
+ g_test_expect_message ("Grilo", G_LOG_LEVEL_WARNING, \
+ "*is being ignored as*is not being handled*"); \
+ g_assert_##st_set (grl_data_set_for_id (GRL_DATA (media), name, &key_value)); \
+ } else { \
+ if (!st_add) \
+ g_test_expect_message ("Grilo", G_LOG_LEVEL_WARNING, \
+ "*is being ignored as*is not being handled*"); \
+ g_assert_##st_add (grl_data_add_for_id (GRL_DATA (media), name, &key_value)); \
+ } \
+ if (!st_set || !st_add) \
+ g_test_assert_expected_messages (); \
+ g_value_unset (&key_value); \
+ \
+ key_id = grl_registry_lookup_metadata_key (fixture->registry, name); \
+ GType key_type = grl_registry_lookup_metadata_key_type (fixture->registry, \
+ key_id); \
+ /* Failure for set-for-id means failure for add-for-id \
+ * without registering the metadata-key */ \
+ if (!st_set) { \
+ g_assert_true (key_id == GRL_METADATA_KEY_INVALID); \
+ g_assert_true (key_type == G_TYPE_INVALID); \
+ } else { \
+ g_assert_false (key_id == GRL_METADATA_KEY_INVALID); \
+ g_assert_true (key_type == type); \
+ } \
+ g_object_unref (media); \
+ g_free (name); \
+ }
+
+ /* Works for both ADD and SET */
+ TEST_NEW(G_TYPE_INT, int, G_MAXINT, true, true);
+ TEST_NEW(G_TYPE_INT64, int64, G_MAXINT64, true, true);
+ TEST_NEW(G_TYPE_FLOAT, float, 0.12345, true, true);
+ TEST_NEW(G_TYPE_STRING, string, "data-of-key-that-does-not-exist", true, true);
+
+ /* Works for SET and fails for ADD */
+ TEST_NEW(G_TYPE_BOOLEAN, boolean, TRUE, true, false);
+
+ GDateTime *t = g_date_time_new_now_local();
+ TEST_NEW(G_TYPE_DATE_TIME, boxed, t, true, false);
+ g_date_time_unref(t);
+
+ /* Fails for both ADD and SET */
+ TEST_NEW(G_TYPE_DOUBLE, double, 1.2345, false, false);
+
+#undef TEST_NEW
+}
+
+static void
+test_set_for_id_existing_key (Fixture *fixture, gconstpointer data)
+{
+ gboolean is_set_op = GPOINTER_TO_INT (data);
+
+#define TEST_EXISTING(key_name, type, getter, value, st_set, st_add) { \
+ GValue key_value = G_VALUE_INIT; \
+ GrlKeyID key_id = grl_registry_lookup_metadata_key (fixture->registry, \
+ key_name); \
+ g_assert_true (key_id != GRL_METADATA_KEY_INVALID); \
+ \
+ g_value_init (&key_value, type); \
+ g_value_set_##getter (&key_value, value); \
+ GrlMedia *media = grl_media_new (); \
+ if (is_set_op) { \
+ if (!st_set) \
+ g_test_expect_message ("Grilo", G_LOG_LEVEL_WARNING, \
+ "*is being ignored as*is not being handled*"); \
+ g_assert_##st_set (grl_data_set_for_id (GRL_DATA (media), key_name, &key_value)); \
+ } else { \
+ if (!st_add) \
+ g_test_expect_message ("Grilo", G_LOG_LEVEL_WARNING, \
+ "*is being ignored as*is not being handled*"); \
+ g_assert_##st_add (grl_data_add_for_id (GRL_DATA (media), key_name, &key_value)); \
+ } \
+ if (!st_set || !st_add) \
+ g_test_assert_expected_messages (); \
+ \
+ if ((is_set_op && st_set) || (!is_set_op && st_add)) { \
+ gchar *mstr = g_strdup_value_contents (grl_data_get(GRL_DATA (media), \
+ key_id)); \
+ gchar *vstr = g_strdup_value_contents (&key_value); \
+ g_assert_cmpstr (mstr, ==, vstr); \
+ g_free (mstr); \
+ g_free (vstr); \
+ } \
+ g_object_unref (media); \
+ }
+
+ /* Works for both ADD and SET */
+ TEST_EXISTING("title", G_TYPE_STRING, string, "any-title", true, true);
+ TEST_EXISTING("bitrate", G_TYPE_INT, int, G_MAXINT, true, true);
+ TEST_EXISTING("size", G_TYPE_INT64, int64, G_MAXINT64, true, true);
+ TEST_EXISTING("rating", G_TYPE_FLOAT, float, 0.12345, true, true);
+
+ /* Works for SET and fails for ADD */
+ TEST_EXISTING("favourite", G_TYPE_BOOLEAN, boolean, TRUE, true, false);
+
+ GDateTime *t = g_date_time_new_now_local();
+ TEST_EXISTING("creation-date", G_TYPE_DATE_TIME, boxed, t, true, false);
+ g_date_time_unref(t);
+
+#undef TEST_EXISTING
+}
+
+int
+main (int argc, char **argv)
+{
+ setlocale (LC_ALL, "");
+
+ g_test_init (&argc, &argv, NULL);
+
+ grl_init (&argc, &argv);
+
+ g_test_add ("/data/new/set-for-id",
+ Fixture, GINT_TO_POINTER (TRUE),
+ fixture_setup,
+ test_set_for_id_new_key,
+ fixture_teardown);
+
+ g_test_add ("/data/new/add-for-id",
+ Fixture, GINT_TO_POINTER (FALSE),
+ fixture_setup,
+ test_set_for_id_new_key,
+ fixture_teardown);
+
+ g_test_add ("/data/existing/set-for-id",
+ Fixture, GINT_TO_POINTER (TRUE),
+ fixture_setup,
+ test_set_for_id_existing_key,
+ fixture_teardown);
+
+ g_test_add ("/data/existing/add-for-id",
+ Fixture, GINT_TO_POINTER (FALSE),
+ fixture_setup,
+ test_set_for_id_existing_key,
+ fixture_teardown);
+
+ return g_test_run ();
+}
diff --git a/tests/meson.build b/tests/meson.build
index 605ad56..e6910d1 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -7,6 +7,7 @@
tests = [
'autoptr',
'lib-net',
+ 'media',
'registry',
]