forked from tektoncd/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_checkout_test.go
More file actions
276 lines (257 loc) · 9.18 KB
/
git_checkout_test.go
File metadata and controls
276 lines (257 loc) · 9.18 KB
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
// +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.
*/
package test
import (
"context"
"fmt"
"strings"
"testing"
"github.com/tektoncd/pipeline/test/parse"
"github.com/tektoncd/pipeline/pkg/apis/pipeline/v1alpha1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
knativetest "knative.dev/pkg/test"
)
const (
gitSourceResourceName = "git-source-resource"
gitTestPipelineRunName = "git-check-pipeline-run"
)
// TestGitPipelineRun is an integration test that will verify the source code
// is either fetched or pulled successfully under different resource
// parameters.
func TestGitPipelineRun(t *testing.T) {
skipIfExcluded(t)
for _, tc := range []struct {
name string
repo string
revision string
refspec string
sslVerify string
}{{
name: "tekton @ main",
repo: "https://github.com/tektoncd/pipeline",
revision: "main",
}, {
name: "tekton @ commit",
repo: "https://github.com/tektoncd/pipeline",
revision: "c15aced0e5aaee6456fbe6f7a7e95e0b5b3b2b2f",
}, {
name: "tekton @ release",
repo: "https://github.com/tektoncd/pipeline",
revision: "release-0.1",
}, {
name: "tekton @ tag",
repo: "https://github.com/tektoncd/pipeline",
revision: "v0.1.0",
}, {
name: "tekton @ PR ref",
repo: "https://github.com/tektoncd/pipeline",
revision: "refs/pull/347/head",
}, {
name: "tekton @ main with refspec",
repo: "https://github.com/tektoncd/pipeline",
revision: "main",
refspec: "refs/tags/v0.1.0:refs/tags/v0.1.0 refs/heads/main:refs/heads/main",
}, {
name: "tekton @ commit with PR refspec",
repo: "https://github.com/tektoncd/pipeline",
revision: "968d5d37a61bfb85426c885dc1090c1cc4b33436",
refspec: "refs/pull/1009/head",
}, {
name: "tekton @ main with PR refspec",
repo: "https://github.com/tektoncd/pipeline",
revision: "main",
refspec: "refs/pull/1009/head:refs/heads/main",
}, {
name: "tekton @ main with sslverify=false",
repo: "https://github.com/tektoncd/pipeline",
revision: "main",
sslVerify: "false",
}, {
name: "non-master repo with default revision",
repo: "https://github.com/tektoncd/results",
revision: "",
}, {
name: "non-master repo with main revision",
repo: "https://github.com/tektoncd/results",
revision: "main",
}} {
tc := tc // capture range variable
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
defer cancel()
c, namespace := setup(ctx, t)
knativetest.CleanupOnInterrupt(func() { tearDown(ctx, t, c, namespace) }, t.Logf)
defer tearDown(ctx, t, c, namespace)
t.Logf("Creating Git PipelineResource %s", gitSourceResourceName)
// Still using the struct here rather than YAML because we'd have to conditionally determine which fields to set in the YAML.
if _, err := c.PipelineResourceClient.Create(ctx, &v1alpha1.PipelineResource{
ObjectMeta: metav1.ObjectMeta{Name: gitSourceResourceName},
Spec: v1alpha1.PipelineResourceSpec{
Type: v1alpha1.PipelineResourceTypeGit,
Params: []v1alpha1.ResourceParam{
{Name: "Url", Value: tc.repo},
{Name: "Revision", Value: tc.revision},
{Name: "Refspec", Value: tc.refspec},
{Name: "sslVerify", Value: tc.sslVerify},
},
},
}, metav1.CreateOptions{}); err != nil {
t.Fatalf("Failed to create Pipeline Resource `%s`: %s", gitSourceResourceName, err)
}
t.Logf("Creating PipelineRun %s", gitTestPipelineRunName)
if _, err := c.PipelineRunClient.Create(ctx, parse.MustParsePipelineRun(t, fmt.Sprintf(`
metadata:
name: %s
spec:
pipelineSpec:
resources:
- name: git-repo
type: git
tasks:
- name: git-check
resources:
inputs:
- name: gitsource
resource: git-repo
taskSpec:
resources:
inputs:
- name: gitsource
type: git
steps:
- args: ['--git-dir=/workspace/gitsource/.git', 'show']
image: alpine/git
resources:
- name: git-repo
resourceRef:
name: %s
`, gitTestPipelineRunName, gitSourceResourceName)), metav1.CreateOptions{}); err != nil {
t.Fatalf("Failed to create PipelineRun %q: %s", gitTestPipelineRunName, err)
}
if err := WaitForPipelineRunState(ctx, c, gitTestPipelineRunName, timeout, PipelineRunSucceed(gitTestPipelineRunName), "PipelineRunCompleted"); err != nil {
t.Errorf("Error waiting for PipelineRun %s to finish: %s", gitTestPipelineRunName, err)
t.Fatalf("PipelineRun execution failed")
}
})
}
}
// TestGitPipelineRunFail is a test to ensure that the code extraction from
// github fails as expected when an invalid revision or https proxy is passed
// on the pipelineresource.
func TestGitPipelineRunFail(t *testing.T) {
for _, tc := range []struct {
name string
revision string
httpsproxy string
}{{
name: "invalid revision",
revision: "Idontexistrabbitmonkeydonkey",
}, {
name: "invalid httpsproxy",
httpsproxy: "invalid.https.proxy.example.com",
}} {
tc := tc // capture range variable
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
ctx := context.Background()
ctx, cancel := context.WithCancel(ctx)
defer cancel()
c, namespace := setup(ctx, t)
knativetest.CleanupOnInterrupt(func() { tearDown(ctx, t, c, namespace) }, t.Logf)
defer tearDown(ctx, t, c, namespace)
t.Logf("Creating Git PipelineResource %s", gitSourceResourceName)
// Still using the struct here rather than YAML because we'd have to conditionally determine which fields to set in the YAML.
if _, err := c.PipelineResourceClient.Create(ctx, &v1alpha1.PipelineResource{
ObjectMeta: metav1.ObjectMeta{Name: gitSourceResourceName},
Spec: v1alpha1.PipelineResourceSpec{
Type: v1alpha1.PipelineResourceTypeGit,
Params: []v1alpha1.ResourceParam{
{Name: "Url", Value: "https://github.com/tektoncd/pipeline"},
{Name: "Revision", Value: tc.revision},
{Name: "httpsProxy", Value: tc.httpsproxy},
},
},
}, metav1.CreateOptions{}); err != nil {
t.Fatalf("Failed to create Pipeline Resource `%s`: %s", gitSourceResourceName, err)
}
t.Logf("Creating PipelineRun %s", gitTestPipelineRunName)
if _, err := c.PipelineRunClient.Create(ctx, parse.MustParsePipelineRun(t, fmt.Sprintf(`
metadata:
name: %s
spec:
pipelineSpec:
resources:
- name: git-repo
type: git
tasks:
- name: git-check
resources:
inputs:
- name: gitsource
resource: git-repo
taskSpec:
resources:
inputs:
- name: gitsource
type: git
steps:
- args: ['--git-dir=/workspace/gitsource/.git', 'show']
image: alpine/git
resources:
- name: git-repo
resourceRef:
name: %s
`, gitTestPipelineRunName, gitSourceResourceName)), metav1.CreateOptions{}); err != nil {
t.Fatalf("Failed to create PipelineRun %q: %s", gitTestPipelineRunName, err)
}
if err := WaitForPipelineRunState(ctx, c, gitTestPipelineRunName, timeout, PipelineRunSucceed(gitTestPipelineRunName), "PipelineRunCompleted"); err != nil {
taskruns, err := c.TaskRunClient.List(ctx, metav1.ListOptions{})
if err != nil {
t.Errorf("Error getting TaskRun list for PipelineRun %s %s", gitTestPipelineRunName, err)
}
for _, tr := range taskruns.Items {
if tr.Status.PodName != "" {
p, err := c.KubeClient.CoreV1().Pods(namespace).Get(ctx, tr.Status.PodName, metav1.GetOptions{})
if err != nil {
t.Fatalf("Error getting pod `%s` in namespace `%s`", tr.Status.PodName, namespace)
}
for _, stat := range p.Status.ContainerStatuses {
if strings.HasPrefix(stat.Name, "step-git-source-"+gitSourceResourceName) {
if stat.State.Terminated != nil {
req := c.KubeClient.CoreV1().Pods(namespace).GetLogs(p.Name, &corev1.PodLogOptions{Container: stat.Name})
logContent, err := req.Do(ctx).Raw()
if err != nil {
t.Fatalf("Error getting pod logs for pod `%s` and container `%s` in namespace `%s`", tr.Status.PodName, stat.Name, namespace)
}
// Check for failure messages from fetch and pull in the log file
if strings.Contains(strings.ToLower(string(logContent)), "couldn't find remote ref idontexistrabbitmonkeydonkey") {
t.Logf("Found exepected errors when retrieving non-existent git revision")
} else {
t.Logf("Container `%s` log File: %s", stat.Name, logContent)
t.Fatalf("The git code extraction did not fail as expected. Expected errors not found in log file.")
}
}
}
}
}
}
} else {
t.Fatal("PipelineRun succeeded when should have failed")
}
})
}
}