run.js revision d1e25a21be0403ed5f4ea45f589a3956592befd9
/**
* 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, localStorage, sessionStorage */
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_INITIALIZED, 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"),
configDelegate = require("org/forgerock/openidm/ui/common/delegates/ConfigDelegate");
configDelegate.clearDelegateCache();
server.responses = [];
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);
});
};
});