Skip to content

Commit 3b4866a

Browse files
Add End-to-End tests to CI job (#1043)
* Added end-to-end tests to CI Signed-off-by: Norman Jordan <[email protected]> * Correcting some expected results Signed-off-by: Norman Jordan <[email protected]> --------- Signed-off-by: Norman Jordan <[email protected]>
1 parent 8d0e591 commit 3b4866a

File tree

6 files changed

+22
-7
lines changed

6 files changed

+22
-7
lines changed

.github/workflows/test-and-build-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: echo "SBT_OPTS=-Xmx2G" >> $GITHUB_ENV
3434

3535
- name: Integ Test
36-
run: sbt integtest/integration
36+
run: sbt integtest/integration e2etest/test
3737

3838
- name: Upload test report
3939
if: always() # Ensures the artifact is saved even if tests fail

e2e-test/src/test/resources/opensearch/queries/ppl/query_121.results

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"datarows": [
1010
[
11-
5
11+
3
1212
]
1313
],
1414
"total": 1,

e2e-test/src/test/resources/opensearch/queries/ppl/query_125.results

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
],
99
"datarows": [
1010
[
11-
4
11+
3
1212
]
1313
],
1414
"total": 1,
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
distinct_count(country)
2-
5
2+
3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
distinct_count(major)
2-
4
2+
3

e2e-test/src/test/scala/org/opensearch/spark/e2e/EndToEndITSuite.scala

+17-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,22 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
7575
val dockerProcess = new ProcessBuilder("docker", "compose", "up", "-d")
7676
.directory(new File(DOCKER_INTEG_DIR))
7777
.start()
78-
dockerProcess.waitFor(5, TimeUnit.MINUTES)
78+
var stopReading = false
79+
new Thread() {
80+
override def run(): Unit = {
81+
val reader = new BufferedReader(new InputStreamReader(dockerProcess.getInputStream))
82+
var line = reader.readLine()
83+
while (!stopReading && line != null) {
84+
logInfo("*** " + line)
85+
line = reader.readLine()
86+
}
87+
}
88+
}.start()
89+
val completed = dockerProcess.waitFor(30, TimeUnit.MINUTES)
90+
stopReading = true
91+
if (!completed) {
92+
throw new IllegalStateException("Unable to start docker cluster")
93+
}
7994

8095
if (dockerProcess.exitValue() != 0) {
8196
logError("Unable to start docker cluster")
@@ -97,7 +112,7 @@ class EndToEndITSuite extends AnyFlatSpec with TableDrivenPropertyChecks with Be
97112
val dockerProcess = new ProcessBuilder("docker", "compose", "down")
98113
.directory(new File(DOCKER_INTEG_DIR))
99114
.start()
100-
dockerProcess.waitFor(2, TimeUnit.MINUTES)
115+
dockerProcess.waitFor(10, TimeUnit.MINUTES)
101116

102117
if (dockerProcess.exitValue() != 0) {
103118
logError("Unable to stop docker cluster")

0 commit comments

Comments
 (0)