This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
262 lines (244 loc) · 6.71 KB
/
main_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
package main
import (
"flag"
"os"
"testing"
"github.com/AckeeCZ/goproxie/internal/gcloud"
"github.com/AckeeCZ/goproxie/internal/kubectl"
)
func mockGcloudProjectList(mockedProjects []string) func() {
originalFn := gcloudProjectsList
gcloudProjectsList = func() []string {
return mockedProjects
}
return func() {
gcloudProjectsList = originalFn
}
}
func mockKubectlPodsList(mockedPods []*kubectl.Pod) func() {
originalFn := kubectlPodsList
kubectlPodsList = func(_ string) []*kubectl.Pod {
return mockedPods
}
return func() {
kubectlPodsList = originalFn
}
}
func mockGcloudContainerClustersList(mockedClusters []*gcloud.Cluster) func() {
originalFn := gcloudContainerClustersList
gcloudContainerClustersList = func(_ string) []*gcloud.Cluster {
return mockedClusters
}
return func() {
gcloudContainerClustersList = originalFn
}
}
func mockProxyType(proxyType ProxyType) func() {
originalFn := readProxyType
readProxyType = func() ProxyType {
return proxyType
}
return func() {
readProxyType = originalFn
}
}
func mockKubcetlNamespacesList(namespaces []string) func() {
originalFn := kubectlNamespacesList
kubectlNamespacesList = func() []string {
return namespaces
}
return func() {
kubectlNamespacesList = originalFn
}
}
func mockGcloudGetClusterCredentials() func() {
originalFn := gcloudGetClusterCredentials
gcloudGetClusterCredentials = func(_ string, _ *gcloud.Cluster) {}
return func() {
gcloudGetClusterCredentials = originalFn
}
}
type PortforwardArgs struct {
podName string
localPort int
remotePort int
namespace string
}
func mockKubectlPortForward() func() PortforwardArgs {
originalFn := kubectlPortForward
callArgs := PortforwardArgs{}
kubectlPortForward = func(podName string, localPort int, remotePort int, namespace string) {
callArgs.podName = podName
callArgs.localPort = localPort
callArgs.remotePort = remotePort
callArgs.namespace = namespace
}
return func() PortforwardArgs {
kubectlPortForward = originalFn
return callArgs
}
}
func mockAll(
projects []string,
pods []*kubectl.Pod,
clusters []*gcloud.Cluster,
proxyType string,
namespace []string,
) func() {
unmockProjects := mockGcloudProjectList(projects)
unmockPods := mockKubectlPodsList(pods)
unmockClusters := mockGcloudContainerClustersList(clusters)
unmockProxyType := mockProxyType("POD")
unmockGetCredentials := mockGcloudGetClusterCredentials()
unmockNamespaces := mockKubcetlNamespacesList(namespace)
return func() {
unmockProjects()
unmockPods()
unmockClusters()
unmockProxyType()
unmockGetCredentials()
unmockNamespaces()
}
}
func resetFlags() {
flag.CommandLine = flag.NewFlagSet(os.Args[0], flag.ExitOnError)
}
func TestHappyPath(t *testing.T) {
resetFlags()
unmockAll := mockAll(
[]string{"project-1"},
[]*kubectl.Pod{
{Name: "pod-1", ContainerPorts: []int{1}, Containers: []string{"container-1"}},
},
[]*gcloud.Cluster{
{Name: "cluster-1", Location: "location-1"},
},
"POD",
[]string{"namespace-1"},
)
defer unmockAll()
unmockPortForward := mockKubectlPortForward()
// Uses single choice auto-selection
os.Args = []string{"goproxie", "-local_port=1234"}
main()
calledWith := unmockPortForward()
if calledWith.localPort != 1234 {
t.Errorf("Expected port-forward to be called with localPort=%v, but was called with %v", 1234, calledWith.localPort)
}
if calledWith.remotePort != 1 {
t.Errorf("Expected port-forward to be called with remotePort=%v, but was called with %v", 1, calledWith.remotePort)
}
if calledWith.podName != "pod-1" {
t.Errorf("Expected port-forward to be called with podName=%v, but was called with %v", 1, calledWith.podName)
}
if calledWith.namespace != "namespace-1" {
t.Errorf("Expected port-forward to be called with namespace=%v, but was called with %v", 1, calledWith.namespace)
}
}
func ExampleNoProjects() {
resetFlags()
unmockAll := mockAll(
[]string{},
[]*kubectl.Pod{
{Name: "pod-1", ContainerPorts: []int{1}, Containers: []string{"container-1"}},
},
[]*gcloud.Cluster{
{Name: "cluster-1", Location: "location-1"},
},
"POD",
[]string{"namespace-1"},
)
defer unmockAll()
os.Args = []string{"goproxie", "-local_port=1234"}
main()
// Output: Could not find any GCP Projects
}
func ExampleNoClusters() {
resetFlags()
unmockAll := mockAll(
[]string{"project-1"},
[]*kubectl.Pod{
{Name: "pod-1", ContainerPorts: []int{1}, Containers: []string{"container-1"}},
},
[]*gcloud.Cluster{},
"POD",
[]string{"namespace-1"},
)
defer unmockAll()
os.Args = []string{"goproxie", "-local_port=1234"}
main()
// Output:
// GCP Project: project-1
// Could not find any GCP Clusters
}
func ExampleNoNamespaces() {
resetFlags()
unmockAll := mockAll(
[]string{"project-1"},
[]*kubectl.Pod{
{Name: "pod-1", ContainerPorts: []int{1}, Containers: []string{"container-1"}},
},
[]*gcloud.Cluster{
{Name: "cluster-1", Location: "location-1"},
},
"POD",
[]string{},
)
defer unmockAll()
os.Args = []string{"goproxie", "-local_port=1234"}
main()
// Output:
// GCP Project: project-1
// Cluster: cluster-1
// Could not find any GCP Clusters
}
func ExampleNoPods() {
resetFlags()
unmockAll := mockAll(
[]string{"project-1"},
[]*kubectl.Pod{},
[]*gcloud.Cluster{
{Name: "cluster-1", Location: "location-1"},
},
"POD",
[]string{"namespace-1"},
)
defer unmockAll()
os.Args = []string{"goproxie", "-local_port=1234"}
main()
// Output:
// GCP Project: project-1
// Cluster: cluster-1
// K8S Namespace: namespace-1
// Could not find any K8S Pods in namespace namespace-1
}
func TestAutoselectionFixSuffixes(t *testing.T) {
resetFlags()
unmockAll := mockAll(
[]string{"project-1-suffixed", "project-1"},
[]*kubectl.Pod{
{Name: "pod-1-suffixed", ContainerPorts: []int{1}, Containers: []string{"container-1"}},
{Name: "pod-1", ContainerPorts: []int{1}, Containers: []string{"container-1"}},
},
[]*gcloud.Cluster{
{Name: "cluster-1-suffixed", Location: "location-1"},
{Name: "cluster-1", Location: "location-1"},
},
"POD",
[]string{"namespace-1-suffixed", "namespace-1"},
)
defer unmockAll()
os.Args = []string{"goproxie", "-project=project-1", "-pod=pod-1", "-cluster=cluster-1", "-namespace=namespace-1", "-local_port=1234"}
unmockPortForward := mockKubectlPortForward()
main()
calledWith := unmockPortForward()
if calledWith.localPort != 1234 {
t.Errorf("Expected port-forward to be called with localPort=%v, but was called with %v", 1234, calledWith.localPort)
}
if calledWith.podName != "pod-1" {
t.Errorf("Expected port-forward to be called with podName=%v, but was called with %v", 1, calledWith.podName)
}
if calledWith.namespace != "namespace-1" {
t.Errorf("Expected port-forward to be called with namespace=%v, but was called with %v", 1, calledWith.namespace)
}
}