mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
0ba4c2206c
* update all deprecated ioutil usages * forgotten changes * add missing imports * undo changing comment * add missing 'os' import * fix integration test --------- Co-authored-by: I557621 <jordi.van.liempt@sap.com> Co-authored-by: Gulom Alimov <gulomjon.alimov@sap.com>
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package versioning
|
|
|
|
import (
|
|
"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")
|
|
os.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")
|
|
os.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")
|
|
})
|
|
}
|