2023-05-03 18:02:11 +02:00
//go:build unit
// +build unit
2021-11-02 11:30:08 +02:00
package cmd
import (
"path/filepath"
"testing"
"github.com/SAP/jenkins-library/pkg/mock"
"github.com/stretchr/testify/assert"
)
type apiProxyDownloadMockUtils struct {
* mock . ExecMockRunner
* mock . FilesMock
}
func TestRunApiProxyDownload ( t * testing . T ) {
t . Parallel ( )
t . Run ( "Successfull Download of API Proxy" , func ( t * testing . T ) {
2022-07-12 15:19:12 +02:00
tempDir := t . TempDir ( )
2021-11-02 11:30:08 +02:00
apiServiceKey := ` {
"oauth" : {
"url" : "https://demo" ,
"clientid" : "demouser" ,
"clientsecret" : "******" ,
"tokenurl" : "https://demo/oauth/token"
}
} `
config := apiProxyDownloadOptions {
APIServiceKey : apiServiceKey ,
APIProxyName : "flow1" ,
DownloadPath : tempDir ,
}
httpClient := httpMockCpis { CPIFunction : "APIProxyDownload" , ResponseBody : ` ` , TestType : "PositiveAndGetetIntegrationArtifactDownloadResBody" }
err := runApiProxyDownload ( & config , nil , & httpClient )
absolutePath := filepath . Join ( tempDir , "flow1.zip" )
if assert . NoError ( t , err ) {
t . Run ( "check file" , func ( t * testing . T ) {
assert . Equal ( t , fileExists ( absolutePath ) , true )
} )
t . Run ( "check url" , func ( t * testing . T ) {
assert . Equal ( t , "https://demo/apiportal/api/1.0/Transport.svc/APIProxies?name=flow1" , httpClient . URL )
} )
t . Run ( "check method" , func ( t * testing . T ) {
assert . Equal ( t , "GET" , httpClient . Method )
} )
}
} )
t . Run ( "Failed case of api proxy artifact Download" , func ( t * testing . T ) {
apiServiceKey := ` {
"oauth" : {
"url" : "https://demo" ,
"clientid" : "demouser" ,
"clientsecret" : "******" ,
"tokenurl" : "https://demo/oauth/token"
}
} `
config := apiProxyDownloadOptions {
APIServiceKey : apiServiceKey ,
APIProxyName : "proxy1" ,
DownloadPath : "tmp" ,
}
httpClient := httpMockCpis { CPIFunction : "APIProxyDownloadFailure" , ResponseBody : ` ` , TestType : "Negative" }
err := runApiProxyDownload ( & config , nil , & httpClient )
assert . EqualError ( t , err , "HTTP GET request to https://demo/apiportal/api/1.0/Transport.svc/APIProxies?name=proxy1 failed with error: Service not Found" )
} )
}