aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar Brendan Taylor <whateley@gmail.com>2009-07-16 18:01:24 -0600
committerGravatar Brendan Taylor <whateley@gmail.com>2009-07-16 18:01:24 -0600
commit87319b49b48fc54cbca58f830b5e7f61b79e6ff7 (patch)
tree0be3b4ac50af732d25cc8aec08e0949e6d401e7c /tests
parent1c079d2ab38b87f2abb3d980ec9b43200d2711e0 (diff)
parent771d31746357df349308cb4094f2873837e90a24 (diff)
Merge branch 'experimental' of git://github.com/Dieterbe/uzbl into replace-expand-template
Conflicts: Makefile tests/Makefile uzbl.c uzbl.h
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile3
-rw-r--r--tests/test-1.c48
2 files changed, 51 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 7901b7d..9db398a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,5 +1,8 @@
CFLAGS:=-std=c99 -I$(shell pwd)/../ -L$(shell pwd) -luzbl $(shell pkg-config --cflags gtk+-2.0 webkit-1.0 libsoup-2.4 gthread-2.0) -ggdb -Wall -W -DARCH="\"$(shell uname -m)\"" -lgthread-2.0 -DG_ERRORCHECK_MUTEXES -DCOMMIT="\"$(shell git log | head -n1 | sed "s/.* //")\"" $(CPPFLAGS)
+CFLAGS!=echo -std=c99 `pkg-config --cflags gtk+-2.0 webkit-1.0 libsoup-2.4 gthread-2.0` -ggdb -Wall -W -DARCH='"\""'`uname -m`'"\""' -lgthread-2.0 -DG_ERRORCHECK_MUTEXES -DCOMMIT='"\""'`git log | head -n1 | sed "s/.* //"`'"\""' $(CPPFLAGS)
+
LDFLAGS:=$(shell pkg-config --libs gtk+-2.0 webkit-1.0 libsoup-2.4 gthread-2.0) -pthread $(LDFLAGS)
+LDFLAGS!=echo `pkg-config --libs gtk+-2.0 webkit-1.0 libsoup-2.4 gthread-2.0` -pthread $(LDFLAGS)
GTESTER:=gtester
GTESTER_REPORT:=gtester-report
diff --git a/tests/test-1.c b/tests/test-1.c
new file mode 100644
index 0000000..3a94c9b
--- /dev/null
+++ b/tests/test-1.c
@@ -0,0 +1,48 @@
+/* -*- 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>
+
+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: */