@@ -10,11 +10,12 @@ import (
10
10
11
11
func TestTemplateContext (t * testing.T ) {
12
12
for _ , testcase := range []struct {
13
- Test string
14
- Task * api.Task
15
- Context Context
16
- Expected * api.ContainerSpec
17
- Err error
13
+ Test string
14
+ Task * api.Task
15
+ Context Context
16
+ Expected * api.ContainerSpec
17
+ Err error
18
+ NodeDescription * api.NodeDescription
18
19
}{
19
20
{
20
21
Test : "Identity" ,
@@ -35,6 +36,8 @@ func TestTemplateContext(t *testing.T) {
35
36
},
36
37
}
37
38
}),
39
+ NodeDescription : modifyNode (func (n * api.NodeDescription ) {
40
+ }),
38
41
Expected : & api.ContainerSpec {
39
42
Env : []string {
40
43
"NOTOUCH=dont" ,
@@ -70,6 +73,8 @@ func TestTemplateContext(t *testing.T) {
70
73
},
71
74
}
72
75
}),
76
+ NodeDescription : modifyNode (func (n * api.NodeDescription ) {
77
+ }),
73
78
Expected : & api.ContainerSpec {
74
79
Labels : map [string ]string {
75
80
"ContainerLabel" : "should-NOT-end-up-as-task" ,
@@ -106,6 +111,8 @@ func TestTemplateContext(t *testing.T) {
106
111
},
107
112
}
108
113
}),
114
+ NodeDescription : modifyNode (func (n * api.NodeDescription ) {
115
+ }),
109
116
Expected : & api.ContainerSpec {
110
117
Mounts : []api.Mount {
111
118
{
@@ -130,13 +137,53 @@ func TestTemplateContext(t *testing.T) {
130
137
},
131
138
}
132
139
}),
140
+ NodeDescription : modifyNode (func (n * api.NodeDescription ) {
141
+ }),
133
142
Expected : & api.ContainerSpec {
134
143
Hostname : "myhost-10" ,
135
144
},
136
145
},
146
+ {
147
+ Test : "Node hostname" ,
148
+ Task : modifyTask (func (t * api.Task ) {
149
+ t .Spec = api.TaskSpec {
150
+ Runtime : & api.TaskSpec_Container {
151
+ Container : & api.ContainerSpec {
152
+ Hostname : "myservice-{{.Node.Hostname}}" ,
153
+ },
154
+ },
155
+ }
156
+ }),
157
+ NodeDescription : modifyNode (func (n * api.NodeDescription ) {
158
+ n .Hostname = "mynode"
159
+ }),
160
+ Expected : & api.ContainerSpec {
161
+ Hostname : "myservice-mynode" ,
162
+ },
163
+ },
164
+ {
165
+ Test : "Node architecture" ,
166
+ Task : modifyTask (func (t * api.Task ) {
167
+ t .Spec = api.TaskSpec {
168
+ Runtime : & api.TaskSpec_Container {
169
+ Container : & api.ContainerSpec {
170
+ Hostname : "{{.Node.Hostname}}-{{.Node.Platform.OS}}-{{.Node.Platform.Architecture}}" ,
171
+ },
172
+ },
173
+ }
174
+ }),
175
+ NodeDescription : modifyNode (func (n * api.NodeDescription ) {
176
+ n .Hostname = "mynode"
177
+ n .Platform .Architecture = "myarchitecture"
178
+ n .Platform .OS = "myos"
179
+ }),
180
+ Expected : & api.ContainerSpec {
181
+ Hostname : "mynode-myos-myarchitecture" ,
182
+ },
183
+ },
137
184
} {
138
185
t .Run (testcase .Test , func (t * testing.T ) {
139
- spec , err := ExpandContainerSpec (testcase .Task )
186
+ spec , err := ExpandContainerSpec (testcase .NodeDescription , testcase . Task )
140
187
if err != nil {
141
188
if testcase .Err == nil {
142
189
t .Fatalf ("unexpected error: %v" , err )
@@ -194,6 +241,22 @@ func modifyTask(fn func(t *api.Task)) *api.Task {
194
241
return t
195
242
}
196
243
244
+ // modifyNode generates a node with interesting values then calls the function
245
+ // with it. The caller can then modify the node and return the result.
246
+ func modifyNode (fn func (n * api.NodeDescription )) * api.NodeDescription {
247
+ n := & api.NodeDescription {
248
+ Hostname : "nodeHostname" ,
249
+ Platform : & api.Platform {
250
+ Architecture : "x86_64" ,
251
+ OS : "linux" ,
252
+ },
253
+ }
254
+
255
+ fn (n )
256
+
257
+ return n
258
+ }
259
+
197
260
// visitAllTemplatedFields does just that.
198
261
// TODO(stevvooe): Might be best to make this the actual implementation.
199
262
func visitAllTemplatedFields (spec * api.ContainerSpec , fn func (value string )) {
0 commit comments