forked from GoogleContainerTools/skaffold
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deploy_test.go
296 lines (243 loc) · 10.1 KB
/
deploy_test.go
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
Copyright 2019 The Skaffold Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package integration
import (
"encoding/json"
"errors"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"testing"
"github.com/GoogleContainerTools/skaffold/v2/cmd/skaffold/app/flags"
"github.com/GoogleContainerTools/skaffold/v2/integration/skaffold"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/util"
"github.com/GoogleContainerTools/skaffold/v2/pkg/skaffold/walk"
"github.com/GoogleContainerTools/skaffold/v2/testutil"
)
func TestBuildDeploy(t *testing.T) {
MarkIntegrationTest(t, NeedsGcp)
ns, client := SetupNamespace(t)
outputBytes := skaffold.Build("--quiet", "--platform=linux/arm64,linux/amd64").InDir("examples/nodejs").InNs(ns.Name).RunOrFailOutput(t)
// Parse the Build Output
buildArtifacts, err := flags.ParseBuildOutput(outputBytes)
failNowIfError(t, err)
tmpDir := testutil.NewTempDir(t)
buildOutputFile := tmpDir.Path("build.out")
tmpDir.Write("build.out", string(outputBytes))
// Run Deploy using the build output
// See https://github.com/GoogleContainerTools/skaffold/issues/2372 on why status-check=false
skaffold.Deploy("--build-artifacts", buildOutputFile, "--status-check=false").InDir("examples/nodejs").InNs(ns.Name).RunOrFail(t)
depApp := client.GetDeployment("node")
testutil.CheckDeepEqual(t, buildArtifacts.Builds[0].Tag, depApp.Spec.Template.Spec.Containers[0].Image)
}
func TestDeploy(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
ns, client := SetupNamespace(t)
// `--default-repo=` is used to cancel the default repo that is set by default.
skaffold.Deploy("--images", "index.docker.io/library/busybox:1", "--default-repo=").InDir("examples/kustomize").InNs(ns.Name).RunOrFail(t)
dep := client.GetDeployment("kustomize-test")
testutil.CheckDeepEqual(t, "index.docker.io/library/busybox:1", dep.Spec.Template.Spec.Containers[0].Image)
}
func TestDeployWithBuildArtifacts(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
ns, client := SetupNamespace(t)
// first build the artifacts and output to file
skaffold.Build("--file-output=images.json", "--default-repo=").InDir("examples/getting-started").RunOrFail(t)
// `--default-repo=` is used to cancel the default repo that is set by default.
skaffold.Deploy("--build-artifacts=images.json", "--default-repo=", "--load-images=true").InDir("examples/getting-started").InNs(ns.Name).RunOrFail(t)
pod := client.GetPod("getting-started")
testutil.CheckContains(t, "skaffold-example", pod.Spec.Containers[0].Image)
}
func TestDeployWithImages(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
ns, client := SetupNamespace(t)
// first build the artifacts and output to file
skaffold.Build("--file-output=artifacts.json", "--default-repo=").InDir("examples/getting-started").RunOrFail(t)
var artifacts flags.BuildOutput
if ba, err := os.ReadFile("examples/getting-started/artifacts.json"); err != nil {
t.Fatal("could not read artifacts.json", err)
} else if err := json.Unmarshal(ba, &artifacts); err != nil {
t.Fatal("could not decode artifacts.json", err)
}
var images []string
for _, a := range artifacts.Builds {
images = append(images, a.ImageName+"="+a.Tag)
}
// `--default-repo=` is used to cancel the default repo that is set by default.
skaffold.Deploy("--images="+strings.Join(images, ","), "--default-repo=", "--load-images=true").InDir("examples/getting-started").InNs(ns.Name).RunOrFail(t)
pod := client.GetPod("getting-started")
testutil.CheckContains(t, "skaffold-example", pod.Spec.Containers[0].Image)
}
func TestDeployTail(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
ns, _ := SetupNamespace(t)
// `--default-repo=` is used to cancel the default repo that is set by default.
out := skaffold.Deploy("--tail", "--images", "busybox:latest", "--default-repo=").InDir("testdata/deploy-hello-tail").InNs(ns.Name).RunLive(t)
WaitForLogs(t, out, "Hello world!")
}
func TestDeployTailDefaultNamespace(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
// `--default-repo=` is used to cancel the default repo that is set by default.
out := skaffold.Deploy("--tail", "--images", "busybox:latest", "--default-repo=").InDir("testdata/deploy-hello-tail").RunLive(t)
defer skaffold.Delete().InDir("testdata/deploy-hello-tail").Run(t)
WaitForLogs(t, out, "Hello world!")
}
func TestDeployWithInCorrectConfig(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
ns, _ := SetupNamespace(t)
// We're not providing a tag for the getting-started image
output, err := skaffold.Deploy().InDir("examples/getting-started").InNs(ns.Name).RunWithCombinedOutput(t)
if err == nil {
t.Errorf("expected to see an error since not every image tag is provided: %s", output)
} else if !strings.Contains(string(output), "no tag provided for image [skaffold-example]") {
t.Errorf("failed without saying the reason: %s", output)
}
}
// Verify that we can deploy without artifact details (https://github.com/GoogleContainerTools/skaffold/issues/4616)
func TestDeployWithoutWorkspaces(t *testing.T) {
MarkIntegrationTest(t, NeedsGcp)
ns, _ := SetupNamespace(t)
outputBytes := skaffold.Build("--quiet").InDir("examples/nodejs").InNs(ns.Name).RunOrFailOutput(t)
// Parse the Build Output
buildArtifacts, err := flags.ParseBuildOutput(outputBytes)
failNowIfError(t, err)
if len(buildArtifacts.Builds) != 1 {
t.Fatalf("expected 1 artifact to be built, but found %d", len(buildArtifacts.Builds))
}
tmpDir := testutil.NewTempDir(t)
buildOutputFile := tmpDir.Path("build.out")
tmpDir.Write("build.out", string(outputBytes))
copyFiles(tmpDir.Root(), "examples/nodejs/skaffold.yaml")
copyFiles(tmpDir.Root(), "examples/nodejs/k8s")
// Run Deploy using the build output
// See https://github.com/GoogleContainerTools/skaffold/issues/2372 on why status-check=false
skaffold.Deploy("--build-artifacts", buildOutputFile, "--status-check=false").InDir(tmpDir.Root()).InNs(ns.Name).RunOrFail(t)
}
func TestDeployDependenciesOrder(t *testing.T) {
tests := []struct {
description string
dir string
moduleToDeploy string
expectedDeployOrder []string
}{
{
description: "Deploy order of entire project",
dir: "testdata/multi-config-dependencies-order",
expectedDeployOrder: []string{
"module4",
"module3",
"module2",
"module1",
},
},
{
description: "Deploy order for just one part of the project",
dir: "testdata/multi-config-dependencies-order",
moduleToDeploy: "module2",
expectedDeployOrder: []string{
"module4",
"module3",
"module2",
},
},
}
for _, test := range tests {
t.Run(test.description, func(t *testing.T) {
MarkIntegrationTest(t, CanRunWithoutGcp)
targetModule := []string{}
if test.moduleToDeploy != "" {
targetModule = []string{"--module", test.moduleToDeploy}
}
expectedFormatedDeployOrder := []string{}
for _, module := range test.expectedDeployOrder {
expectedFormatedDeployOrder = append(expectedFormatedDeployOrder, fmt.Sprintf(" - pod/%v created", module))
expectedFormatedDeployOrder = append(expectedFormatedDeployOrder, "Waiting for deployments to stabilize...")
expectedFormatedDeployOrder = append(expectedFormatedDeployOrder, "Deployments stabilized in \\d*\\.?\\d+ms")
}
expectedFormatedDeployOrder = append([]string{"Starting deploy..."}, expectedFormatedDeployOrder...)
expectedOutput := strings.Join(expectedFormatedDeployOrder, "\n")
ns, _ := SetupNamespace(t)
outputBytes := skaffold.Run(targetModule...).InDir(test.dir).InNs(ns.Name).RunOrFailOutput(t)
defer skaffold.Delete().InDir(test.dir).InNs(ns.Name).RunOrFail(t)
output := string(outputBytes)
testutil.CheckRegex(t, expectedOutput, output)
})
}
}
// Copies a file or directory tree. There are 2x3 cases:
// 1. If _src_ is a file,
// 1. and _dst_ exists and is a file then _src_ is copied into _dst_
// 2. and _dst_ exists and is a directory, then _src_ is copied as _dst/$(basename src)_
// 3. and _dst_ does not exist, then _src_ is copied as _dst_.
// 2. If _src_ is a directory,
// 1. and _dst_ exists and is a file, then return an error
// 2. and _dst_ exists and is a directory, then src is copied as _dst/$(basename src)_
// 3. and _dst_ does not exist, then src is copied as _dst/src[1:]_.
func copyFiles(dst, src string) error {
if util.IsFile(src) {
switch {
case util.IsFile(dst): // copy _src_ to _dst_
case util.IsDir(dst): // copy _src_ to _dst/src[-1]
dst = filepath.Join(dst, filepath.Base(src))
default: // copy _src_ to _dst_
if err := os.MkdirAll(filepath.Dir(dst), os.ModePerm); err != nil {
return err
}
}
in, err := os.Open(src)
if err != nil {
return err
}
out, err := os.Create(dst)
if err != nil {
return err
}
_, err = io.Copy(out, in)
return err
} else if !util.IsDir(src) {
return errors.New("src does not exist")
}
// so src is a directory
if util.IsFile(dst) {
return errors.New("cannot copy directory into file")
}
srcPrefix := src
if util.IsDir(dst) { // src is copied to _dst/$(basename src)
srcPrefix = filepath.Dir(src)
} else if err := os.MkdirAll(filepath.Dir(dst), os.ModePerm); err != nil {
return err
}
return walk.From(src).Unsorted().WhenIsFile().Do(func(path string, _ walk.Dirent) error {
rel, err := filepath.Rel(srcPrefix, path)
if err != nil {
return err
}
in, err := os.Open(path)
if err != nil {
return err
}
defer in.Close()
destFile := filepath.Join(dst, rel)
if err := os.MkdirAll(filepath.Dir(destFile), os.ModePerm); err != nil {
return err
}
out, err := os.Create(destFile)
if err != nil {
return err
}
_, err = io.Copy(out, in)
return err
})
}