forked from GoogleContainerTools/skaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_cluster_test.go
151 lines (115 loc) · 4.43 KB
/
build_cluster_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
/*
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 (
"fmt"
"os"
"os/exec"
"path"
"path/filepath"
"strings"
"testing"
v1 "k8s.io/api/core/v1"
"github.com/GoogleContainerTools/skaffold/v2/integration/skaffold"
"github.com/GoogleContainerTools/skaffold/v2/testutil"
)
// run on GCP as this test requires a load balancer
func TestBuildKanikoInsecureRegistry(t *testing.T) {
// TODO: This test shall pass once render v2 is completed.
t.SkipNow()
MarkIntegrationTest(t, NeedsGcp)
ns, client := SetupNamespace(t)
dir := "testdata/kaniko-insecure-registry"
skaffold.Run("-p", "deploy-insecure-registry").InDir(dir).InNs(ns.Name).RunOrFailOutput(t)
ip := client.ExternalIP("registry")
registry := fmt.Sprintf("%s:5000", ip)
skaffold.Build("--insecure-registry", registry, "-p", "build-artifact").WithRepo(registry).InDir(dir).InNs(ns.Name).RunOrFailOutput(t)
}
func TestBuildKanikoWithExplicitRepo(t *testing.T) {
// TODO: This test shall pass once render v2 is completed.
t.SkipNow()
MarkIntegrationTest(t, NeedsGcp)
// Other integration tests run with the --default-repo option.
// This one explicitly specifies the full image name.
skaffold.Build().WithRepo("").InDir("testdata/kaniko-explicit-repo").RunOrFail(t)
}
// see integration/testdata/README.md for details
func TestBuildInCluster(t *testing.T) {
// TODO: This test shall pass once render v2 is completed.
t.SkipNow()
MarkIntegrationTest(t, NeedsGcp)
testutil.Run(t, "", func(t *testutil.T) {
ns, client := SetupNamespace(t.T)
// this workaround is to ensure there is no overlap between testcases on kokoro
// see https://github.com/GoogleContainerTools/skaffold/issues/2781#issuecomment-527770537
project, err := filepath.Abs("testdata/skaffold-in-cluster")
t.CheckNoError(err)
// copy the skaffold binary to the test case folder
// this is geared towards the in-docker setup: the fresh built binary is here
// for manual testing, we can override this temporarily
skaffoldSrc, err := exec.LookPath("skaffold")
t.CheckNoError(err)
t.NewTempDir().Chdir()
copyDir(t, project, ".")
copyFile(t, skaffoldSrc, "skaffold")
// TODO: until https://github.com/GoogleContainerTools/skaffold/issues/2757 is resolved,
// this is the simplest way to override the build.cluster.namespace
replaceNamespace(t, "skaffold.yaml", ns)
replaceNamespace(t, "build-step/kustomization.yaml", ns)
// we have to copy the e2esecret from default ns -> temporary namespace for kaniko
client.CreateSecretFrom("default", "e2esecret")
skaffold.Run("-p", "create-build-step").InNs(ns.Name).RunOrFail(t.T)
client.WaitForPodsInPhase(v1.PodSucceeded, "skaffold-in-cluster")
})
}
func replaceNamespace(t *testutil.T, fileName string, ns *v1.Namespace) {
origSkaffoldYaml, err := os.ReadFile(fileName)
if err != nil {
t.Fatalf("failed reading %s: %s", fileName, err)
}
namespacedYaml := strings.ReplaceAll(string(origSkaffoldYaml), "VAR_CLUSTER_NAMESPACE", ns.Name)
if err := os.WriteFile(fileName, []byte(namespacedYaml), 0666); err != nil {
t.Fatalf("failed to write %s: %s", fileName, err)
}
}
func copyFile(t *testutil.T, src, dst string) {
content, err := os.ReadFile(src)
if err != nil {
t.Fatalf("can't read source file: %s: %s", src, err)
}
if err := os.WriteFile(dst, content, 0666); err != nil {
t.Fatalf("failed to copy file %s to %s: %s", src, dst, err)
}
}
func copyDir(t *testutil.T, src string, dst string) {
srcInfo, err := os.Stat(src)
if err != nil {
t.Fatalf("failed to copy dir %s->%s: %s ", src, dst, err)
}
if err = os.MkdirAll(dst, srcInfo.Mode()); err != nil {
t.Fatalf("failed to copy dir %s->%s: %s ", src, dst, err)
}
files, err := os.ReadDir(src)
if err != nil {
t.Fatalf("failed to copy dir %s->%s: %s ", src, dst, err)
}
for _, f := range files {
srcfp := path.Join(src, f.Name())
dstfp := path.Join(dst, f.Name())
if f.IsDir() {
copyDir(t, srcfp, dstfp)
} else {
copyFile(t, srcfp, dstfp)
}
}
}