mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ffc931aad1
* 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>
57 lines
1.8 KiB
Go
57 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 TestRunApiProviderList(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("Get API providers successfull test", func(t *testing.T) {
|
|
config := getDefaultOptionsForApiProviderList()
|
|
httpClientMock := &apimhttp.HttpMockAPIM{StatusCode: 200, ResponseBody: `{"some": "test"}`}
|
|
seOut := apiProviderListCommonPipelineEnvironment{}
|
|
apim := apim.Bundle{APIServiceKey: config.APIServiceKey, Client: httpClientMock}
|
|
// test
|
|
err := getApiProviderList(&config, apim, &seOut)
|
|
|
|
// assert
|
|
if assert.NoError(t, err) {
|
|
assert.EqualValues(t, seOut.custom.APIProviderList, "{\"some\": \"test\"}")
|
|
t.Run("check url", func(t *testing.T) {
|
|
assert.Equal(t, "/apiportal/api/1.0/Management.svc/APIProviders?orderby=value&$select=name&$top=2", httpClientMock.URL)
|
|
})
|
|
t.Run("check method", func(t *testing.T) {
|
|
assert.Equal(t, "GET", httpClientMock.Method)
|
|
})
|
|
}
|
|
})
|
|
|
|
t.Run("Get API provider failed test", func(t *testing.T) {
|
|
config := getDefaultOptionsForApiProviderList()
|
|
httpClientMock := &apimhttp.HttpMockAPIM{StatusCode: 400}
|
|
seOut := apiProviderListCommonPipelineEnvironment{}
|
|
apim := apim.Bundle{APIServiceKey: config.APIServiceKey, Client: httpClientMock}
|
|
// test
|
|
err := getApiProviderList(&config, apim, &seOut)
|
|
// assert
|
|
assert.EqualError(t, err, "HTTP GET request to /apiportal/api/1.0/Management.svc/APIProviders?orderby=value&$select=name&$top=2 failed with error: : Bad Request")
|
|
})
|
|
}
|
|
|
|
func getDefaultOptionsForApiProviderList() apiProviderListOptions {
|
|
return apiProviderListOptions{
|
|
APIServiceKey: apimhttp.GetServiceKey(),
|
|
Top: 2,
|
|
Select: "name",
|
|
Orderby: "value",
|
|
}
|
|
}
|