forked from opensearch-project/opensearch-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignArtifactsLibTester.groovy
67 lines (59 loc) · 2.55 KB
/
SignArtifactsLibTester.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* 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 static org.hamcrest.CoreMatchers.notNullValue
import static org.hamcrest.MatcherAssert.assertThat
class SignArtifactsLibTester extends LibFunctionTester {
private String sigtype
private String platform
private String artifactPath
private String type
private String component
public SignArtifactsLibTester(sigtype, platform, artifactPath, type, component) {
this.sigtype = sigtype
this.platform = platform
this.artifactPath = artifactPath
this.type = type
this.component = component
}
void configure(helper, binding) {
binding.setVariable('GITHUB_BOT_TOKEN_NAME', 'github_bot_token_name')
helper.registerAllowedMethod('git', [Map])
helper.registerAllowedMethod('withCredentials', [Map, Closure], { args, closure ->
closure.delegate = delegate
return helper.callClosure(closure)
})
helper.registerAllowedMethod('withAWS', [Map, Closure], { args, closure ->
closure.delegate = delegate
return helper.callClosure(closure)
})
}
void parameterInvariantsAssertions(call) {
assertThat(call.args.artifactPath.first(), notNullValue())
assertThat(call.args.platform.first(), notNullValue())
if (call.args.artifactPath.first().toString().endsWith('.yml')) {
assertThat(call.args.type.first(), notNullValue())
} else if (call.args.type.first() != 'maven') {
assertThat(call.args.sigtype.first(), notNullValue())
}
}
boolean expectedParametersMatcher(call) {
if (call.args.artifactPath.first().toString().endsWith('.yml')) {
return call.args.platform.first().toString().equals(this.platform)
&& call.args.artifactPath.first().toString().equals(this.artifactPath)
&& call.args.type.first().toString().equals(this.type)
&& (call.args.component.first() == null || call.args.component.first().toString().equals(this.component))
} else {
return call.args.sigtype.first().toString().equals(this.sigtype)
&& call.args.platform.first().toString().equals(this.platform)
&& call.args.artifactPath.first().toString().equals(this.artifactPath)
}
}
String libFunctionName() {
return 'signArtifacts'
}
}