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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
//go:build !integration
// +build !integration
package helperimage
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitlab-runner/helpers/container/windows"
"gitlab.com/gitlab-org/gitlab-runner/shells"
)
func Test_windowsInfo_create(t *testing.T) {
revision := "4011f186"
for _, shell := range []string{"", shells.SNPowershell, shells.SNPwsh} {
expectedPowershellCmdLine := getPowerShellCmd(shell)
if shell == "" {
assert.Equal(t, shells.SNPowershell, expectedPowershellCmdLine[0])
}
tests := []struct {
operatingSystem string
shell string
gitlabRegistry bool
expectedInfo Info
expectedErr error
}{
{
operatingSystem: "Windows Server 2019 Datacenter Evaluation Version 1809 (OS Build 17763.316)",
gitlabRegistry: true,
expectedInfo: Info{
Architecture: windowsSupportedArchitecture,
Name: GitLabRegistryName,
Tag: fmt.Sprintf(
"%s-%s-%s",
windowsSupportedArchitecture,
revision,
baseImage1809,
),
IsSupportingLocalImport: false,
Cmd: expectedPowershellCmdLine,
},
expectedErr: nil,
},
{
operatingSystem: "Windows Server 2019 Datacenter Evaluation Version 1809 (OS Build 17763.316)",
gitlabRegistry: false,
expectedInfo: Info{
Architecture: windowsSupportedArchitecture,
Name: DockerHubName,
Tag: fmt.Sprintf(
"%s-%s-%s",
windowsSupportedArchitecture,
revision,
baseImage1809,
),
IsSupportingLocalImport: false,
Cmd: expectedPowershellCmdLine,
},
expectedErr: nil,
},
{
operatingSystem: "Windows Server Datacenter Version 1809 (OS Build 1803.590)",
gitlabRegistry: true,
expectedInfo: Info{
Architecture: windowsSupportedArchitecture,
Name: GitLabRegistryName,
Tag: fmt.Sprintf(
"%s-%s-%s",
windowsSupportedArchitecture,
revision,
baseImage1809,
),
IsSupportingLocalImport: false,
Cmd: expectedPowershellCmdLine,
},
expectedErr: nil,
},
{
operatingSystem: "Windows 10 Pro Version 2004 (OS Build 19041.329)",
gitlabRegistry: true,
expectedInfo: Info{
Architecture: windowsSupportedArchitecture,
Name: GitLabRegistryName,
Tag: fmt.Sprintf(
"%s-%s-%s",
windowsSupportedArchitecture,
revision,
baseImage2004,
),
IsSupportingLocalImport: false,
Cmd: expectedPowershellCmdLine,
},
expectedErr: nil,
},
{
operatingSystem: "Windows Server Datacenter Version 2009 (OS Build 19042.985)",
expectedInfo: Info{
Architecture: windowsSupportedArchitecture,
Name: DockerHubName,
Tag: fmt.Sprintf(
"%s-%s-%s",
windowsSupportedArchitecture,
revision,
baseImage20H2,
),
IsSupportingLocalImport: false,
Cmd: expectedPowershellCmdLine,
},
expectedErr: nil,
},
{
operatingSystem: "some random string",
expectedErr: windows.NewUnsupportedWindowsVersionError("some random string"),
},
}
t.Run(shell, func(t *testing.T) {
for _, test := range tests {
t.Run(test.operatingSystem, func(t *testing.T) {
w := new(windowsInfo)
image, err := w.Create(
revision,
Config{
OperatingSystem: test.operatingSystem,
Shell: shell,
GitLabRegistry: test.gitlabRegistry,
},
)
assert.Equal(t, test.expectedInfo, image)
assert.ErrorIs(t, err, test.expectedErr)
})
}
})
}
}
func Test_windowsInfo_baseImage_NoSupportedVersion(t *testing.T) {
oldHelperImages := helperImages
defer func() {
helperImages = oldHelperImages
}()
helperImages = map[string]string{
windows.V1809: baseImage1809,
}
unsupportedVersion := "Windows Server Datacenter Version 1803 (OS Build 17134.590)"
w := new(windowsInfo)
_, err := w.baseImage(unsupportedVersion)
var unsupportedErr *windows.UnsupportedWindowsVersionError
require.ErrorAs(t, err, &unsupportedErr)
assert.Equal(t, unsupportedVersion, unsupportedErr.Version)
}
|