1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/apiProxyList_test.go
Jk1484 ffc931aad1
feat(golangBuild): use 'unit' build tag to include tests during test execution (#4345)
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files.

* Added unit build tag to all unit test files.

* added to new unit test unit build tag

* Update verify-go.yml

* small fix

---------

Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com>
Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
2023-05-03 21:02:11 +05:00

58 lines
1.8 KiB
Go

//go:build unit
// +build unit
package cmd
import (
"testing"
"github.com/SAP/jenkins-library/pkg/apim"
apimhttp "github.com/SAP/jenkins-library/pkg/apim"
"github.com/stretchr/testify/assert"
)
func TestRunApiProxyList(t *testing.T) {
t.Parallel()
t.Run("Get API Proxy List successfull test", func(t *testing.T) {
config := getDefaultOptionsForApiProxyList()
httpClientMock := &apimhttp.HttpMockAPIM{StatusCode: 200, ResponseBody: `{"some": "test"}`}
seOut := apiProxyListCommonPipelineEnvironment{}
apim := apim.Bundle{APIServiceKey: config.APIServiceKey, Client: httpClientMock}
// test
err := getApiProxyList(&config, apim, &seOut)
// assert
if assert.NoError(t, err) {
assert.EqualValues(t, seOut.custom.APIProxyList, "{\"some\": \"test\"}")
t.Run("check url", func(t *testing.T) {
assert.Equal(t, "/apiportal/api/1.0/Management.svc/APIProxies?filter=isCopy+eq+false&$orderby=name&$skip=1&$top=4", httpClientMock.URL)
})
t.Run("check method", func(t *testing.T) {
assert.Equal(t, "GET", httpClientMock.Method)
})
}
})
t.Run("Get API Proxy List failed test", func(t *testing.T) {
config := getDefaultOptionsForApiProxyList()
httpClientMock := &apimhttp.HttpMockAPIM{StatusCode: 400}
seOut := apiProxyListCommonPipelineEnvironment{}
apim := apim.Bundle{APIServiceKey: config.APIServiceKey, Client: httpClientMock}
// test
err := getApiProxyList(&config, apim, &seOut)
// assert
assert.EqualError(t, err, "HTTP GET request to /apiportal/api/1.0/Management.svc/APIProxies?filter=isCopy+eq+false&$orderby=name&$skip=1&$top=4 failed with error: : Bad Request")
})
}
func getDefaultOptionsForApiProxyList() apiProxyListOptions {
return apiProxyListOptions{
APIServiceKey: apimhttp.GetServiceKey(),
Top: 4,
Skip: 1,
Filter: "isCopy eq false",
Orderby: "name",
}
}