-
Notifications
You must be signed in to change notification settings - Fork 423
/
Copy pathbootstrap_test.go
202 lines (194 loc) · 6.05 KB
/
bootstrap_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
package bootstrap
import (
"fmt"
"os"
"path/filepath"
"reflect"
"strings"
"testing"
ign3types "github.com/coreos/ignition/v2/config/v3_5/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"k8s.io/apimachinery/pkg/util/diff"
mcoResourceRead "github.com/openshift/machine-config-operator/lib/resourceread"
ctrlcommon "github.com/openshift/machine-config-operator/pkg/controller/common"
)
func TestParseManifests(t *testing.T) {
tests := []struct {
name string
raw string
want []manifest
}{{
name: "ingress",
raw: `
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: test-ingress
namespace: test-namespace
spec:
rules:
- http:
paths:
- path: /testpath
backend:
serviceName: test
servicePort: 80
`,
want: []manifest{{
Raw: []byte(`{"apiVersion":"extensions/v1beta1","kind":"Ingress","metadata":{"name":"test-ingress","namespace":"test-namespace"},"spec":{"rules":[{"http":{"paths":[{"backend":{"serviceName":"test","servicePort":80},"path":"/testpath"}]}}]}}`),
}},
}, {
name: "feature gate",
raw: `
apiVersion: config.openshift.io/v1
kind: FeatureGate
metadata:
name: cluster
spec:
featureSet: TechPreviewNoUpgrade
`,
want: []manifest{{
Raw: []byte(`{"apiVersion":"config.openshift.io/v1","kind":"FeatureGate","metadata":{"name":"cluster"},"spec":{"featureSet":"TechPreviewNoUpgrade"}}`),
}},
}, {
name: "two-resources",
raw: `
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: test-ingress
namespace: test-namespace
spec:
rules:
- http:
paths:
- path: /testpath
backend:
serviceName: test
servicePort: 80
---
apiVersion: v1
kind: ConfigMap
metadata:
name: a-config
namespace: default
data:
color: "red"
multi-line: |
hello world
how are you?
`,
want: []manifest{{
Raw: []byte(`{"apiVersion":"extensions/v1beta1","kind":"Ingress","metadata":{"name":"test-ingress","namespace":"test-namespace"},"spec":{"rules":[{"http":{"paths":[{"backend":{"serviceName":"test","servicePort":80},"path":"/testpath"}]}}]}}`),
}, {
Raw: []byte(`{"apiVersion":"v1","data":{"color":"red","multi-line":"hello world\nhow are you?\n"},"kind":"ConfigMap","metadata":{"name":"a-config","namespace":"default"}}`),
}},
}, {
name: "two-resources-with-empty",
raw: `
---
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: test-ingress
namespace: test-namespace
spec:
rules:
- http:
paths:
- path: /testpath
backend:
serviceName: test
servicePort: 80
---
---
apiVersion: v1
kind: ConfigMap
metadata:
name: a-config
namespace: default
data:
color: "red"
multi-line: |
hello world
how are you?
---
`,
want: []manifest{{
Raw: []byte(`{"apiVersion":"extensions/v1beta1","kind":"Ingress","metadata":{"name":"test-ingress","namespace":"test-namespace"},"spec":{"rules":[{"http":{"paths":[{"backend":{"serviceName":"test","servicePort":80},"path":"/testpath"}]}}]}}`),
}, {
Raw: []byte(`{"apiVersion":"v1","data":{"color":"red","multi-line":"hello world\nhow are you?\n"},"kind":"ConfigMap","metadata":{"name":"a-config","namespace":"default"}}`),
}},
}, {
name: "container-runtime-bootstrap",
raw: `
---
apiVersion: machineconfiguration.openshift.io/v1
kind: ContainerRuntimeConfig
metadata:
name: cr-pid-limit
spec:
machineConfigPoolSelector:
matchLabels:
pools.operator.machineconfiguration.openshift.io/master: ''
containerRuntimeConfig:
pidsLimit: 100000
---
`,
want: []manifest{{
Raw: []byte(`{"apiVersion":"machineconfiguration.openshift.io/v1","kind":"ContainerRuntimeConfig","metadata":{"name":"cr-pid-limit"},"spec":{"containerRuntimeConfig":{"pidsLimit":100000},"machineConfigPoolSelector":{"matchLabels":{"pools.operator.machineconfiguration.openshift.io/master":""}}}}`),
}},
}}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
got, err := parseManifests("dummy-file-name", strings.NewReader(test.raw))
if err != nil {
t.Fatalf("failed to parse manifest: %v", err)
}
if !reflect.DeepEqual(got, test.want) {
t.Fatalf("mismatch found %s", diff.ObjectDiff(got, test.want))
}
})
}
}
func TestBootstrapRun(t *testing.T) {
destDir, err := os.MkdirTemp("", "controller-bootstrap")
require.NoError(t, err)
defer os.RemoveAll(destDir)
bootstrap := New("../../../templates", "testdata/bootstrap", "testdata/bootstrap/machineconfigcontroller-pull-secret")
err = bootstrap.Run(destDir)
require.NoError(t, err)
for _, poolName := range []string{"master", "worker"} {
t.Run(poolName, func(t *testing.T) {
paths, err := filepath.Glob(filepath.Join(destDir, "machine-configs", fmt.Sprintf("rendered-%s-*.yaml", poolName)))
require.NoError(t, err)
require.Len(t, paths, 1)
mcBytes, err := os.ReadFile(paths[0])
require.NoError(t, err)
mc, err := mcoResourceRead.ReadMachineConfigV1(mcBytes)
require.NoError(t, err)
// Ensure that generated registries.conf corresponds to the testdata ImageContentSourcePolicy
var registriesConfig *ign3types.File
ignCfg, err := ctrlcommon.ParseAndConvertConfig(mc.Spec.Config.Raw)
require.NoError(t, err)
for i := range ignCfg.Storage.Files {
f := &ignCfg.Storage.Files[i]
if f.Path == "/etc/containers/registries.conf" {
registriesConfig = f
}
require.False(t, f.Path == "/etc/kubernetes/kubelet-ca.crt")
}
require.NotNil(t, registriesConfig)
contents, err := ctrlcommon.DecodeIgnitionFileContents(registriesConfig.Contents.Source, registriesConfig.Contents.Compression)
require.NoError(t, err)
// Only a minimal presence check; more comprehensive tests that the contents correspond to the ICSP semantics are
// maintained in pkg/controller/container-runtime-config.
assert.Contains(t, string(contents), "registry.mirror.example.com/ocp")
assert.Contains(t, string(contents), "insecure-reg-1.io")
assert.Contains(t, string(contents), "insecure-reg-2.io")
assert.Contains(t, string(contents), "blocked-reg.io")
assert.NotContains(t, string(contents), "release-registry.product.example.org")
})
}
}