1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/transportRequestUploadRFC.go
Marcus Holl fe5ce61d9e
rfc upload (#2533)
* Add RFC upload command
2021-06-14 12:36:18 +02:00

86 lines
3.1 KiB
Go

package cmd
import (
"github.com/SAP/jenkins-library/pkg/command"
"github.com/SAP/jenkins-library/pkg/log"
"github.com/SAP/jenkins-library/pkg/telemetry"
"github.com/SAP/jenkins-library/pkg/transportrequest/rfc"
)
type transportRequestUploadRFCUtils interface {
rfc.Exec
// Add more methods here, or embed additional interfaces, or remove/replace as required.
// The transportRequestUploadRFCUtils interface should be descriptive of your runtime dependencies,
// i.e. include everything you need to be able to mock in tests.
// Unit tests shall be executable in parallel (not depend on global state), and don't (re-)test dependencies.
}
type transportRequestUploadRFCUtilsBundle struct {
*command.Command
// Embed more structs as necessary to implement methods or interfaces you add to transportRequestUploadRFCUtils.
// Structs embedded in this way must each have a unique set of methods attached.
// If there is no struct which implements the method you need, attach the method to
// transportRequestUploadRFCUtilsBundle and forward to the implementation of the dependency.
}
func newTransportRequestUploadRFCUtils() transportRequestUploadRFCUtils {
utils := transportRequestUploadRFCUtilsBundle{
Command: &command.Command{},
}
// Reroute command output to logging framework
utils.Stdout(log.Writer())
utils.Stderr(log.Writer())
return &utils
}
func transportRequestUploadRFC(config transportRequestUploadRFCOptions, telemetryData *telemetry.CustomData) {
// Utils can be used wherever the command.ExecRunner interface is expected.
// It can also be used for example as a mavenExecRunner.
utils := newTransportRequestUploadRFCUtils()
action := rfc.UploadAction{}
// For HTTP calls import piperhttp "github.com/SAP/jenkins-library/pkg/http"
// and use a &piperhttp.Client{} in a custom system
// Example: step checkmarxExecuteScan.go
// Error situations should be bubbled up until they reach the line below which will then stop execution
// through the log.Entry().Fatal() call leading to an os.Exit(1) in the end.
err := runTransportRequestUploadRFC(&config, &action, telemetryData, utils)
if err != nil {
log.Entry().WithError(err).Fatal("step execution failed")
}
}
func runTransportRequestUploadRFC(config *transportRequestUploadRFCOptions, action rfc.Upload, telemetryData *telemetry.CustomData, cmd rfc.Exec) error {
action.WithConnection(
rfc.Connection{
Endpoint: config.Endpoint,
Client: config.Client,
Instance: config.Instance,
User: config.Username,
Password: config.Password,
},
)
action.WithApplication(
rfc.Application{
Name: config.ApplicationName,
Description: config.ApplicationDescription,
AbapPackage: config.AbapPackage,
},
)
action.WithConfiguration(
rfc.UploadConfig{
AcceptUnixStyleEndOfLine: config.AcceptUnixStyleLineEndings,
CodePage: config.CodePage,
FailUploadOnWarning: config.FailUploadOnWarning,
Verbose: GeneralConfig.Verbose,
},
)
action.WithTransportRequestID(config.TransportRequestID)
action.WithApplicationURL(config.ApplicationURL)
return action.Perform(cmd)
}