forked from opensearch-project/opensearch-build-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PublishToPyPiLibTester.groovy
52 lines (44 loc) · 1.72 KB
/
PublishToPyPiLibTester.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
/*
* 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
import static org.hamcrest.CoreMatchers.NullValue
class PublishToPyPiLibTester extends LibFunctionTester {
private String artifactsPath = 'dist'
private String credentialId
public PublishToPyPiLibTester(String credentialId) {
this.credentialId = credentialId
}
public PublishToPyPiLibTester(String credentialId, String artifactsPath) {
this.credentialId = credentialId
this.artifactsPath = artifactsPath
}
void configure(helper, binding){
binding.setVariable('GITHUB_BOT_TOKEN_NAME', 'github_bot_token_name')
helper.registerAllowedMethod("git", [Map])
helper.addFileExistsMock('/tmp/workspace/sign.sh', true)
helper.registerAllowedMethod("withCredentials", [Map])
}
void parameterInvariantsAssertions(call){
assertThat(call.args.artifactsPath.toString(), notNullValue())
assertThat(call.args.credentialId.toString(), notNullValue())
}
boolean expectedParametersMatcher(call) {
return call.args.credentialId.first().toString().equals(this.credentialId)
}
boolean expectedParametersMatcherArtifact(call){
if (call.args.artifactsPath.isEmpty()) {
return (this.artifactsPath.equals('dist'))
}
return (call.args.artifactsPath.first().toString().equals(this.artifactsPath))
}
String libFunctionName(){
return 'publishToPyPi'
}
}