-
Notifications
You must be signed in to change notification settings - Fork 25
/
PublishToMavenLibTester.groovy
57 lines (50 loc) · 1.99 KB
/
PublishToMavenLibTester.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
/*
* Copyright OpenSearch Contributors
* 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 PublishToMavenLibTester extends LibFunctionTester {
private String signingArtifactsPath
private String mavenArtifactsPath
private String autoPublish
public PublishToMavenLibTester(signingPath, artifactPath, autoPub) {
this.signingArtifactsPath = signingPath
this.mavenArtifactsPath = artifactPath
this.autoPublish = autoPub
}
@Override
void configure(helper, binding) {
binding.setVariable('SONATYPE_USERNAME', 'sonatype_user')
binding.setVariable('SONATYPE_PASSWORD', 'sonatype_pass')
binding.setVariable('GITHUB_BOT_TOKEN_NAME', 'github_bot_token_name')
binding.setVariable('WORKSPACE', 'workspace')
helper.registerAllowedMethod('git', [Map])
helper.addFileExistsMock('workspace/sign.sh', true)
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)
})
}
@Override
void parameterInvariantsAssertions(call) {
assertThat(call.args.signingArtifactsPath.first(), notNullValue())
assertThat(call.args.mavenArtifactsPath.first(), notNullValue())
assertThat(call.args.autoPublish.first(), notNullValue())
}
@Override
boolean expectedParametersMatcher(call) {
return call.args.signingArtifactsPath.first().equals(this.signingArtifactsPath)
}
String libFunctionName() {
return 'publishToMaven'
}
}