mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-03-17 20:47:50 +02:00
Maybe 3rd time is the charm! This makes the CI build run on windows too, and fix broken tests/featuers on Windows. Most of the changes are related to ignoring certain tests on windows, or making sure to use the right path separators. More work to do in the future, probably! #4293 --------- Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
124 lines
3.2 KiB
Go
124 lines
3.2 KiB
Go
package gio
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/goreleaser/goreleaser/v2/internal/testlib"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCopy(t *testing.T) {
|
|
tmp := t.TempDir()
|
|
a := "testdata/somefile.txt"
|
|
b := tmp + "/somefile.txt"
|
|
require.NoError(t, Copy(a, b))
|
|
requireEqualFiles(t, a, b)
|
|
}
|
|
|
|
func TestCopySymlink(t *testing.T) {
|
|
tmp := t.TempDir()
|
|
a := "testdata/somefile.txt"
|
|
b := tmp + "/somefile.txt"
|
|
c := tmp + "/somefile2.txt"
|
|
require.NoError(t, os.Symlink(a, b))
|
|
require.NoError(t, Copy(b, c))
|
|
|
|
fi, err := os.Lstat(c)
|
|
require.NoError(t, err)
|
|
require.NotEqual(t, 0, fi.Mode()&os.ModeSymlink)
|
|
|
|
l, err := os.Readlink(c)
|
|
require.NoError(t, err)
|
|
require.Equal(t, a, filepath.ToSlash(l))
|
|
}
|
|
|
|
func TestEqualFilesModeChanged(t *testing.T) {
|
|
testlib.SkipIfWindows(t)
|
|
tmp := t.TempDir()
|
|
a := "testdata/somefile.txt"
|
|
b := tmp + "/somefile.txt"
|
|
require.NoError(t, CopyWithMode(a, b, 0o755))
|
|
requireNotEqualFiles(t, a, b)
|
|
}
|
|
|
|
func TestEqualFilesContentsChanged(t *testing.T) {
|
|
tmp := t.TempDir()
|
|
a := "testdata/somefile.txt"
|
|
b := tmp + "/somefile.txt"
|
|
require.NoError(t, Copy(a, b))
|
|
require.NoError(t, os.WriteFile(b, []byte("hello world"), 0o644))
|
|
requireNotEqualFiles(t, a, b)
|
|
}
|
|
|
|
func TestEqualFilesDontExist(t *testing.T) {
|
|
a := "testdata/nope.txt"
|
|
b := "testdata/somefile.txt"
|
|
c := "testdata/notadir/lala"
|
|
require.Error(t, Copy(a, b))
|
|
require.Error(t, CopyWithMode(a, b, 0o644))
|
|
require.Error(t, Copy(b, c))
|
|
}
|
|
|
|
func TestCopyErrors(t *testing.T) {
|
|
a := "testdata/nope.txt"
|
|
b := "testdata/also-nope.txt"
|
|
|
|
err := copySymlink(a, b)
|
|
require.Error(t, err)
|
|
|
|
err = copyFile(a, b, 0o755)
|
|
require.Error(t, err)
|
|
}
|
|
|
|
func TestCopyFile(t *testing.T) {
|
|
dir := t.TempDir()
|
|
src, err := os.CreateTemp(dir, "src")
|
|
require.NoError(t, err)
|
|
require.NoError(t, src.Close())
|
|
dst := filepath.Join(dir, "dst")
|
|
require.NoError(t, os.WriteFile(src.Name(), []byte("foo"), 0o644))
|
|
require.NoError(t, Copy(src.Name(), dst))
|
|
requireEqualFiles(t, src.Name(), dst)
|
|
}
|
|
|
|
func TestCopyDirectory(t *testing.T) {
|
|
srcDir := t.TempDir()
|
|
dstDir := t.TempDir()
|
|
const testFile = "test"
|
|
require.NoError(t, os.WriteFile(filepath.Join(srcDir, testFile), []byte("foo"), 0o644))
|
|
require.NoError(t, Copy(srcDir, dstDir))
|
|
requireEqualFiles(t, filepath.Join(srcDir, testFile), filepath.Join(dstDir, testFile))
|
|
}
|
|
|
|
func TestCopyTwoLevelDirectory(t *testing.T) {
|
|
srcDir := t.TempDir()
|
|
dstDir := t.TempDir()
|
|
srcLevel2 := filepath.Join(srcDir, "level2")
|
|
const testFile = "test"
|
|
|
|
require.NoError(t, os.Mkdir(srcLevel2, 0o755))
|
|
require.NoError(t, os.WriteFile(filepath.Join(srcDir, testFile), []byte("foo"), 0o644))
|
|
require.NoError(t, os.WriteFile(filepath.Join(srcLevel2, testFile), []byte("foo"), 0o644))
|
|
|
|
require.NoError(t, Copy(srcDir, dstDir))
|
|
|
|
requireEqualFiles(t, filepath.Join(srcDir, testFile), filepath.Join(dstDir, testFile))
|
|
requireEqualFiles(t, filepath.Join(srcLevel2, testFile), filepath.Join(dstDir, "level2", testFile))
|
|
}
|
|
|
|
func requireEqualFiles(tb testing.TB, a, b string) {
|
|
tb.Helper()
|
|
eq, err := EqualFiles(a, b)
|
|
require.NoError(tb, err)
|
|
require.True(tb, eq, "%s != %s", a, b)
|
|
}
|
|
|
|
func requireNotEqualFiles(tb testing.TB, a, b string) {
|
|
tb.Helper()
|
|
eq, err := EqualFiles(a, b)
|
|
require.NoError(tb, err)
|
|
require.False(tb, eq, "%s == %s", a, b)
|
|
}
|