Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d06ed99818e1bdee38f9c4d25f1be879406af9ff (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2015 QNX Software Systems and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * QNX Software Systems - Initial API and implementation
 *******************************************************************************/
"use strict";

var tests = [];

exports.test = function(code, ast, options) {
	tests.push({code: code, ast: ast, options: options});
};
exports.testFail = function(code, message, options) {
	tests.push({code: code, error: message, options: options});
};
exports.testAssert = function(code, assert, options) {
	tests.push({code: code, assert: assert, options: options});
};

exports.runTests = function(config, callback) {
	var parse = config.parse;
	var opts = config.options || {};

	for (var i = 0; i < tests.length; ++i) {
		var test = tests[i];
		if (config.filter && !config.filter(test)) continue;
		try {
			var testOpts = test.options || {locations: true};
			for (var opt in opts) {
				testOpts[opt] = opts[opt];
			}
			var expected = {};
			if ((expected.onComment = testOpts.onComment)) {
				testOpts.onComment = [];
			}
			if ((expected.onToken = testOpts.onToken)) {
				testOpts.onToken = [];
			}
			testOpts.plugins = { qml: true };
			testOpts.pluginsLoose = { qml: true };
			var ast = parse(test.code, testOpts);
			if (test.error) {
				if (config.loose) {
					callback("ok", test.code);
				} else {
					callback("fail", test.code, "Expected error message: " + test.error + "\nBut parsing succeeded.");
				}
			}
			else if (test.assert) {
				var error = test.assert(ast);
				if (error) callback("fail", test.code,
                               "\n  Assertion failed:\n " + error);
				else callback("ok", test.code);
			} else {
				var mis = misMatch(test.ast, ast);
				for (var name in expected) {
					if (mis) break;
					if (expected[name]) {
						mis = misMatch(expected[name], testOpts[name]);
						testOpts[name] = expected[name];
					}
				}
				if (mis) callback("fail", test.code, mis);
				else callback("ok", test.code);
			}
		} catch(e) {
			if (!(e instanceof SyntaxError || e instanceof Error)) {
				throw e;
			}
			if (test.error) {
				if (e.message == test.error) callback("ok", test.code);
				else callback("fail", test.code,
                      "Expected error message: " + test.error + "\nGot error message: " + e.message);
			} else {
				callback("error", test.code, e.stack || e.toString());
			}
		}
	}
};

function ppJSON(v) { return v instanceof RegExp ? v.toString() : JSON.stringify(v, null, 2); }
function addPath(str, pt) {
	if (str.charAt(str.length-1) == ")")
		return str.slice(0, str.length-1) + "/" + pt + ")";
	return str + " (" + pt + ")";
}

var misMatch = exports.misMatch = function(exp, act) {
	var mis = null;
	if (!exp || !act || (typeof exp != "object") || (typeof act != "object")) {
		if (exp !== act) return ppJSON(exp) + " !== " + ppJSON(act);
	} else if (exp instanceof RegExp || act instanceof RegExp) {
		var left = ppJSON(exp), right = ppJSON(act);
		if (left !== right) return left + " !== " + right;
	} else if (exp.splice) {
		if (!act.slice) return ppJSON(exp) + " != " + ppJSON(act);
		if (act.length != exp.length) return "array length mismatch " + exp.length + " != " + act.length;
		for (var i = 0; i < act.length; ++i) {
			mis = misMatch(exp[i], act[i]);
			if (mis) return addPath(mis, i);
		}
	} else {
		for (var prop in exp) {
			mis = misMatch(exp[prop], act[prop]);
			if (mis) return addPath(mis, prop);
		}
	}
};

Back to the top