mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
0ed5cce53a
* IntegrationArtifactUpdateConfiguration Command Co-authored-by: Marcus Holl <marcus.holl@sap.com>
89 lines
3.4 KiB
Go
89 lines
3.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type integrationArtifactUpdateConfigurationMockUtils struct {
|
|
*mock.ExecMockRunner
|
|
}
|
|
|
|
func newIntegrationArtifactUpdateConfigurationTestsUtils() integrationArtifactUpdateConfigurationMockUtils {
|
|
utils := integrationArtifactUpdateConfigurationMockUtils{
|
|
ExecMockRunner: &mock.ExecMockRunner{},
|
|
}
|
|
return utils
|
|
}
|
|
|
|
func TestRunIntegrationArtifactUpdateConfiguration(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("Successfully update of Integration Flow configuration parameter test", func(t *testing.T) {
|
|
config := integrationArtifactUpdateConfigurationOptions{
|
|
Host: "https://demo",
|
|
OAuthTokenProviderURL: "https://demo/oauth/token",
|
|
Username: "demouser",
|
|
Password: "******",
|
|
IntegrationFlowID: "flow1",
|
|
IntegrationFlowVersion: "1.0.1",
|
|
ParameterKey: "myheader",
|
|
ParameterValue: "def",
|
|
}
|
|
|
|
httpClient := httpMockCpis{CPIFunction: "IntegrationArtifactUpdateConfiguration", ResponseBody: ``, TestType: "Positive", Method: "PUT", URL: "https://demo/api/v1/IntegrationDesigntimeArtifacts(Id='flow1',Version='1.0.1')"}
|
|
|
|
err := runIntegrationArtifactUpdateConfiguration(&config, nil, &httpClient)
|
|
|
|
if assert.NoError(t, err) {
|
|
|
|
t.Run("check url", func(t *testing.T) {
|
|
assert.Equal(t, "https://demo/api/v1/IntegrationDesigntimeArtifacts(Id='flow1',Version='1.0.1')/$links/Configurations('myheader')", httpClient.URL)
|
|
})
|
|
|
|
t.Run("check method", func(t *testing.T) {
|
|
assert.Equal(t, "PUT", httpClient.Method)
|
|
})
|
|
}
|
|
|
|
})
|
|
|
|
t.Run("Failed case of Integration Flow configuration parameter Test", func(t *testing.T) {
|
|
config := integrationArtifactUpdateConfigurationOptions{
|
|
Host: "https://demo",
|
|
OAuthTokenProviderURL: "https://demo/oauth/token",
|
|
Username: "demouser",
|
|
Password: "******",
|
|
IntegrationFlowID: "flow1",
|
|
IntegrationFlowVersion: "1.0.1",
|
|
ParameterKey: "myheader",
|
|
ParameterValue: "def",
|
|
}
|
|
|
|
httpClient := httpMockCpis{CPIFunction: "IntegrationArtifactUpdateConfiguration", ResponseBody: ``, TestType: "Negative"}
|
|
|
|
err := runIntegrationArtifactUpdateConfiguration(&config, nil, &httpClient)
|
|
assert.EqualError(t, err, "HTTP \"PUT\" request to \"https://demo/api/v1/IntegrationDesigntimeArtifacts(Id='flow1',Version='1.0.1')/$links/Configurations('myheader')\" failed with error: Not found - either wrong version for the given Id or wrong parameter key")
|
|
})
|
|
|
|
t.Run("Failed case of Integration Flow configuration parameter test with error body", func(t *testing.T) {
|
|
config := integrationArtifactUpdateConfigurationOptions{
|
|
Host: "https://demo",
|
|
OAuthTokenProviderURL: "https://demo/oauth/token",
|
|
Username: "demouser",
|
|
Password: "******",
|
|
IntegrationFlowID: "flow1",
|
|
IntegrationFlowVersion: "1.0.1",
|
|
ParameterKey: "myheader",
|
|
ParameterValue: "def",
|
|
}
|
|
|
|
httpClient := httpMockCpis{CPIFunction: "IntegrationArtifactUpdateConfiguration", ResponseBody: ``, TestType: "Negative_With_ResponseBody"}
|
|
|
|
err := runIntegrationArtifactUpdateConfiguration(&config, nil, &httpClient)
|
|
assert.EqualError(t, err, "Failed to update the integration flow configuration parameter, Response Status code: 400")
|
|
})
|
|
}
|