1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
|
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
/*
* Copyright (c) 2008 litl, LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include <config.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <gjs/gjs-module.h>
#include <util/crash.h>
#include <locale.h>
#include <string.h>
typedef struct {
GjsContext *context;
} GjsTestJSFixture;
static char *top_srcdir;
static void
setup(GjsTestJSFixture *fix,
gconstpointer test_data)
{
gboolean success;
GError *error = NULL;
int code;
char *filename;
char *search_path[2];
const char *test_filename = test_data;
const char *js_version;
js_version = gjs_context_scan_file_for_js_version(test_filename);
search_path[0] = g_build_filename(top_srcdir, "test", "modules", NULL);
search_path[1] = NULL;
fix->context = g_object_new (GJS_TYPE_CONTEXT,
"search-path", search_path,
"js-version", js_version,
NULL);
g_free(search_path[0]);
/* Load jsUnit.js directly into global scope, rather than
* requiring each test to import it as a module, among other
* things this lets us test importing modules without relying on
* importing a module, but also it's just less typing to have
* "assert*" without a prefix.
*/
filename = g_build_filename(top_srcdir, "modules", "jsUnit.js", NULL);
success = gjs_context_eval_file(fix->context, filename, &code, &error);
g_free(filename);
if (!success)
g_error("%s", error->message);
}
static void
teardown(GjsTestJSFixture *fix,
gconstpointer test_data)
{
gjs_memory_report("before destroying context", FALSE);
g_object_unref(fix->context);
gjs_memory_report("after destroying context", TRUE);
}
static void
test(GjsTestJSFixture *fix,
gconstpointer test_data)
{
GError *error = NULL;
gboolean success;
int code;
success = gjs_context_eval_file(fix->context, (const char*)test_data, &code, &error);
if (!success)
g_error("%s", error->message);
g_assert(error == NULL);
if (code != 0)
g_error("Test script returned code %d; assertions will be in gjs.log", code);
}
static GSList *
read_all_dir_sorted (const char *dirpath)
{
GSList *result = NULL;
GDir *dir;
const char *name;
dir = g_dir_open(dirpath, 0, NULL);
g_assert(dir != NULL);
while ((name = g_dir_read_name(dir)) != NULL)
result = g_slist_prepend (result, g_strdup (name));
result = g_slist_sort(result, (GCompareFunc) strcmp);
g_dir_close(dir);
return result;
}
/* Always return an absolute filename and treat all absolute path elements as
* absolute, not just the first one, e.g.
* ("/foo", "/bar", NULL) returns "/bar"
* (g_build_filename would return "/foo/bar")
* Returned path may still include '..' path elements.
*/
static char *
build_absolute_filename(const char *first_element,
...)
{
const char *element;
va_list ap;
char *cwd;
char *path;
GPtrArray *array;
cwd = g_get_current_dir();
array = g_ptr_array_new();
g_ptr_array_add(array, cwd);
va_start(ap, first_element);
element = first_element;
while (element != NULL) {
if (g_path_is_absolute(element))
g_ptr_array_set_size(array, 0);
g_ptr_array_add(array, (char*)element);
element = va_arg(ap, const char *);
}
va_end(ap);
g_ptr_array_add(array, NULL);
path = g_build_filenamev((char **)array->pdata);
g_ptr_array_free(array, TRUE);
g_free(cwd);
return path;
}
int
main(int argc, char **argv)
{
/* These may be absolute or relative to top_builddir, depending whether
* GJS_TOP_SRCDIR is absolute or not */
const char * const path_directories[] = {
GJS_TOP_SRCDIR"/modules",
GJS_TOP_SRCDIR"/test/js/modules",
".libs:",
NULL
};
char *js_test_dir;
char *working_dir;
char *gjs_unit_path;
char *gjs_unit_dir;
char *top_builddir;
char *data_home;
GString *path;
size_t i;
GSList *all_tests, *iter;
GSList *test_filenames = NULL;
int retval;
working_dir = g_get_current_dir();
gjs_unit_path = build_absolute_filename(argv[0], NULL);
gjs_unit_dir = g_path_get_dirname(gjs_unit_path);
g_free(gjs_unit_path);
/* the gjs-unit executable will be in <top_builddir>/.libs */
top_builddir = g_path_get_dirname(gjs_unit_dir);
g_free(gjs_unit_dir);
top_srcdir = build_absolute_filename(top_builddir, GJS_TOP_SRCDIR, NULL);
/* Normalize, not strictly necessary */
g_chdir(top_builddir);
g_free(top_builddir);
top_builddir = g_get_current_dir();
g_chdir(top_srcdir);
g_free(top_srcdir);
top_srcdir = g_get_current_dir();
g_chdir(working_dir);
g_free(working_dir);
/* we're always going to use uninstalled files, set up necessary
* environment variables, but don't overwrite if already set */
data_home = g_build_filename(top_builddir, "test_user_data", NULL);
path = g_string_new(NULL);
for(i = 0; i < G_N_ELEMENTS(path_directories); i++) {
char *directory;
if (i != 0)
g_string_append_c(path, ':');
directory = build_absolute_filename(top_builddir, path_directories[i], NULL);
g_string_append(path, directory);
g_free(directory);
}
g_setenv("TOP_SRCDIR", top_srcdir, FALSE);
g_setenv("BUILDDIR", top_builddir, FALSE);
g_free(top_builddir);
g_setenv("XDG_DATA_HOME", data_home, FALSE);
g_free(data_home);
g_setenv("GJS_PATH", path->str, FALSE);
g_string_free(path, TRUE);
/* The tests are known to fail in the presence of the JIT;
* we leak objects.
* https://bugzilla.gnome.org/show_bug.cgi?id=616193
*/
g_setenv("GJS_DISABLE_JIT", "1", FALSE);
{
const char *timeout_str = g_getenv("GJS_TEST_TIMEOUT");
if (timeout_str != NULL) {
guint timeout = (guint)g_ascii_strtoull(timeout_str, NULL, 10);
if (timeout > 0)
gjs_crash_after_timeout(timeout);
}
}
setlocale(LC_ALL, "");
g_test_init(&argc, &argv, NULL);
g_type_init();
/* iterate through all 'test*.js' files in ${top_srcdir}/test/js */
js_test_dir = g_build_filename(top_srcdir, "test", "js", NULL);
all_tests = read_all_dir_sorted(js_test_dir);
for (iter = all_tests; iter; iter = iter->next) {
char *name = iter->data;
char *test_name;
char *file_name;
if (!(g_str_has_prefix(name, "test") &&
g_str_has_suffix(name, ".js"))) {
g_free(name);
continue;
}
/* pretty print, drop 'test' prefix and '.js' suffix from test name */
test_name = g_strconcat("/js/", name + 4, NULL);
test_name[strlen(test_name)-3] = '\0';
file_name = g_build_filename(js_test_dir, name, NULL);
g_test_add(test_name, GjsTestJSFixture, file_name, setup, test, teardown);
g_free(name);
g_free(test_name);
test_filenames = g_slist_prepend(test_filenames, file_name);
/* not freeing file_name yet as it's needed while running the test */
}
g_free(js_test_dir);
g_slist_free(all_tests);
retval = g_test_run ();
g_slist_foreach(test_filenames, (GFunc)g_free, test_filenames);
g_slist_free(test_filenames);
g_free(top_srcdir);
return retval;
}
|