mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
9a18489cc4
Co-authored-by: Stephan Aßmus <stephan.assmus@sap.com>
91 lines
2.5 KiB
Go
91 lines
2.5 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/SAP/jenkins-library/pkg/maven"
|
|
"github.com/SAP/jenkins-library/pkg/telemetry"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
"unicode"
|
|
)
|
|
|
|
func mavenExecuteIntegration(config mavenExecuteIntegrationOptions, _ *telemetry.CustomData) {
|
|
err := runMavenExecuteIntegration(&config, maven.NewUtilsBundle())
|
|
if err != nil {
|
|
log.Entry().WithError(err).Fatal("step execution failed")
|
|
}
|
|
}
|
|
|
|
func runMavenExecuteIntegration(config *mavenExecuteIntegrationOptions, utils maven.Utils) error {
|
|
pomPath := filepath.Join("integration-tests", "pom.xml")
|
|
hasIntegrationTestsModule, _ := utils.FileExists(pomPath)
|
|
if !hasIntegrationTestsModule {
|
|
return fmt.Errorf("maven module 'integration-tests' does not exist in project structure")
|
|
}
|
|
|
|
if config.InstallArtifacts {
|
|
err := maven.InstallMavenArtifacts(&maven.EvaluateOptions{
|
|
M2Path: config.M2Path,
|
|
ProjectSettingsFile: config.ProjectSettingsFile,
|
|
GlobalSettingsFile: config.GlobalSettingsFile,
|
|
}, utils)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if err := validateForkCount(config.ForkCount); err != nil {
|
|
return err
|
|
}
|
|
|
|
retryDefine := fmt.Sprintf("-Dsurefire.rerunFailingTestsCount=%v", config.Retry)
|
|
forkCountDefine := fmt.Sprintf("-Dsurefire.forkCount=%v", config.ForkCount)
|
|
|
|
mavenOptions := maven.ExecuteOptions{
|
|
PomPath: pomPath,
|
|
M2Path: config.M2Path,
|
|
ProjectSettingsFile: config.ProjectSettingsFile,
|
|
GlobalSettingsFile: config.GlobalSettingsFile,
|
|
Goals: []string{"org.jacoco:jacoco-maven-plugin:prepare-agent", "test"},
|
|
Defines: []string{retryDefine, forkCountDefine},
|
|
}
|
|
|
|
_, err := maven.Execute(&mavenOptions, utils)
|
|
|
|
return err
|
|
}
|
|
|
|
func validateForkCount(value string) error {
|
|
var err error
|
|
|
|
if strings.HasSuffix(value, "C") {
|
|
value := strings.TrimSuffix(value, "C")
|
|
for _, c := range value {
|
|
if !unicode.IsDigit(c) && c != '.' {
|
|
err = fmt.Errorf("only integers or floats allowed with 'C' suffix")
|
|
break
|
|
}
|
|
}
|
|
if err == nil {
|
|
_, err = strconv.ParseFloat(value, 64)
|
|
}
|
|
} else {
|
|
for _, c := range value {
|
|
if !unicode.IsDigit(c) {
|
|
err = fmt.Errorf("only integers allowed without 'C' suffix")
|
|
break
|
|
}
|
|
}
|
|
if err == nil {
|
|
_, err = strconv.ParseInt(value, 10, 64)
|
|
}
|
|
}
|
|
|
|
if err != nil {
|
|
return fmt.Errorf("invalid forkCount parameter '%v': %w, please see https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#forkCount for details", value, err)
|
|
}
|
|
return nil
|
|
}
|