forked from tektoncd/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit_test.go
223 lines (191 loc) · 6.32 KB
/
init_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
// +build e2e
/*
Copyright 2019 The Tekton 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.
*/
// This file contains initialization logic for the tests, such as special magical global state that needs to be initialized.
package test
import (
"flag"
"fmt"
"os"
"strings"
"sync"
"testing"
"github.com/ghodss/yaml"
"github.com/tektoncd/pipeline/pkg/names"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
knativetest "knative.dev/pkg/test"
"knative.dev/pkg/test/logging"
// Mysteriously by k8s libs, or they fail to create `KubeClient`s from config. Apparently just importing it is enough. @_@ side effects @_@. https://github.com/kubernetes/client-go/issues/242
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
// Mysteriously by k8s libs, or they fail to create `KubeClient`s when using oidc authentication. Apparently just importing it is enough. @_@ side effects @_@. https://github.com/kubernetes/client-go/issues/345
_ "k8s.io/client-go/plugin/pkg/client/auth/oidc"
)
var initMetrics sync.Once
var skipRootUserTests = false
func init() {
flag.BoolVar(&skipRootUserTests, "skipRootUserTests", false, "Skip tests that require root user")
}
func setup(t *testing.T, fn ...func(*testing.T, *clients, string)) (*clients, string) {
t.Helper()
namespace := names.SimpleNameGenerator.RestrictLengthWithRandomSuffix("arendelle")
initializeLogsAndMetrics(t)
c := newClients(t, knativetest.Flags.Kubeconfig, knativetest.Flags.Cluster, namespace)
createNamespace(t, namespace, c.KubeClient)
verifyServiceAccountExistence(t, namespace, c.KubeClient)
for _, f := range fn {
f(t, c, namespace)
}
return c, namespace
}
func header(logf logging.FormatLogger, text string) {
left := "### "
right := " ###"
txt := left + text + right
bar := strings.Repeat("#", len(txt))
logf(bar)
logf(txt)
logf(bar)
}
func tearDown(t *testing.T, cs *clients, namespace string) {
t.Helper()
if cs.KubeClient == nil {
return
}
if t.Failed() {
header(t.Logf, fmt.Sprintf("Dumping objects from %s", namespace))
bs, err := getCRDYaml(cs, namespace)
if err != nil {
t.Error(err)
} else {
t.Log(string(bs))
}
header(t.Logf, fmt.Sprintf("Dumping logs from Pods in the %s", namespace))
taskruns, err := cs.TaskRunClient.List(metav1.ListOptions{})
if err != nil {
t.Errorf("Error getting TaskRun list %s", err)
}
for _, tr := range taskruns.Items {
if tr.Status.PodName != "" {
CollectPodLogs(cs, tr.Status.PodName, namespace, t.Logf)
}
}
}
if os.Getenv("TEST_KEEP_NAMESPACES") == "" {
t.Logf("Deleting namespace %s", namespace)
if err := cs.KubeClient.Kube.CoreV1().Namespaces().Delete(namespace, &metav1.DeleteOptions{}); err != nil {
t.Errorf("Failed to delete namespace %s: %s", namespace, err)
}
}
}
func initializeLogsAndMetrics(t *testing.T) {
initMetrics.Do(func() {
flag.Parse()
flag.Set("alsologtostderr", "true")
logging.InitializeLogger()
//if knativetest.Flags.EmitMetrics {
logging.InitializeMetricExporter(t.Name())
//}
})
}
func createNamespace(t *testing.T, namespace string, kubeClient *knativetest.KubeClient) {
t.Logf("Create namespace %s to deploy to", namespace)
labels := map[string]string{
"tekton.dev/test-e2e": "true",
}
if _, err := kubeClient.Kube.CoreV1().Namespaces().Create(&corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: namespace,
Labels: labels,
},
}); err != nil {
t.Fatalf("Failed to create namespace %s for tests: %s", namespace, err)
}
}
func verifyServiceAccountExistence(t *testing.T, namespace string, kubeClient *knativetest.KubeClient) {
defaultSA := "default"
t.Logf("Verify SA %q is created in namespace %q", defaultSA, namespace)
if err := wait.PollImmediate(interval, timeout, func() (bool, error) {
_, err := kubeClient.Kube.CoreV1().ServiceAccounts(namespace).Get(defaultSA, metav1.GetOptions{})
if err != nil && errors.IsNotFound(err) {
return false, nil
}
return true, err
}); err != nil {
t.Fatalf("Failed to get SA %q in namespace %q for tests: %s", defaultSA, namespace, err)
}
}
// TestMain initializes anything global needed by the tests. Right now this is just log and metric
// setup since the log and metric libs we're using use global state :(
func TestMain(m *testing.M) {
flag.Parse()
c := m.Run()
fmt.Fprintf(os.Stderr, "Using kubeconfig at `%s` with cluster `%s`\n", knativetest.Flags.Kubeconfig, knativetest.Flags.Cluster)
os.Exit(c)
}
func getCRDYaml(cs *clients, ns string) ([]byte, error) {
var output []byte
printOrAdd := func(i interface{}) {
bs, err := yaml.Marshal(i)
if err != nil {
return
}
output = append(output, []byte("\n---\n")...)
output = append(output, bs...)
}
ps, err := cs.PipelineClient.List(metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get pipeline: %w", err)
}
for _, i := range ps.Items {
printOrAdd(i)
}
prs, err := cs.PipelineResourceClient.List(metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get pipelinerun resource: %w", err)
}
for _, i := range prs.Items {
printOrAdd(i)
}
prrs, err := cs.PipelineRunClient.List(metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get pipelinerun: %w", err)
}
for _, i := range prrs.Items {
printOrAdd(i)
}
ts, err := cs.TaskClient.List(metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get tasks: %w", err)
}
for _, i := range ts.Items {
printOrAdd(i)
}
trs, err := cs.TaskRunClient.List(metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get taskrun: %w", err)
}
for _, i := range trs.Items {
printOrAdd(i)
}
pods, err := cs.KubeClient.Kube.CoreV1().Pods(ns).List(metav1.ListOptions{})
if err != nil {
return nil, fmt.Errorf("could not get pods: %w", err)
}
for _, i := range pods.Items {
printOrAdd(i)
}
return output, nil
}