forked from SAP/jenkins-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiKeyValueMapDownload_test.go
68 lines (61 loc) · 1.94 KB
/
apiKeyValueMapDownload_test.go
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
68
package cmd
import (
"io/ioutil"
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestRunApiKeyValueMapDownload(t *testing.T) {
t.Parallel()
t.Run("Successfull Download of API Key Value Map", func(t *testing.T) {
file, err := ioutil.TempFile("", "CustKVM.json")
if err != nil {
t.FailNow()
}
defer os.RemoveAll(file.Name()) // clean up
apiServiceKey := `{
"oauth": {
"url": "https://demo",
"clientid": "demouser",
"clientsecret": "******",
"tokenurl": "https://demo/oauth/token"
}
}`
config := apiKeyValueMapDownloadOptions{
APIServiceKey: apiServiceKey,
KeyValueMapName: "CustKVM",
DownloadPath: file.Name(),
}
httpClient := httpMockCpis{CPIFunction: "APIKeyValueMapDownload", ResponseBody: ``, TestType: "Positive"}
errResp := runApiKeyValueMapDownload(&config, nil, &httpClient)
if assert.NoError(t, errResp) {
t.Run("check file", func(t *testing.T) {
assert.Equal(t, fileExists(file.Name()), true)
})
t.Run("check url", func(t *testing.T) {
assert.Equal(t, "https://demo/apiportal/api/1.0/Management.svc/KeyMapEntries('CustKVM')", httpClient.URL)
})
t.Run("check method", func(t *testing.T) {
assert.Equal(t, "GET", httpClient.Method)
})
}
})
t.Run("Failed case of API Key Value Map Download", func(t *testing.T) {
apiServiceKey := `{
"oauth": {
"url": "https://demo",
"clientid": "demouser",
"clientsecret": "******",
"tokenurl": "https://demo/oauth/token"
}
}`
config := apiKeyValueMapDownloadOptions{
APIServiceKey: apiServiceKey,
KeyValueMapName: "CustKVM",
DownloadPath: "",
}
httpClient := httpMockCpis{CPIFunction: "APIKeyValueMapDownloadFailure", ResponseBody: ``, TestType: "Negative"}
err := runApiKeyValueMapDownload(&config, nil, &httpClient)
assert.EqualError(t, err, "HTTP GET request to https://demo/apiportal/api/1.0/Management.svc/KeyMapEntries('CustKVM') failed with error: Service not Found")
})
}