1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/versioning/gradle_test.go
Eng Zer Jun 0f4e30e9db
test: use T.TempDir to create temporary test directory (#3721)
This commit replaces `ioutil.TempDir` with `t.TempDir` in tests. The
directory created by `t.TempDir` is automatically removed when the test
and all its subtests complete.

Prior to this commit, temporary directory created using `ioutil.TempDir`
needs to be removed manually by calling `os.RemoveAll`, which is omitted
in some tests. The error handling boilerplate e.g.
	defer func() {
		if err := os.RemoveAll(dir); err != nil {
			t.Fatal(err)
		}
	}
is also tedious, but `t.TempDir` handles this for us nicely.

Reference: https://pkg.go.dev/testing#T.TempDir
Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2022-07-12 15:19:12 +02:00

47 lines
1.1 KiB
Go

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")
})
}