forked from SAP/jenkins-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiProxyDownload_test.go
75 lines (68 loc) · 2.13 KB
/
apiProxyDownload_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
69
70
71
72
73
74
75
package cmd
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/SAP/jenkins-library/pkg/mock"
"github.com/stretchr/testify/assert"
)
type apiProxyDownloadMockUtils struct {
*mock.ExecMockRunner
*mock.FilesMock
}
func TestRunApiProxyDownload(t *testing.T) {
t.Parallel()
t.Run("Successfull Download of API Proxy", func(t *testing.T) {
tempDir, tmpErr := ioutil.TempDir("", "")
defer os.RemoveAll(tempDir) // clean up
if tmpErr != nil {
t.Fatal("Failed to create temporary directory")
}
apiServiceKey := `{
"oauth": {
"url": "https://demo",
"clientid": "demouser",
"clientsecret": "******",
"tokenurl": "https://demo/oauth/token"
}
}`
config := apiProxyDownloadOptions{
APIServiceKey: apiServiceKey,
APIProxyName: "flow1",
DownloadPath: tempDir,
}
httpClient := httpMockCpis{CPIFunction: "APIProxyDownload", ResponseBody: ``, TestType: "PositiveAndGetetIntegrationArtifactDownloadResBody"}
err := runApiProxyDownload(&config, nil, &httpClient)
absolutePath := filepath.Join(tempDir, "flow1.zip")
if assert.NoError(t, err) {
t.Run("check file", func(t *testing.T) {
assert.Equal(t, fileExists(absolutePath), true)
})
t.Run("check url", func(t *testing.T) {
assert.Equal(t, "https://demo/apiportal/api/1.0/Transport.svc/APIProxies?name=flow1", httpClient.URL)
})
t.Run("check method", func(t *testing.T) {
assert.Equal(t, "GET", httpClient.Method)
})
}
})
t.Run("Failed case of api proxy artifact Download", func(t *testing.T) {
apiServiceKey := `{
"oauth": {
"url": "https://demo",
"clientid": "demouser",
"clientsecret": "******",
"tokenurl": "https://demo/oauth/token"
}
}`
config := apiProxyDownloadOptions{
APIServiceKey: apiServiceKey,
APIProxyName: "proxy1",
DownloadPath: "tmp",
}
httpClient := httpMockCpis{CPIFunction: "APIProxyDownloadFailure", ResponseBody: ``, TestType: "Negative"}
err := runApiProxyDownload(&config, nil, &httpClient)
assert.EqualError(t, err, "HTTP GET request to https://demo/apiportal/api/1.0/Transport.svc/APIProxies?name=proxy1 failed with error: Service not Found")
})
}