summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRegis Merlino <regis.merlino@intel.com>2012-10-16 15:48:34 +0200
committerJens Georg <mail@jensge.org>2012-10-24 19:41:16 +0200
commiteb3d3109d6977418cbdd56bb3994dd578cc47f0b (patch)
treefca979df694e04a049c16be425d4ed3299fcbeb9 /tests
parent0ba56f38227beb00c25dbaa260c64d86028c2d9a (diff)
downloadgupnp-av-eb3d3109d6977418cbdd56bb3994dd578cc47f0b.tar.gz
Add FeatureList XML parser test
https://bugzilla.gnome.org/show_bug.cgi?id=685963
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.am7
-rw-r--r--tests/check-feature-list-parser.c110
2 files changed, 116 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 262ec91..c404b40 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -8,9 +8,14 @@ test_search_criteria_parser_LDADD = \
$(top_builddir)/libgupnp-av/libgupnp-av-1.0.la \
$(LIBGUPNP_LIBS)
-check_PROGRAMS = check-search
+check_PROGRAMS = check-search \
+ check-feature-list-parser
check_search_SOURCES = check-search.c
check_search_LDADD = $(top_builddir)/libgupnp-av/libgupnp-av-1.0.la \
$(LIBGUPNP_LIBS)
+check_feature_list_parser_SOURCES = check-feature-list-parser.c
+check_feature_list_parser_LDADD = \
+ $(top_builddir)/libgupnp-av/libgupnp-av-1.0.la \
+ $(LIBGUPNP_LIBS)
TESTS = $(check_PROGRAMS)
diff --git a/tests/check-feature-list-parser.c b/tests/check-feature-list-parser.c
new file mode 100644
index 0000000..492d9ed
--- /dev/null
+++ b/tests/check-feature-list-parser.c
@@ -0,0 +1,110 @@
+/*
+ * Copyright (C) 2012 Intel Corporation
+ *
+ * Authors: Regis Merlino <regis.merlino@intel.com>
+ *
+ * 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 Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ */
+
+#include <libgupnp-av/gupnp-feature-list-parser.h>
+#include <stdlib.h>
+#include <string.h>
+
+static const char * const names[] = {
+ "BOOKMARK",
+ "EPG",
+};
+
+static const char * const versions[] = {
+ "1",
+ "2",
+};
+
+static const char * const ids[] = {
+ "bookmark1,bookmark2,bookmark3",
+ "epg1,epg2",
+};
+
+static const char *text =
+ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
+ "<Features "
+ "xmlns=\"urn:schemas-upnp-org:av:avs\" "
+ "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" "
+ "xsi:schemaLocation=\""
+ "urn:schemas-upnp-org:av:avs "
+ "http://www.upnp.org/schemas/av/avs-v1-20060531.xsd\">"
+ "<Feature name=\"BOOKMARK\" version=\"1\">"
+ "<objectIDs>bookmark1</objectIDs>"
+ "<objectIDs>bookmark2,bookmark3</objectIDs>"
+ "</Feature>"
+ "<Feature name=\"EPG\" version=\"2\">"
+ "<objectIDs>epg1,epg2</objectIDs>"
+ "</Feature>"
+ "</Features>";
+
+static gboolean
+check_feature (GUPnPFeature *feature)
+{
+ static int index = 0;
+
+ if (strcmp (names[index], gupnp_feature_get_name (feature)))
+ return FALSE;
+
+ if (strcmp (versions[index], gupnp_feature_get_version (feature)))
+ return FALSE;
+
+ if (strcmp (ids[index], gupnp_feature_get_object_ids (feature)))
+ return FALSE;
+
+ index++;
+
+ return TRUE;
+}
+
+int
+main (int argc, char **argv)
+{
+ GUPnPFeatureListParser *parser;
+ GError *error;
+ GList *features;
+ GList *item;
+ gboolean success = TRUE;
+
+ g_type_init ();
+
+ parser = gupnp_feature_list_parser_new ();
+
+ error = NULL;
+ features = gupnp_feature_list_parser_parse_text (parser, text, &error);
+ if (features == NULL) {
+ g_printerr ("Parse error: %s\n", error->message);
+ g_error_free (error);
+ return EXIT_FAILURE;
+ }
+
+ for (item = features; item != NULL; item = g_list_next (item)) {
+ success = check_feature ((GUPnPFeature *) item->data);
+ if (!success)
+ break;
+ }
+
+ g_print ("\n");
+
+ g_list_free_full (features, g_object_unref);
+ g_object_unref (parser);
+
+ return (success) ? EXIT_SUCCESS : EXIT_FAILURE;
+}