mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +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>
151 lines
3.9 KiB
Go
151 lines
3.9 KiB
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package piperutils
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestFileExists(t *testing.T) {
|
|
runInTempDir(t, "testing dir returns false", func(t *testing.T) {
|
|
err := os.Mkdir("test", 0777)
|
|
if err != nil {
|
|
t.Fatal("failed to create test dir in temporary dir")
|
|
}
|
|
result, err := FileExists("test")
|
|
assert.NoError(t, err)
|
|
assert.False(t, result)
|
|
})
|
|
runInTempDir(t, "testing file returns true", func(t *testing.T) {
|
|
file, err := os.CreateTemp("", "testFile")
|
|
assert.NoError(t, err)
|
|
result, err := FileExists(file.Name())
|
|
assert.NoError(t, err)
|
|
assert.True(t, result)
|
|
})
|
|
}
|
|
|
|
func TestDirExists(t *testing.T) {
|
|
runInTempDir(t, "testing dir exists", func(t *testing.T) {
|
|
err := os.Mkdir("test", 0777)
|
|
if err != nil {
|
|
t.Fatal("failed to create test dir in temporary dir")
|
|
}
|
|
files := Files{}
|
|
|
|
result, err := files.DirExists("test")
|
|
assert.NoError(t, err)
|
|
assert.True(t, result, "created folder should exist")
|
|
|
|
result, err = files.DirExists(".")
|
|
assert.NoError(t, err)
|
|
assert.True(t, result, "current directory should exist")
|
|
|
|
result, err = files.DirExists(string(os.PathSeparator))
|
|
assert.NoError(t, err)
|
|
assert.True(t, result, "root directory should exist")
|
|
})
|
|
}
|
|
|
|
func TestCopy(t *testing.T) {
|
|
runInTempDir(t, "copying file succeeds", func(t *testing.T) {
|
|
file := "testFile"
|
|
err := os.WriteFile(file, []byte{byte(1), byte(2), byte(3)}, 0700)
|
|
if err != nil {
|
|
t.Fatal("Failed to create temporary workspace directory")
|
|
}
|
|
|
|
result, err := Copy(file, "testFile2")
|
|
assert.NoError(t, err, "Didn't expert error but got one")
|
|
assert.Equal(t, int64(3), result, "Expected true but got false")
|
|
})
|
|
runInTempDir(t, "copying directory fails", func(t *testing.T) {
|
|
src := filepath.Join("some", "file")
|
|
dst := filepath.Join("another", "file")
|
|
|
|
err := os.MkdirAll(src, 0777)
|
|
if err != nil {
|
|
t.Fatal("Failed to create test directory")
|
|
}
|
|
|
|
files := Files{}
|
|
exists, err := files.DirExists(src)
|
|
assert.NoError(t, err)
|
|
assert.True(t, exists)
|
|
|
|
length, err := files.Copy(src, dst)
|
|
assert.EqualError(t, err, "Source file '"+src+"' does not exist")
|
|
assert.Equal(t, length, int64(0))
|
|
})
|
|
}
|
|
|
|
func runInTempDir(t *testing.T, nameOfRun string, run func(t *testing.T)) {
|
|
t.Run(nameOfRun, func(t *testing.T) {
|
|
dir := t.TempDir()
|
|
oldCWD, _ := os.Getwd()
|
|
_ = os.Chdir(dir)
|
|
t.Cleanup(func() {
|
|
_ = os.Chdir(oldCWD)
|
|
})
|
|
|
|
run(t)
|
|
})
|
|
}
|
|
|
|
func TestExcludeFiles(t *testing.T) {
|
|
t.Parallel()
|
|
t.Run("nil slices", func(t *testing.T) {
|
|
t.Parallel()
|
|
filtered, err := ExcludeFiles(nil, nil)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, filtered, 0)
|
|
})
|
|
t.Run("empty excludes", func(t *testing.T) {
|
|
t.Parallel()
|
|
files := []string{"file"}
|
|
filtered, err := ExcludeFiles(files, nil)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, files, filtered)
|
|
})
|
|
t.Run("direct match", func(t *testing.T) {
|
|
t.Parallel()
|
|
files := []string{"file"}
|
|
filtered, err := ExcludeFiles(files, files)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, filtered, 0)
|
|
})
|
|
t.Run("two direct matches", func(t *testing.T) {
|
|
t.Parallel()
|
|
files := []string{"a", "b"}
|
|
filtered, err := ExcludeFiles(files, files)
|
|
assert.NoError(t, err)
|
|
assert.Len(t, filtered, 0)
|
|
})
|
|
t.Run("one direct exclude matches", func(t *testing.T) {
|
|
t.Parallel()
|
|
files := []string{"a", "b"}
|
|
filtered, err := ExcludeFiles(files, []string{"b"})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []string{"a"}, filtered)
|
|
})
|
|
t.Run("no glob matches", func(t *testing.T) {
|
|
t.Parallel()
|
|
files := []string{"a", "b"}
|
|
filtered, err := ExcludeFiles(files, []string{"*/a", "b/*"})
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, []string{"a", "b"}, filtered)
|
|
})
|
|
t.Run("two globs match", func(t *testing.T) {
|
|
t.Parallel()
|
|
files := []string{"path/to/a", "b"}
|
|
filtered, err := ExcludeFiles(files, []string{"**/a", "**/b"})
|
|
assert.NoError(t, err)
|
|
assert.Len(t, filtered, 0)
|
|
})
|
|
}
|