You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scenario: run the s2i and check the maven mirror, proxy (including username and password) and non proxy have been initialised in the default settings.xml, uses http_proxy
26
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
26
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
# proxy auth configuration (fail case: no password supplied)
37
37
Scenario: run the s2i and check the maven mirror, proxy (including username) and non proxy have been initialised in the default settings.xml, uses http_proxy
38
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
38
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
Scenario: run the s2i and check the maven mirror, proxy (including username and password) and non proxy have been initialised in the default settings.xml, uses https_proxy
88
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
88
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
# https proxy auth configuration (fail case: no password supplied)
99
99
Scenario: run the s2i and check the maven mirror, proxy (including username) and non proxy have been initialised in the default settings.xml, uses https_proxy
100
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
100
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
Then XML file /tmp/artifacts/configuration/settings.xml should have 1 elements on XPath //ns:proxy[ns:id='genproxy'][ns:active='true'][ns:protocol='https'][ns:host='127.0.0.1'][ns:port='8080']
108
108
109
109
Scenario: run s2i assemble and check no_proxy is honoured with multiple entries
110
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
110
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
Scenario: run an S2I build that depends on com.redhat.xpaas.repo.redhatga being defined
123
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
123
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
124
124
125
125
# deprecated?
126
126
Scenario: run an S2I that should fail as MAVEN_ARGS does not define com.redhat.xpaas.repo.redhatga
127
-
Given failing s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple using openjdk-enforce-profile
127
+
Given failing s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple using openjdk-enforce-profile
128
128
| variable | value |
129
129
| MAVEN_ARGS | -epackage |
130
130
131
131
# CLOUD-579
132
132
Scenario: Test that maven is executed in batch mode
133
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple
133
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple
134
134
Then s2i build log should contain --batch-mode
135
135
And s2i build log should not contain \r
136
136
137
137
# CLOUD-3095 - context dir should be recursively copied into the image
138
138
# "/target" suffix is important here; it triggers a different code-path (no source build)
139
139
Scenario: Ensure binary-only mode copies binaries into the target image
140
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple/target
140
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple/target
141
141
Then s2i build log should not contain skipping directory .
142
142
And run find /deployments in container and check its output for spring-boot-sample-simple-1.5.0.BUILD-SNAPSHOT.jar
143
143
144
144
# OPENJDK-1954 - MAVEN_REPOS
145
145
Scenario: run the s2i and check the maven mirror and proxy have been initialised in the default settings.xml, uses http_proxy
146
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from spring-boot-sample-simple/target
146
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from spring-boot-sample-simple/target
Then XML file /tmp/artifacts/configuration/settings.xml should have 1 elements on XPath //ns:profile[ns:id='myrepo-profile']/ns:repositories/ns:repository[ns:url='http://repo.example.com:8080/maven2/']
172
172
173
173
Scenario: Ensure the environment is cleaned when executing mvn (OPENJDK-1549)
174
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from OPENJDK-1549 with env
174
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from OPENJDK-1549 with env
175
175
| variable | value |
176
176
| MAVEN_ARGS | validate |
177
177
178
178
Scenario: Ensure that run-env.sh placed in the JAVA_APP_DIR is sourced in the run script before launching java
179
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from quarkus-quickstarts/getting-started-3.0.1.Final-nos2i
179
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from quarkus-quickstarts/getting-started-3.0.1.Final-nos2i
180
180
| variable | value |
181
181
| S2I_SOURCE_DATA_DIR | ./ |
182
182
| S2I_TARGET_DATA_DIR | /deployments |
183
183
Then container log should contain INFO exec -a "someUniqueString" java
184
184
185
185
Scenario: Ensure mtime is preserved for build artifacts (OPENJDK-2408)
186
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from OPENJDK-2408-bin-custom-s2i-assemble with env
186
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from OPENJDK-2408-bin-custom-s2i-assemble with env
187
187
| variable | value |
188
188
| S2I_DELETE_SOURCE | false |
189
189
Then run find /deployments/spring-boot-sample-simple-1.5.0.BUILD-SNAPSHOT.jar ! -newer /tmp/src/spring-boot-sample-simple-1.5.0.BUILD-SNAPSHOT.jar in container and check its output for spring-boot-sample-simple-1.5.0.BUILD-SNAPSHOT.jar
Scenario: Ensure JAVA_ARGS is passed through, diagnostic options work correctly, JVM_ARGS not present in run script, OPENJDK-474 JAVA_ARGS not repeated
7
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from undertow-servlet
7
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from undertow-servlet
And container log should not contain no main manifest attribute
19
19
20
20
Scenario: quarkus uber-jar layout works out-of-the-box (OPENJDK-631)
21
-
Given s2i build https://github.com/jboss-container-images/openjdk-test-applications from quarkus-quickstarts/getting-started-3.0.1.Final-nos2i with env
21
+
Given s2i build https://github.com/rh-openjdk/openjdk-container-test-applications.git from quarkus-quickstarts/getting-started-3.0.1.Final-nos2i with env
22
22
| variable | value |
23
23
| QUARKUS_PACKAGE_TYPE | uber-jar |
24
24
Then container log should not contain INFO quarkus fast-jar package type detected
0 commit comments