1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/mavenExecute_test.go
Jk1484 ffc931aad1
feat(golangBuild): use 'unit' build tag to include tests during test execution (#4345)
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files.

* Added unit build tag to all unit test files.

* added to new unit test unit build tag

* Update verify-go.yml

* small fix

---------

Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com>
Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
2023-05-03 21:02:11 +05:00

95 lines
2.2 KiB
Go

//go:build unit
// +build unit
package cmd
import (
"errors"
"github.com/SAP/jenkins-library/pkg/mock"
"github.com/stretchr/testify/assert"
"net/http"
"testing"
)
type mavenMockUtils struct {
shouldFail bool
*mock.FilesMock
*mock.ExecMockRunner
}
func (m *mavenMockUtils) DownloadFile(_, _ string, _ http.Header, _ []*http.Cookie) error {
return errors.New("Test should not download files.")
}
func newMavenMockUtils() mavenMockUtils {
utils := mavenMockUtils{
shouldFail: false,
FilesMock: &mock.FilesMock{},
ExecMockRunner: &mock.ExecMockRunner{},
}
return utils
}
func TestMavenExecute(t *testing.T) {
t.Run("mavenExecute should write output file", func(t *testing.T) {
// init
config := mavenExecuteOptions{
Goals: []string{"goal"},
LogSuccessfulMavenTransfers: true,
ReturnStdout: true,
}
mockUtils := newMavenMockUtils()
mockUtils.StdoutReturn = map[string]string{}
mockUtils.StdoutReturn[""] = "test output"
// test
err := runMavenExecute(config, &mockUtils)
// assert
expectedParams := []string{
"--batch-mode", "goal",
}
assert.NoError(t, err)
if assert.Equal(t, 1, len(mockUtils.Calls)) {
assert.Equal(t, "mvn", mockUtils.Calls[0].Exec)
assert.Equal(t, expectedParams, mockUtils.Calls[0].Params)
}
outputFileExists, _ := mockUtils.FileExists(".pipeline/maven_output.txt")
assert.True(t, outputFileExists)
output, _ := mockUtils.FileRead(".pipeline/maven_output.txt")
assert.Equal(t, "test output", string(output))
})
t.Run("mavenExecute should NOT write output file", func(t *testing.T) {
// init
config := mavenExecuteOptions{
Goals: []string{"goal"},
LogSuccessfulMavenTransfers: true,
}
mockUtils := newMavenMockUtils()
// test
err := runMavenExecute(config, &mockUtils)
// assert
expectedParams := []string{
"--batch-mode", "goal",
}
assert.NoError(t, err)
if assert.Equal(t, 1, len(mockUtils.Calls)) {
assert.Equal(t, "mvn", mockUtils.Calls[0].Exec)
assert.Equal(t, expectedParams, mockUtils.Calls[0].Params)
}
outputFileExists, _ := mockUtils.FileExists(".pipeline/maven_output.txt")
assert.False(t, outputFileExists)
})
}