Skip to content

Commit

Permalink
CLOUD-1476: Create images for BxMS v6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
errantepiphany committed Apr 26, 2017
1 parent c7a18fa commit b0c06f5
Show file tree
Hide file tree
Showing 51 changed files with 4,857 additions and 113 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ For more details about each component of this testsuite, please verify their doc
- KIE SERVER:
- [6.2](https://github.com/jboss-openshift/ce-testsuite/blob/master/kieserver/62/README.md)
- [6.3](https://github.com/jboss-openshift/ce-testsuite/blob/master/kieserver/63/README.md)
- [6.4](https://github.com/jboss-openshift/ce-testsuite/blob/master/kieserver/64/README.md)
- [SPARK](https://github.com/jboss-openshift/ce-testsuite/blob/master/spark/README.md)
- [SSO](https://github.com/jboss-openshift/ce-testsuite/blob/master/sso/README.md)
- [WEBSERVER](https://github.com/jboss-openshift/ce-testsuite/blob/master/webserver/README.md)
Expand Down
137 changes: 126 additions & 11 deletions kieserver/62/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,110 @@
<artifactId>kieserver62-ce-testsuite</artifactId>
<packaging>jar</packaging>
<name>KIE Server v6.2 CE Testsuite</name>
<description>Decision Server Cloud Enablement Testsuite</description>
<description>KIE Server Cloud Enablement Testsuite includes tests for decision server and process server</description>

<dependencies>
<properties>
<version.activemq>5.8.0.redhat-60083</version.activemq>
<version.arquillian.ce>1.0.1.Final-SNAPSHOT</version.arquillian.ce>
<version.javax.jpa>1.0.1.Final</version.javax.jpa>
<version.javassist>3.19.0-GA</version.javassist>
<!-- KIE versions -->
<version.jboss.bom.brms>6.2.0.GA-redhat-1</version.jboss.bom.brms>
<version.org.kie>6.3.0.Final-redhat-5</version.org.kie>
</properties>

<dependencyManagement>
<dependencies>

<dependency>
<groupId>org.jboss.bom.brms</groupId>
<artifactId>jboss-brms-bpmsuite-bom</artifactId>
<version>${version.jboss.bom.brms}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-bom</artifactId>
<version>${version.org.kie}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-all</artifactId>
<version>${version.activemq}</version>
</dependency>

<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<version>${version.javax.jpa}</version>
</dependency>

<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>${version.javassist}</version>
</dependency>

<!-- TODO -->
<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-api</artifactId>
<version>${version.arquillian.ce}</version>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-cube</artifactId>
<version>${version.arquillian.ce}</version>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-fabric8</artifactId>
<version>${version.arquillian.ce}</version>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-httpclient</artifactId>
<version>${version.arquillian.ce}</version>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-shrinkwrap</artifactId>
<version>${version.arquillian.ce}</version>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-utils</artifactId>
<version>${version.arquillian.ce}</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- EAP testunit deps -->

<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>

<!-- Test Utils -->

Expand All @@ -54,6 +135,24 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-api</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-cube</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-fabric8</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-httpclient</artifactId>
Expand All @@ -67,7 +166,7 @@

<dependency>
<groupId>org.jboss.arquillian.container</groupId>
<artifactId>arquillian-ce-cube</artifactId>
<artifactId>arquillian-ce-utils</artifactId>
<scope>test</scope>
</dependency>

Expand All @@ -87,13 +186,23 @@

<dependency>
<groupId>org.kie.server</groupId>
<artifactId>kie-server-client</artifactId>
<artifactId>kie-server-api</artifactId>
</dependency>

<dependency>
<groupId>org.kie</groupId>
<groupId>org.kie.server</groupId>
<artifactId>kie-server-client</artifactId>
</dependency>

<dependency>
<groupId>org.kie.remote</groupId>
<artifactId>kie-remote-jaxb</artifactId>
</dependency>

<dependency>
<groupId>org.kie.remote</groupId>
<artifactId>kie-remote-client</artifactId>
</dependency>

<!-- Dependencies needed to use JMS/AMQ -->

Expand All @@ -102,6 +211,11 @@
<artifactId>activemq-all</artifactId>
</dependency>

<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -152,4 +266,5 @@
</plugin>
</plugins>
</build>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
@OpenShiftResources({
@OpenShiftResource("https://raw.githubusercontent.com/${template.repository:jboss-openshift}/application-templates/${template.branch:master}/secrets/decisionserver-app-secret.json")
})
public class DecisionServerBasicMulltiContainerTest extends DecisionServerTestBase {
public class DecisionServerBasicMultiContainerTest extends DecisionServerTestBase {

@RouteURL("kie-app")
private URL routeURL;
Expand Down
15 changes: 12 additions & 3 deletions kieserver/63/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,18 @@

This testsuite will test all KIE Server 6.3 S2I application templates which are:

- [decisionserver63-amq-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/decisionserver/decisionserver62-amq-s2i.json)
- [decisionserver63-basic-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/decisionserver/decisionserver62-basic-s2i.json)
- [decisionserver63-https-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/decisionserver/decisionserver62-https-s2i.json)
- [decisionserver63-amq-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/decisionserver/decisionserver63-amq-s2i.json)
- [decisionserver63-basic-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/decisionserver/decisionserver63-basic-s2i.json)
- [decisionserver63-https-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/decisionserver/decisionserver63-https-s2i.json)
- [processserver63-amq-mysql-persistent-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-amq-mysql-persistent-s2i.json)
- [processserver63-amq-mysql-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-amq-mysql-s2i.json)
- [processserver63-amq-postgresql-persistent-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-amq-postgresql-persistent-s2i.json)
- [processserver63-amq-postgresql-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-amq-postgresql-s2i.json)
- [processserver63-basic-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-basic-s2i.json)
- [processserver63-mysql-persistent-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-mysql-persistent-s2i.json)
- [processserver63-mysql-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-mysql-s2i.json)
- [processserver63-postgresql-persistent-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-postgresql-persistent-s2i.json)
- [processserver63-postgresql-s2i.json](https://github.com/jboss-openshift/application-templates/blob/master/processserver/processserver63-postgresql-s2i.json)

For all tests, on this case we are using the following quickstart application:

Expand Down
Loading

0 comments on commit b0c06f5

Please sign in to comment.