2015-10-27 20:59:15 +00:00
|
|
|
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
|
|
* Proprietary and Confidential
|
|
|
|
*/
|
2015-10-02 21:57:54 +00:00
|
|
|
|
2015-10-06 07:57:35 +00:00
|
|
|
'use strict';
|
2015-10-02 22:15:25 +00:00
|
|
|
|
2016-02-15 22:22:40 +00:00
|
|
|
var TESTS = {
|
|
|
|
ListTests: require('./list-tests'),
|
|
|
|
ObjectTests: require('./object-tests'),
|
|
|
|
RealmTests: require('./realm-tests'),
|
|
|
|
ResultsTests: require('./results-tests'),
|
|
|
|
QueryTests: require('./query-tests'),
|
|
|
|
};
|
2015-10-15 01:52:55 +00:00
|
|
|
|
2015-10-15 18:34:24 +00:00
|
|
|
var SPECIAL_METHODS = {
|
|
|
|
beforeEach: true,
|
|
|
|
afterEach: true,
|
|
|
|
};
|
|
|
|
|
2016-02-15 22:22:40 +00:00
|
|
|
exports.getTestNames = function() {
|
|
|
|
var testNames = {};
|
|
|
|
|
|
|
|
for (var suiteName in TESTS) {
|
|
|
|
var testSuite = TESTS[suiteName];
|
|
|
|
|
|
|
|
testNames[suiteName] = Object.keys(testSuite).filter(function(testName) {
|
|
|
|
return !(testName in SPECIAL_METHODS) && typeof testSuite[testName] == 'function';
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return testNames;
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.runTest = function(suiteName, testName) {
|
|
|
|
var testSuite = TESTS[suiteName];
|
|
|
|
var testMethod = testSuite && testSuite[testName];
|
|
|
|
|
|
|
|
if (testMethod) {
|
|
|
|
testMethod.call(testSuite);
|
|
|
|
} else if (!testSuite || !(testName in SPECIAL_METHODS)) {
|
|
|
|
throw new Error('Missing test: ' + suiteName + '.' + testName);
|
|
|
|
}
|
|
|
|
};
|