Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoberto E. Escobar2014-12-09 18:45:56 +0000
committerAngel Avila2014-12-09 18:45:56 +0000
commit0454cc9720e42045e43a7a1e1f3b869f16f69f41 (patch)
tree87e394c43ad2480eea44cb9b71b47dd3122ea18d /plugins/org.eclipse.osee.x.server.integration.tests
parent8caea12ea1c963865cb550b87232ce5dea83e1c1 (diff)
downloadorg.eclipse.osee-0454cc9720e42045e43a7a1e1f3b869f16f69f41.tar.gz
org.eclipse.osee-0454cc9720e42045e43a7a1e1f3b869f16f69f41.tar.xz
org.eclipse.osee-0454cc9720e42045e43a7a1e1f3b869f16f69f41.zip
feature: Add ORCS IDE JAX-RS endpoint
Diffstat (limited to 'plugins/org.eclipse.osee.x.server.integration.tests')
-rw-r--r--plugins/org.eclipse.osee.x.server.integration.tests/src/org/eclipse/osee/x/server/integration/tests/performance/OseeClientQueryTest.java8
1 files changed, 8 insertions, 0 deletions
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 3281f83f4f2..eb045010a25 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
@@ -20,6 +20,7 @@ import static org.eclipse.osee.framework.core.enums.CoreAttributeTypes.Active;
import static org.eclipse.osee.framework.core.enums.CoreBranches.COMMON;
import static org.junit.Assert.assertEquals;
import java.io.StringWriter;
+import java.util.Collection;
import java.util.Properties;
import org.databene.contiperf.PerfTest;
import org.eclipse.osee.framework.core.data.IOseeBranch;
@@ -193,6 +194,13 @@ public class OseeClientQueryTest {
@PerfTest(threads = 1, invocations = 1)
@Test
+ public void supportedVersions() {
+ Collection<String> supportedVersions = createClient.getIdeClientSupportedVersions();
+ assertEquals(true, !supportedVersions.isEmpty());
+ }
+
+ @PerfTest(threads = 1, invocations = 1)
+ @Test
public void orcsScript() {
String script =
"start from branch 570 find artifacts where art-type = 'Folder' collect artifacts {id, attributes { value } };";

Back to the top