aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test-expand.c
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2009-07-06 18:41:18 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2009-07-06 18:41:18 -0600
commitac583cbf2d6c74c5d125640e8f8ff7d23ee59db7 (patch)
tree8ff7bb443d8ff2bf32ccef91416e63336623a210 /tests/test-expand.c
parent95f44d36814626bf93d2934c400ef548a6bd1fe7 (diff)
simple expansion test passes.
Diffstat (limited to 'tests/test-expand.c')
-rw-r--r--tests/test-expand.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/test-expand.c b/tests/test-expand.c
new file mode 100644
index 0000000..d77c42e
--- /dev/null
+++ b/tests/test-expand.c
@@ -0,0 +1,50 @@
+/* -*- c-basic-offset: 4; -*- */
+#define _POSIX_SOURCE
+
+#include <gtk/gtk.h>
+#include <gdk/gdkx.h>
+#include <gdk/gdkkeysyms.h>
+#include <sys/socket.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <sys/un.h>
+#include <sys/utsname.h>
+#include <sys/time.h>
+#include <webkit/webkit.h>
+#include <libsoup/soup.h>
+#include <JavaScriptCore/JavaScript.h>
+
+#include <stdio.h>
+#include <string.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <signal.h>
+
+#include <uzbl.h>
+#include <config.h>
+
+extern Uzbl uzbl;
+
+extern gchar* expand_template(const char*, gboolean);
+
+static void
+test_URI (void) {
+ setup_scanner();
+ uzbl.state.uri = g_strdup("http://www.uzbl.org/");
+ g_assert_cmpstr(expand_template("URI", FALSE), ==, uzbl.state.uri);
+ g_free(uzbl.state.uri);
+}
+
+int
+main (int argc, char *argv[]) {
+ g_type_init();
+ g_test_init(&argc, &argv, NULL);
+
+ g_test_add_func("/test-expand/URI", test_URI);
+
+ return g_test_run();
+}
+
+/* vi: set et ts=4: */