Add test suite for GBookmarkFile.

2006-03-27  Emmanuele Bassi  <ebassi@cvs.gnome.org>

	* tests/Makefile.am:
	* tests/bookmarkfile-test.c:
	* tests/run-bookmark-test.sh:
	* tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
This commit is contained in:
Emmanuele Bassi 2006-03-27 18:28:07 +00:00 committed by Emmanuele Bassi
parent 189c2c213e
commit 9bf3a0fa5f
24 changed files with 646 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2006-03-27 Emmanuele Bassi <ebassi@cvs.gnome.org>
* tests/Makefile.am:
* tests/bookmarkfile-test.c:
* tests/run-bookmark-test.sh:
* tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
2006-03-27 Emmanuele Bassi <ebassi@cvs.gnome.org>
* docs/reference/glib/glib-docs.sgml:

View File

@ -1,3 +1,10 @@
2006-03-27 Emmanuele Bassi <ebassi@cvs.gnome.org>
* tests/Makefile.am:
* tests/bookmarkfile-test.c:
* tests/run-bookmark-test.sh:
* tests/bookmarks/*.xbel: Add test suite for GBookmarkFile.
2006-03-27 Emmanuele Bassi <ebassi@cvs.gnome.org>
* docs/reference/glib/glib-docs.sgml:

View File

@ -63,6 +63,7 @@ endif
test_programs = \
atomic-test \
array-test \
bookmarkfile-test \
$(CXX_TEST) \
child-test \
completion-test \
@ -126,6 +127,7 @@ module_ldadd = $(libgmodule) $(G_MODULE_LIBS) $(progs_ldadd)
atomic_test_LDADD = $(progs_ldadd)
array_test_LDADD = $(progs_ldadd)
bookmarkfile_test_LDADD = $(progs_ldadd)
child_test_LDADD = $(thread_ldadd)
completion_test_LDADD = $(progs_ldadd)
convert_test_LDADD = $(progs_ldadd)

240
tests/bookmarkfile-test.c Normal file
View File

@ -0,0 +1,240 @@
#undef G_DISABLE_ASSERT
#include <glib.h>
#include <time.h>
#include <locale.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#define TEST_URI_0 "file:///abc/defgh/ijklmnopqrstuvwxyz"
#define TEST_URI_1 "file:///test/uri/1"
#define TEST_URI_2 "file:///test/uri/2"
#define TEST_MIME "text/plain"
#define TEST_APP_NAME "bookmarkfile-test"
#define TEST_APP_EXEC "bookmarkfile-test %f"
static void
test_assert_empty_error (GError **error)
{
if (*error != NULL)
{
g_warning ("Unexpected error (d: %s, c: %d): %s\n",
g_quark_to_string ((*error)->domain),
(*error)->code,
(*error)->message);
g_error_free (*error);
g_assert_not_reached ();
}
}
static void
test_assert_not_empty_error (GError **error,
GQuark domain,
gint code)
{
if (*error == NULL)
{
g_warning ("Unexpected success (%s domain expected)\n",
g_quark_to_string (domain));
g_assert_not_reached ();
}
if ((*error)->domain != domain)
{
g_warning ("Unexpected domain %s (%s domain expected)\n",
g_quark_to_string ((*error)->domain),
g_quark_to_string (domain));
g_assert_not_reached ();
}
if ((*error)->code != code)
{
g_warning ("Unexpected code %d (%d code expected)\n",
(*error)->code,
code);
g_assert_not_reached ();
}
g_error_free (*error);
*error = NULL;
}
static void
test_assert_str_equal (const gchar *str,
const gchar *cmp)
{
if (strcmp (str, cmp) != 0)
{
g_warning ("Unexpected string '%s' ('%s' expected)\n", str, cmp);
g_assert_not_reached ();
}
}
static gboolean
test_load (GBookmarkFile *bookmark,
const gchar *filename)
{
GError *error = NULL;
gboolean res;
res = g_bookmark_file_load_from_file (bookmark, filename, &error);
if (error)
{
g_print ("Load error: %s\n", error->message);
g_error_free (error);
}
return res;
}
static gboolean
test_query (GBookmarkFile *bookmark)
{
gint size;
gchar **uris;
gsize uris_len, i;
gboolean res = TRUE;
size = g_bookmark_file_get_size (bookmark);
uris = g_bookmark_file_get_uris (bookmark, &uris_len);
if (uris_len != size)
{
g_print ("URI/size mismatch: URI count is %d (should be %d)\n", uris_len, size);
res = FALSE;
}
for (i = 0; i < uris_len; i++)
if (!g_bookmark_file_has_item (bookmark, uris[i]))
{
g_print ("URI/bookmark mismatch: bookmark for '%s' does not exist\n", uris[i]);
res = FALSE;
}
g_strfreev (uris);
return res;
}
static gboolean
test_modify (GBookmarkFile *bookmark)
{
gchar *text;
guint count;
time_t stamp;
GError *error = NULL;
g_print ("\t=> check global title/description...");
g_bookmark_file_set_title (bookmark, NULL, "a file");
g_bookmark_file_set_description (bookmark, NULL, "a bookmark file");
text = g_bookmark_file_get_title (bookmark, NULL, &error);
test_assert_empty_error (&error);
test_assert_str_equal (text, "a file");
g_free (text);
text = g_bookmark_file_get_description (bookmark, NULL, &error);
test_assert_empty_error (&error);
test_assert_str_equal (text, "a bookmark file");
g_free (text);
g_print ("ok\n");
g_print ("\t=> check bookmark title/description...");
g_bookmark_file_set_title (bookmark, TEST_URI_0, "a title");
g_bookmark_file_set_description (bookmark, TEST_URI_0, "a description");
text = g_bookmark_file_get_title (bookmark, TEST_URI_0, &error);
test_assert_empty_error (&error);
test_assert_str_equal (text, "a title");
g_free (text);
g_print ("ok\n");
g_print ("\t=> check non existing bookmark...");
g_bookmark_file_get_description (bookmark, TEST_URI_1, &error);
test_assert_not_empty_error (&error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_URI_NOT_FOUND);
g_print ("ok\n");
g_print ("\t=> check application...");
g_bookmark_file_set_mime_type (bookmark, TEST_URI_0, TEST_MIME);
g_bookmark_file_add_application (bookmark, TEST_URI_0,
TEST_APP_NAME,
TEST_APP_EXEC);
g_assert (g_bookmark_file_has_application (bookmark, TEST_URI_0, TEST_APP_NAME, NULL) == TRUE);
g_bookmark_file_get_app_info (bookmark, TEST_URI_0, TEST_APP_NAME,
&text,
&count,
&stamp,
&error);
test_assert_empty_error (&error);
g_assert (count == 1);
g_assert (stamp == g_bookmark_file_get_modified (bookmark, TEST_URI_0, NULL));
g_free (text);
g_bookmark_file_get_app_info (bookmark, TEST_URI_0, "fail",
&text,
&count,
&stamp,
&error);
test_assert_not_empty_error (&error, G_BOOKMARK_FILE_ERROR, G_BOOKMARK_FILE_ERROR_APP_NOT_REGISTERED);
g_print ("ok\n");
g_print ("\t=> check groups...");
g_bookmark_file_add_group (bookmark, TEST_URI_1, "Test");
g_assert (g_bookmark_file_has_group (bookmark, TEST_URI_1, "Test", NULL) == TRUE);
g_assert (g_bookmark_file_has_group (bookmark, TEST_URI_1, "Fail", NULL) == FALSE);
g_print ("ok\n");
return TRUE;
}
static gint
test_file (const gchar *filename)
{
GBookmarkFile *bookmark_file;
gboolean success;
g_return_val_if_fail (filename != NULL, 1);
g_print ("checking GBookmarkFile...\n");
bookmark_file = g_bookmark_file_new ();
g_assert (bookmark_file != NULL);
success = test_load (bookmark_file, filename);
if (success)
{
success = test_query (bookmark_file);
success = test_modify (bookmark_file);
}
g_bookmark_file_free (bookmark_file);
g_print ("ok\n");
return (success == TRUE ? 0 : 1);
}
int
main (int argc,
char *argv[])
{
if (argc > 1)
return test_file (argv[1]);
else
{
fprintf (stderr, "Usage: bookmarkfile-test <bookmarkfile>\n");
return 1;
}
}

View File

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<fail/>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark>
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" fail="attr">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file & containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</bookmark>
</xbel>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata>
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<bookmark:fail/>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<bookmark:applications>
<bookmark:application/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<title>&</title>
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
<bookmark:icon type="image/png"/>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
<fail/>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
<bookmark:groups>
<fail>Test</fail>
</bookmark:groups>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
<bookmark:groups>
<bookmark:group>Test</bookmark:group>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
<bookmark:groups>
<bookmark:group>Test</group>
</bookmark:groups>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
<invalid/>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE xbel
PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML"
"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd">
<xbel version="1.0"
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
>
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime:mime-type type="application/postscript"/>
<bookmark:applications>
<bookmark:application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</bookmark:applications>
</metadata>
</info>
</bookmark>
</xbel>

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<xbel version="1.0">
<title>Singleton</title>
<desc>A file containing a single bookmark element</desc>
<bookmark href="file:///home/zefram/Documents/milan-stuttgart.ps" added="20050930T23:05:28Z" modified="20050930T23:05:28Z" visited="20050930T23:05:28Z">
<info>
<metadata owner="http://freedesktop.org">
<mime-type type="application/postscript"/>
<applications>
<application name="populate-recent" exec="populate-recent --info %u" timestamp="1128121528" count="1"/>
</applications>
</metadata>
</info>
</bookmark>
</xbel>

34
tests/run-bookmark-test.sh Executable file
View File

@ -0,0 +1,34 @@
#! /bin/sh
fail ()
{
echo "Test failed: $*"
exit 1
}
echo_v ()
{
if [ "$verbose" = "1" ]; then
echo "$*"
fi
}
error_out=/dev/null
if [ "$1" = "-v" ]; then
verbose=1
error_out=/dev/stderr
fi
for I in ${srcdir:-.}/bookmarks/fail-*.xbel; do
echo_v "Parsing $I, should fail"
./bookmarkfile-test $I > /dev/null 2> $error_out && fail "failed to generate error on $I"
if test "$?" != "1"; then
fail "unexpected error on $I"
fi
done
for I in ${srcdir:-.}/bookmarks/valid-*.xbel; do
echo_v "Parsing $I, should succeed"
./bookmarkfile-test $I > /dev/null 2> $error_out || fail "failed on $I"
done
echo_v "All tests passed."