specific.js revision d1e25a21be0403ed5f4ea45f589a3956592befd9
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel/**
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel * Copyright (c) 2014-2015 ForgeRock AS. All Rights Reserved
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * The contents of this file are subject to the terms
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * of the Common Development and Distribution License
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * (the License). You may not use this file except in
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * compliance with the License.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * You can obtain a copy of the License at
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * http://forgerock.org/license/CDDLv1.0.html
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * See the License for the specific language governing
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * permission and limitations under the License.
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel *
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * When distributing Covered Code, include this CDDL
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * Header Notice in each file and include the License file
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * at http://forgerock.org/license/CDDLv1.0.html
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * If applicable, add the following below the CDDL Header,
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * with the fields enclosed by brackets [] replaced by
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * your own identifying information:
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel * "Portions Copyrighted [year] [name of copyright owner]"
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel */
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel/*global require, define, QUnit, $ */
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feaseldefine([
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./managedobjects/managedObjectsTest",
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne "./resources/resourceTest",
433f48af5998e03a03440dce699c9dcfd7b86375Jason Browne "./mapping/addMappingTest",
540772c380f0a368687ce285f9b915e0affec03dhuck.elliott "./mapping/reconTests",
d64a1b8fb5da22f61ec70398ba83a80b8efa46a2Jason Browne "./mapping/propertyMappingTest",
67c044a145fa1987d77d3f609876a839b0240ed0Jason Browne "./mapping/correlationTest",
e3cca5e1f9f9a55839d4bd7d34f51145f835a7b8Jason Browne "./mapping/linkQualifierTest",
67c044a145fa1987d77d3f609876a839b0240ed0Jason Browne "./connector/editConnectorTest",
08b5793948544288f007d40b3391a6f69e2aeb07huck.elliott "./connector/addConnectorTest",
08b5793948544288f007d40b3391a6f69e2aeb07huck.elliott "./resourceData/editResourceViewTest"
e3cca5e1f9f9a55839d4bd7d34f51145f835a7b8Jason Browne], function (moTest, resourceTest, addMappingTest, reconTests, propertyMappingTest, correlationTest, linkQualifierTest, editConnectorTest, addConnectorTest, editResourceViewTest) {
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel return {
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel executeAll: function (server) {
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel QUnit.testStart(function (testDetails) {
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel var lqu = require("org/forgerock/openidm/ui/admin/util/LinkQualifierUtils"),
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel connectorDelegate = require("org/forgerock/openidm/ui/admin/delegates/ConnectorDelegate");
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel connectorDelegate.deleteCurrentConnectorsCache();
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel lqu.model.linkQualifier = [];
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel });
d1e25a21be0403ed5f4ea45f589a3956592befd9Jake Feasel
c6acaf789531718f174a4fc5b87aaed163b861dbJason Browne QUnit.moduleDone(function() {
c6acaf789531718f174a4fc5b87aaed163b861dbJason Browne $(".bootstrap-dialog").remove();
c6acaf789531718f174a4fc5b87aaed163b861dbJason Browne });
e217869edbae075c18fd85c2d468a7ce9050b3b3Jake Feasel
c6acaf789531718f174a4fc5b87aaed163b861dbJason Browne addMappingTest.executeAll(server);
d1a2899a06be1eab885056aeda85adcd67c010b0Jason Browne resourceTest.executeAll(server);
7ed4684789d023e1d4ede1b0d4468b9724587466Elizabeth Browne reconTests.executeAll(server);
d64a1b8fb5da22f61ec70398ba83a80b8efa46a2Jason Browne correlationTest.executeAll(server);
e3cca5e1f9f9a55839d4bd7d34f51145f835a7b8Jason Browne linkQualifierTest.executeAll(server);
c6acaf789531718f174a4fc5b87aaed163b861dbJason Browne moTest.executeAll(server);
c6acaf789531718f174a4fc5b87aaed163b861dbJason Browne propertyMappingTest.executeAll(server);
67c044a145fa1987d77d3f609876a839b0240ed0Jason Browne editConnectorTest.executeAll(server);
67c044a145fa1987d77d3f609876a839b0240ed0Jason Browne addConnectorTest.executeAll(server);
08b5793948544288f007d40b3391a6f69e2aeb07huck.elliott editResourceViewTest.executeAll(server);
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel }
c54f5c9f018cfaf6792ae351d3f0be15efdd175eJake Feasel };
01a229e011c0d84be34e967cf517d35a476c541aJake Feasel});