aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar uranther <jwheaton@purdue.edu>2009-06-24 16:33:30 -0400
committerGravatar uranther <jwheaton@purdue.edu>2009-06-24 16:33:30 -0400
commit00fbb3b2a6301e9694386480e44eaad4f59ee83c (patch)
treeba88a7ba6226341973165954510185f44d2af676 /tests
parentf6348eb684e057960e4d5689766204893bdbab1e (diff)
Preliminary uzbl testing framework - props to bct for the help
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile14
-rw-r--r--tests/test-1.c47
2 files changed, 61 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 0000000..43a878b
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,14 @@
+CFLAGS:=-std=c99 -I$(shell pwd)/../ -L$(shell pwd) -luzbl $(shell pkg-config --cflags gtk+-2.0 webkit-1.0 libsoup-2.4) -ggdb -Wall -W -DARCH="\"$(shell uname -m)\"" -DG_ERRORCHECK_MUTEXES -DCOMMIT="\"$(shell git log | head -n1 | sed "s/.* //")\"" $(CPPFLAGS)
+LDFLAGS:=$(shell pkg-config --libs gtk+-2.0 webkit-1.0 libsoup-2.4) -pthread $(LDFLAGS)
+
+GTESTER:=gtester
+GTESTER_REPORT:=gtester-report
+
+TEST_PROGS:=test-1
+
+all: $(TEST_PROGS)
+ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:." $(GTESTER) --verbose $(TEST_PROGS)
+
+clean:
+ rm -f $(TEST_PROGS)
+ rm -f libuzbl.so
diff --git a/tests/test-1.c b/tests/test-1.c
new file mode 100644
index 0000000..0fb86b6
--- /dev/null
+++ b/tests/test-1.c
@@ -0,0 +1,47 @@
+/* -*- 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 <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>
+
+Uzbl uzbl;
+
+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-1/URI", test_URI);
+
+ return g_test_run();
+}
+
+/* vi: set et ts=4: */