Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/DbInitTest.java')
-rw-r--r--plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/DbInitTest.java76
1 files changed, 76 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/DbInitTest.java b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/DbInitTest.java
new file mode 100644
index 00000000000..f934a6defee
--- /dev/null
+++ b/plugins/org.eclipse.osee.ats.client.integration.tests/src/org/eclipse/osee/ats/client/integration/tests/util/DbInitTest.java
@@ -0,0 +1,76 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.ats.client.integration.tests.util;
+
+import static org.junit.Assert.assertTrue;
+import java.util.List;
+import java.util.logging.Level;
+import org.eclipse.osee.ats.client.demo.DemoChoice;
+import org.eclipse.osee.framework.core.client.ClientSessionManager;
+import org.eclipse.osee.framework.core.exception.OseeStateException;
+import org.eclipse.osee.framework.database.init.DatabaseInitOpFactory;
+import org.eclipse.osee.framework.jdk.core.util.OseeProperties;
+import org.eclipse.osee.framework.logging.OseeLog;
+import org.eclipse.osee.framework.logging.SevereLoggingMonitor;
+import org.eclipse.osee.framework.skynet.core.UserManager;
+import org.eclipse.osee.framework.ui.skynet.render.RenderingUtil;
+import org.eclipse.osee.support.test.util.TestUtil;
+import org.junit.Assert;
+import org.junit.BeforeClass;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class DbInitTest {
+ private static boolean wasDbInitSuccessful = false;
+
+ @BeforeClass
+ public static void setup() throws Exception {
+ OseeProperties.setIsInTest(true);
+ assertTrue("Demo Application Server must be running",
+ ClientSessionManager.getAuthenticationProtocols().contains("demo"));
+ RenderingUtil.setPopupsAllowed(false);
+ }
+
+ @org.junit.Test
+ public void testDbInit() throws Exception {
+ System.out.println("\nBegin database initialization...");
+
+ List<String> protocols = ClientSessionManager.getAuthenticationProtocols();
+ Assert.assertTrue("Application Server must be running." + protocols, protocols.contains("demo"));
+
+ OseeLog.log(DbInitTest.class, Level.INFO, "Begin Database Initialization...");
+
+ SevereLoggingMonitor monitorLog = TestUtil.severeLoggingStart();
+ OseeLog.registerLoggerListener(monitorLog);
+
+ DatabaseInitOpFactory.executeWithoutPrompting(DemoChoice.ATS_CLIENT_DEMO);
+
+ TestUtil.severeLoggingEnd(monitorLog);
+ OseeLog.log(DbInitTest.class, Level.INFO, "Completed database initialization");
+ wasDbInitSuccessful = true;
+
+ if (wasDbInitSuccessful) {
+ TestUtil.setDbInitSuccessful(true);
+
+ // Re-authenticate so we can continue and NOT be bootstrap
+ ClientSessionManager.releaseSession();
+ ClientSessionManager.getSession();
+ UserManager.releaseUser();
+
+ if (UserManager.getUser().getUserId().equals("bootstrap")) {
+ throw new OseeStateException("Should not be bootstrap user here");
+ }
+ }
+
+ System.out.println("End database initialization...\n");
+ }
+}

Back to the top