refractor: move internal build function to util.

This commit is contained in:
Alexandre Pujol 2024-03-25 21:45:18 +00:00
parent 5d40cc1166
commit ac935ce81c
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
2 changed files with 71 additions and 0 deletions

View file

@ -8,6 +8,8 @@ import (
"reflect"
"regexp"
"testing"
"github.com/arduino/go-paths-helper"
)
func TestDecodeHexInString(t *testing.T) {
@ -108,3 +110,44 @@ func TestRegexReplList_Replace(t *testing.T) {
})
}
}
func TestCopyTo(t *testing.T) {
tests := []struct {
name string
src *paths.Path
dst *paths.Path
wantErr bool
}{
{
name: "default",
src: paths.New("../../apparmor.d/groups/_full/"),
dst: paths.New("../../.build/apparmor.d/groups/_full/"),
wantErr: false,
},
{
name: "issue-source",
src: paths.New("../../apparmor.d/groups/nope/"),
dst: paths.New("../../.build/apparmor.d/groups/_full/"),
wantErr: true,
},
{
name: "issue-dest-1",
src: paths.New("../../apparmor.d/groups/_full/"),
dst: paths.New("/"),
wantErr: true,
},
{
name: "issue-dest-2",
src: paths.New("../../apparmor.d/groups/_full/"),
dst: paths.New("/_full/"),
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := CopyTo(tt.src, tt.dst); (err != nil) != tt.wantErr {
t.Errorf("CopyTo() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}