1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
package internal
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
type testDataSplitReference struct {
ref string
dir string
image string
}
type testDataScopeValidation struct {
scope string
errMessage string
}
func TestSplitReferenceIntoDirAndImageWindows(t *testing.T) {
tests := []testDataSplitReference{
{`C:\foo\bar:busybox:latest`, `C:\foo\bar`, "busybox:latest"},
{`C:\foo\bar:busybox`, `C:\foo\bar`, "busybox"},
{`C:\foo\bar`, `C:\foo\bar`, ""},
}
for _, test := range tests {
dir, image := splitPathAndImageWindows(test.ref)
assert.Equal(t, test.dir, dir, "Unexpected OCI directory")
assert.Equal(t, test.image, image, "Unexpected image")
}
}
func TestSplitReferenceIntoDirAndImageNonWindows(t *testing.T) {
tests := []testDataSplitReference{
{"/foo/bar:busybox:latest", "/foo/bar", "busybox:latest"},
{"/foo/bar:busybox", "/foo/bar", "busybox"},
{"/foo/bar", "/foo/bar", ""},
}
for _, test := range tests {
dir, image := splitPathAndImageNonWindows(test.ref)
assert.Equal(t, test.dir, dir, "Unexpected OCI directory")
assert.Equal(t, test.image, image, "Unexpected image")
}
}
func TestValidateScopeWindows(t *testing.T) {
tests := []testDataScopeValidation{
{`C:\foo`, ""},
{`D:\`, ""},
{"C:", "Invalid scope 'C:'. Must be an absolute path"},
{"E", "Invalid scope 'E'. Must be an absolute path"},
{"", "Invalid scope ''. Must be an absolute path"},
}
for _, test := range tests {
err := validateScopeWindows(test.scope)
if test.errMessage == "" {
assert.NoError(t, err)
} else {
assert.EqualError(t, err, test.errMessage, fmt.Sprintf("No error for scope '%s'", test.scope))
}
}
}
|