refractor: move internal build function to util.
This commit is contained in:
parent
5d40cc1166
commit
ac935ce81c
2 changed files with 71 additions and 0 deletions
|
|
@ -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)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue