Initialize platform matchers for current platform

Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
This commit is contained in:
James Sturtevant
2022-01-28 21:48:49 -08:00
parent 2a588a619e
commit 83c80388b2
5 changed files with 191 additions and 32 deletions

View File

@@ -47,15 +47,39 @@ func TestDefault(t *testing.T) {
}
}
func TestMatchComparerMatch(t *testing.T) {
func TestDefaultMatchComparer(t *testing.T) {
defaultMatcher := Default()
for _, test := range []struct {
platform imagespec.Platform
match bool
}{
{
platform: DefaultSpec(),
match: true,
},
{
platform: imagespec.Platform{
OS: "linux",
Architecture: runtime.GOARCH,
},
match: false,
},
} {
assert.Equal(t, test.match, defaultMatcher.Match(test.platform))
}
}
func TestMatchComparerMatch_WCOW(t *testing.T) {
major, minor, build := windows.RtlGetNtVersionNumbers()
buildStr := fmt.Sprintf("%d.%d.%d", major, minor, build)
m := matchComparer{
defaults: Only(imagespec.Platform{
Architecture: "amd64",
OS: "windows",
}),
m := windowsmatcher{
Platform: DefaultSpec(),
osVersionPrefix: buildStr,
defaultMatcher: &matcher{
Platform: Normalize(DefaultSpec()),
},
}
for _, test := range []struct {
platform imagespec.Platform
@@ -106,18 +130,86 @@ func TestMatchComparerMatch(t *testing.T) {
},
match: false,
},
{
platform: imagespec.Platform{
Architecture: "amd64",
OS: "linux",
},
match: false,
},
} {
assert.Equal(t, test.match, m.Match(test.platform))
assert.Equal(t, test.match, m.Match(test.platform), "should match: %t, %s to %s", test.match, m.Platform, test.platform)
}
}
func TestMatchComparerMatch_LCOW(t *testing.T) {
major, minor, build := windows.RtlGetNtVersionNumbers()
buildStr := fmt.Sprintf("%d.%d.%d", major, minor, build)
m := windowsmatcher{
Platform: imagespec.Platform{
OS: "linux",
Architecture: "amd64",
},
osVersionPrefix: "",
defaultMatcher: &matcher{
Platform: Normalize(imagespec.Platform{
OS: "linux",
Architecture: "amd64",
},
),
},
}
for _, test := range []struct {
platform imagespec.Platform
match bool
}{
{
platform: DefaultSpec(),
match: false,
},
{
platform: imagespec.Platform{
Architecture: "amd64",
OS: "windows",
},
match: false,
},
{
platform: imagespec.Platform{
Architecture: "amd64",
OS: "windows",
OSVersion: buildStr + ".2",
},
match: false,
},
{
platform: imagespec.Platform{
Architecture: "amd64",
OS: "windows",
// Use an nonexistent Windows build so we don't get a match. Ws2019's build is 17763/
OSVersion: "10.0.17762.1",
},
match: false,
},
{
platform: imagespec.Platform{
Architecture: "amd64",
OS: "linux",
},
match: true,
},
} {
assert.Equal(t, test.match, m.Match(test.platform), "should match %b, %s to %s", test.match, m.Platform, test.platform)
}
}
func TestMatchComparerLess(t *testing.T) {
m := matchComparer{
defaults: Only(imagespec.Platform{
Architecture: "amd64",
OS: "windows",
}),
m := windowsmatcher{
Platform: DefaultSpec(),
osVersionPrefix: "10.0.17763",
defaultMatcher: &matcher{
Platform: Normalize(DefaultSpec()),
},
}
platforms := []imagespec.Platform{
{