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 64 65 66 67 68 69 70
|
//go:build !integration
// +build !integration
package helperimage
import (
"testing"
"github.com/stretchr/testify/assert"
"gitlab.com/gitlab-org/gitlab-runner/helpers/container/windows"
"gitlab.com/gitlab-org/gitlab-runner/helpers/docker/errors"
)
func TestGetInfo(t *testing.T) {
const unsupportedVersion = "9.9"
tests := []struct {
osType string
version string
expectedError error
}{
{osType: OSTypeLinux, expectedError: nil},
{
osType: OSTypeWindows,
version: unsupportedVersion,
expectedError: windows.NewUnsupportedWindowsVersionError(unsupportedVersion),
},
{osType: "unsupported", expectedError: errors.NewErrOSNotSupported("unsupported")},
}
for _, test := range tests {
t.Run(test.osType, func(t *testing.T) {
_, err := Get(headRevision, Config{OSType: test.osType, OperatingSystem: test.version})
assert.ErrorIs(t, err, test.expectedError)
})
}
}
func TestContainerImage_String(t *testing.T) {
image := Info{
Name: "abc",
Tag: "1234",
}
assert.Equal(t, "abc:1234", image.String())
}
func Test_imageRevision(t *testing.T) {
tests := []struct {
revision string
expectedTag string
}{
{
revision: headRevision,
expectedTag: latestImageRevision,
},
{
revision: "1234",
expectedTag: "1234",
},
}
for _, test := range tests {
t.Run(test.revision, func(t *testing.T) {
assert.Equal(t, test.expectedTag, imageRevision(test.revision))
})
}
}
|