aboutsummaryrefslogtreecommitdiffstats
path: root/unit
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-10-10 10:27:41 +0200
committerMarcel Holtmann <marcel@holtmann.org>2010-10-10 10:27:41 +0200
commit824f17d2ecf413b22c6a4e275da5b37d96ea9032 (patch)
tree75558bf5270966f5b8e486e6a547c0142bb6ec72 /unit
parent1559fd986cc0f4af6ebf467568a02197e62a9293 (diff)
downloadpacrunner-824f17d2ecf413b22c6a4e275da5b37d96ea9032.tar.gz
Add unit test for Mozilla Javascript usage
Diffstat (limited to 'unit')
-rw-r--r--unit/test-mozjs.c88
1 files changed, 88 insertions, 0 deletions
diff --git a/unit/test-mozjs.c b/unit/test-mozjs.c
new file mode 100644
index 0000000..1e6cfb4
--- /dev/null
+++ b/unit/test-mozjs.c
@@ -0,0 +1,88 @@
+/*
+ *
+ * PACrunner - Proxy configuration daemon
+ *
+ * Copyright (C) 2010 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdlib.h>
+
+#include <glib.h>
+
+#include "pacrunner.h"
+
+#define MULTIPLE_COUNT 10
+
+static void test_single_init(void)
+{
+ __pacrunner_mozjs_init();
+ __pacrunner_mozjs_cleanup();
+}
+
+static void test_multiple_init(void)
+{
+ int i;
+
+ for (i = 0; i < MULTIPLE_COUNT; i++) {
+ __pacrunner_mozjs_init();
+ __pacrunner_mozjs_cleanup();
+ }
+}
+
+static void test_single_execute_without_pac(void)
+{
+ const char *result;
+
+ __pacrunner_mozjs_init();
+
+ result = __pacrunner_mozjs_execute("http://www.example.com/",
+ "www.example.com");
+
+ __pacrunner_mozjs_cleanup();
+}
+
+static void test_multiple_execute_without_pac(void)
+{
+ const char *result;
+ int i;
+
+ __pacrunner_mozjs_init();
+
+ for (i = 0; i < MULTIPLE_COUNT; i++)
+ result = __pacrunner_mozjs_execute("http://www.example.com/",
+ "www.example.com");
+
+ __pacrunner_mozjs_cleanup();
+}
+
+int main(int argc, char **argv)
+{
+ g_test_init(&argc, &argv, NULL);
+
+ g_test_add_func("/mozjs/single-init", test_single_init);
+ g_test_add_func("/mozjs/multiple-init", test_multiple_init);
+ g_test_add_func("/mozjs/single-execute-without-pac",
+ test_single_execute_without_pac);
+ g_test_add_func("/mozjs/multiple-execute-without-pac",
+ test_multiple_execute_without_pac);
+
+ return g_test_run();
+}