[libgdata] atom: Fix attribute escaping for GDataAuthor
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgdata] atom: Fix attribute escaping for GDataAuthor
- Date: Thu, 2 Dec 2010 11:53:56 +0000 (UTC)
commit edf4d2e0afa128bcae9ef348a085e63fd6f19952
Author: Philip Withnall <philip tecnocode co uk>
Date: Thu Dec 2 11:44:03 2010 +0000
atom: Fix attribute escaping for GDataAuthor
Helps: bgo#631033
gdata/tests/general.c | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
---
diff --git a/gdata/tests/general.c b/gdata/tests/general.c
index 472a377..0c56fb1 100644
--- a/gdata/tests/general.c
+++ b/gdata/tests/general.c
@@ -1053,6 +1053,27 @@ test_atom_author_error_handling (void)
}
static void
+test_atom_author_escaping (void)
+{
+ GDataAuthor *author;
+ gchar *xml;
+
+ author = gdata_author_new ("First & Last Name", "http://foo.com?foo&bar", "John Smith <john smith gmail com>");
+
+ /* Check the outputted XML is escaped properly */
+ xml = gdata_parsable_get_xml (GDATA_PARSABLE (author));
+ g_assert_cmpstr (xml, ==,
+ "<?xml version='1.0' encoding='UTF-8'?>"
+ "<author xmlns='http://www.w3.org/2005/Atom'>"
+ "<name>First & Last Name</name>"
+ "<uri>http://foo.com?foo&bar</uri>"
+ "<email>John Smith <john smith gmail com></email>"
+ "</author>");
+ g_free (xml);
+ g_object_unref (author);
+}
+
+static void
test_atom_category (void)
{
GDataCategory *category, *category2;
@@ -3275,6 +3296,7 @@ main (int argc, char *argv[])
g_test_add_func ("/atom/author", test_atom_author);
g_test_add_func ("/atom/author/error_handling", test_atom_author_error_handling);
+ g_test_add_func ("/atom/author/escaping", test_atom_author_escaping);
g_test_add_func ("/atom/category", test_atom_category);
g_test_add_func ("/atom/category/error_handling", test_atom_category_error_handling);
g_test_add_func ("/atom/generator", test_atom_generator);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]