forked from opensearch-project/opensearch-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TestRunIntegTestScript.groovy
41 lines (34 loc) · 1.17 KB
/
TestRunIntegTestScript.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
import jenkins.tests.BuildPipelineTest
import org.junit.Before
import org.junit.Test
class TestRunIntegTestScript extends BuildPipelineTest {
@Test
public void TestRunIntegTestScript() {
this.registerLibTester(new RunIntegTestScriptLibTester(
'dummy_job',
'tests/jenkins/data/opensearch-1.3.0-build.yml',
'tests/jenkins/data/opensearch-1.3.0-test.yml',
'717'
)
)
super.testPipeline("tests/jenkins/jobs/RunIntegTestScript_Jenkinsfile")
}
@Test
public void TestRunIntegTestScript_OpenSearch_Dashboards() {
this.registerLibTester(new RunIntegTestScriptLibTester(
'dummy_job',
'tests/jenkins/data/opensearch-dashboards-1.2.0-build.yml',
'tests/jenkins/data/opensearch-dashboards-1.2.0-test.yml',
'215'
)
)
super.testPipeline("tests/jenkins/jobs/RunIntegTestScript_OpenSearch_Dashboards_Jenkinsfile")
}
}