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
Jordi van Liempt 0ba4c2206c
chore(deps): Replace io/ioutil package (#4494)
* update all deprecated ioutil usages

* forgotten changes

* add missing imports

* undo changing comment

* add missing 'os' import

* fix integration test

---------

Co-authored-by: I557621 <jordi.van.liempt@sap.com>
Co-authored-by: Gulom Alimov <gulomjon.alimov@sap.com>
2023-08-16 12:57:04 +02:00

90 lines
2.6 KiB
Go

//go:build unit
// +build unit
package cmd
import (
"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 := os.CreateTemp("", "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 := os.CreateTemp("", "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",
}
}