Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonald.g.dunne2016-10-13 02:28:17 +0000
committerdonald.g.dunne2016-10-13 02:28:17 +0000
commitdb1fab9b64eebc2d4de7d5d76ed7c0f252694cb3 (patch)
tree734ce80d01979647fd43336b4c15d3a110300f7a /plugins/org.eclipse.osee.x.server.integration.tests
parent4667d79569d689bd73bf0e63cc88d6fa84884e01 (diff)
downloadorg.eclipse.osee-db1fab9b64eebc2d4de7d5d76ed7c0f252694cb3.tar.gz
org.eclipse.osee-db1fab9b64eebc2d4de7d5d76ed7c0f252694cb3.tar.xz
org.eclipse.osee-db1fab9b64eebc2d4de7d5d76ed7c0f252694cb3.zip
feature[ats_ATS314065]: Convert types and type tokens to long.
Diffstat (limited to 'plugins/org.eclipse.osee.x.server.integration.tests')
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/README_BEFORE_RUNNING_TESTS.txt10
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/pom.xml2
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/OseeClientQueryTest.java2
3 files changed, 7 insertions, 7 deletions
diff --git a/plugins/org.eclipse.osee.x.server.integration.tests/README_BEFORE_RUNNING_TESTS.txt b/plugins/org.eclipse.osee.x.server.integration.tests/README_BEFORE_RUNNING_TESTS.txt
index f3108551ca7..63b1c4caba7 100644
--- a/plugins/org.eclipse.osee.x.server.integration.tests/README_BEFORE_RUNNING_TESTS.txt
+++ b/plugins/org.eclipse.osee.x.server.integration.tests/README_BEFORE_RUNNING_TESTS.txt
@@ -1,10 +1,10 @@
DO NOT RUN THIS SUITE AS JUNIT PLUGIN TEST (it will connect to Production DB)
-Integration test suite run with Application Server
-Data gets written to target directory from org.eclipse.osee.x.server.p2/demo via the pom.xml
-
-To run locally:
+This is an integration test suite run with Application Server. During the build, the pom.xml file calls to expand
+the org.eclipse.osee.x.server.p2/demo database zips into target area, and then launches an OSEE Application Server at that path.
+S
+To run test locally:
1) unzip org.eclipse.osee.x.server.p2/demo/hsql.zip to your home dir
2) unzip org.eclipse.osee.x.server.p2/demo/binary_data.zip to your home dir
3) Launch local hsql application server
-4) Run Server Integration Test Suite as JUnit Test
+4) Run ServerIntegrationTestSuite launch config
diff --git a/plugins/org.eclipse.osee.x.server.integration.tests/pom.xml b/plugins/org.eclipse.osee.x.server.integration.tests/pom.xml
index 5daa92fe437..4d59a1c92f2 100644
--- a/plugins/org.eclipse.osee.x.server.integration.tests/pom.xml
+++ b/plugins/org.eclipse.osee.x.server.integration.tests/pom.xml
@@ -12,7 +12,7 @@
<artifactId>org.eclipse.osee.x.server.integration.tests</artifactId>
<packaging>eclipse-test-plugin</packaging>
- <name>OSEE Server Integration Tests (Incubation)</name>
+ <name>OSEE X Server Integration Tests (Incubation)</name>
<build>
<plugins>
diff --git a/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/OseeClientQueryTest.java b/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/OseeClientQueryTest.java
index 4ffbcf96182..1458006275c 100644
--- a/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/OseeClientQueryTest.java
+++ b/plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/OseeClientQueryTest.java
@@ -120,7 +120,7 @@ public class OseeClientQueryTest {
@Test
public void searchForArtifactType() throws OseeCoreException {
- final int EXPECTED_RESULTS = 7;
+ final int EXPECTED_RESULTS = 8;
SearchResult results =
createClient.createQueryBuilder(SAW_Bld_1).andTypeEquals(Folder).getSearchResult(RequestType.IDS);
assertEquals(EXPECTED_RESULTS, results.getTotal());

Back to the top