run.js revision 08b5793948544288f007d40b3391a6f69e2aeb07
/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2014-2015 ForgeRock AS. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* http://forgerock.org/license/CDDLv1.0.html
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at http://forgerock.org/license/CDDLv1.0.html
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*/
/*global define, QUnit */
define([
"jquery",
"underscore",
"org/forgerock/commons/ui/common/util/Constants",
"org/forgerock/commons/ui/common/main/EventManager",
"sinon",
"../test/tests/common",
"../test/tests/specific"
], function ($, _, constants, eventManager, sinon, commonTests, specificTests) {
$.doTimeout = function (name, time, func) {
func(); // run the function immediately rather than delayed.
};
return function (server) {
eventManager.registerListener(constants.EVENT_APP_INTIALIZED, function () {
QUnit.testStart(function (testDetails) {
console.log("Starting " + testDetails.module + ":" + testDetails.name + "("+ testDetails.testNumber +")");
// every state needs to be reset at the starat of each test
var vm = require("org/forgerock/commons/ui/common/main/ViewManager"),
lqu = require("org/forgerock/openidm/ui/admin/util/LinkQualifierUtils"),
connectorDelegate = require("org/forgerock/openidm/ui/admin/delegates/ConnectorDelegate"),
configDelegate = require("org/forgerock/openidm/ui/common/delegates/ConfigDelegate");
connectorDelegate.deleteCurrentConnectorsCache();
lqu.model.linkQualifier = [];
configDelegate.clearDelegateCache();
server.responses = _.filter(server.responses, function (resp) {
return typeof resp.url === "object" && (
resp.url.test('locales/en/translation.json') ||
resp.url.test('libs/less-1.5.1-min.js')
) ||
typeof resp.url === "string" && (
resp.url === '/openidm/config/ui/themeconfig'
);
});
vm.currentView = null;
vm.currentDialog = null;
vm.currentViewArgs = null;
vm.currentDialogArgs = null;
localStorage.clear();
sessionStorage.clear();
require("org/forgerock/commons/ui/common/main/Configuration").baseTemplate = null;
});
QUnit.testDone(function () {
// various widgets which get added outside of the fixture and need to be cleaned up
$(".modal-backdrop").remove();
//$(".modal").remove();
$(".ui-autocomplete").remove();
$(".ui-helper-hidden-accessible").remove();
$("body").removeClass("modal-open");
});
QUnit.done(function () {
localStorage.clear();
sessionStorage.clear();
Backbone.history.stop();
window.location.hash = "";
});
_.delay(function () {
QUnit.start();
commonTests.executeAll(server);
specificTests.executeAll(server);
}, 500);
});
};
});