1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/apiProviderUpload_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

91 lines
2.7 KiB
Go

//go:build unit
// +build unit
package cmd
import (
"io/ioutil"
"os"
"testing"
"github.com/SAP/jenkins-library/pkg/apim"
apimhttp "github.com/SAP/jenkins-library/pkg/apim"
"github.com/SAP/jenkins-library/pkg/mock"
"github.com/stretchr/testify/assert"
)
func TestRunApiProviderUpload(t *testing.T) {
t.Parallel()
t.Run("API Provider upload succesfull test", func(t *testing.T) {
file, tmpErr := ioutil.TempFile("", "test.json")
if tmpErr != nil {
t.FailNow()
}
defer os.RemoveAll(file.Name()) // clean up
filesMock := mock.FilesMock{}
filesMock.AddFile(file.Name(), []byte(apimhttp.GetServiceKey()))
config := getDefaultOptionsForApiProvider()
config.FilePath = file.Name()
httpClientMock := &apimhttp.HttpMockAPIM{StatusCode: 201, ResponseBody: ``}
apim := apim.Bundle{APIServiceKey: config.APIServiceKey, Client: httpClientMock}
// test
err := createApiProvider(&config, apim, filesMock.FileRead)
// assert
if assert.NoError(t, err) {
t.Run("check url", func(t *testing.T) {
assert.Equal(t, "/apiportal/api/1.0/Management.svc/APIProviders", httpClientMock.URL)
})
t.Run("check method", func(t *testing.T) {
assert.Equal(t, "POST", httpClientMock.Method)
})
}
})
t.Run("API Provider upload failed test", func(t *testing.T) {
file, tmpErr := ioutil.TempFile("", "test.json")
if tmpErr != nil {
t.FailNow()
}
defer os.RemoveAll(file.Name()) // clean up
filesMock := mock.FilesMock{}
filesMock.AddFile(file.Name(), []byte(apimhttp.GetServiceKey()))
config := getDefaultOptionsForApiProvider()
config.FilePath = file.Name()
httpClientMock := &apimhttp.HttpMockAPIM{StatusCode: 400}
apim := apim.Bundle{APIServiceKey: config.APIServiceKey, Client: httpClientMock}
// test
err := createApiProvider(&config, apim, filesMock.FileRead)
// assert
assert.EqualError(t, err, "HTTP POST request to /apiportal/api/1.0/Management.svc/APIProviders failed with error: : Bad Request")
})
t.Run("valid api provider payload test", func(t *testing.T) {
apiProviderPayload := `{
"oauth": {
"url": "https://demo",
"clientid": "demouser",
"clientsecret": "******",
"tokenurl": "https://demo/oauth/token"
}
}`
apimData := apim.Bundle{Payload: apiProviderPayload}
assert.Equal(t, apimData.IsPayloadJSON(), true)
})
t.Run("invalid api provider payload test", func(t *testing.T) {
apiProviderPayload := `this is not json`
apimData := apim.Bundle{Payload: apiProviderPayload}
assert.Equal(t, apimData.IsPayloadJSON(), false)
})
}
func getDefaultOptionsForApiProvider() apiProviderUploadOptions {
return apiProviderUploadOptions{
APIServiceKey: apimhttp.GetServiceKey(),
FilePath: "test.json",
}
}