1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-02-01 13:18:04 +02:00
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

50 lines
1.1 KiB
Go

//go:build unit
// +build unit
package versioning
import (
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGradleGetVersion(t *testing.T) {
t.Run("success case", func(t *testing.T) {
tmpFolder := t.TempDir()
gradlePropsFilePath := filepath.Join(tmpFolder, "gradle.properties")
ioutil.WriteFile(gradlePropsFilePath, []byte("version = 1.2.3"), 0666)
gradle := &Gradle{
path: gradlePropsFilePath,
}
version, err := gradle.GetVersion()
assert.NoError(t, err)
assert.Equal(t, "1.2.3", version)
})
}
func TestGradleSetVersion(t *testing.T) {
t.Run("success case", func(t *testing.T) {
tmpFolder := t.TempDir()
gradlePropsFilePath := filepath.Join(tmpFolder, "gradle.properties")
ioutil.WriteFile(gradlePropsFilePath, []byte("version = 0.0.1"), 0666)
var content []byte
gradle := &Gradle{
path: gradlePropsFilePath,
writeFile: func(filename string, filecontent []byte, mode os.FileMode) error { content = filecontent; return nil },
}
err := gradle.SetVersion("1.2.3")
assert.NoError(t, err)
assert.Contains(t, string(content), "version = 1.2.3")
})
}