aboutsummaryrefslogtreecommitdiff
path: root/bbot/machine-manifest.test.testscript
blob: e358ff363259fa5f282b9c6d222904c825dd79a3 (plain)
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# file      : bbot/machine-manifest.test.testscript
# license   : MIT; see accompanying LICENSE file

: machine-manifest
:
{
  test.options += -m

  : valid
  :
  {
    : all-values
    :
    $* <<EOF >>EOF
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: kvm
    mac: de:ad:be:ef:de:ad
    options: -device "virtio-scsi-pci,id=scsi" -device "scsi-hd,drive=disk0"
    changes:\
    0.7.0
      - mac is changed to de:ad:be:ef:de:ad
      - increased disk size to 30GB
    \
    EOF

    : multi-line-options
    :
    $* <<EOI >>EOO
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: kvm
    options:\
    -device "virtio-scsi-pci,id=scsi"
    -device "scsi-hd,drive=disk0"
    \
    EOI
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: kvm
    options: -device "virtio-scsi-pci,id=scsi" -device "scsi-hd,drive=disk0"
    EOO

    : no-mac
    :
    $* <<EOF >>EOF
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: nspawn
    options: -device "virtio-scsi-pci,id=scsi" -device "scsi-hd,drive=disk0"
    EOF

    : no-options
    :
    $* <<EOF >>EOF
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: nspawn
    mac: de:ad:be:ef:de:ad
    EOF
  }

  : redefinition
  :
  {
    : type
    :
    $* <<EOI 2>'stdin:6:1: error: machine type redefinition' == 1
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: nspawn
    type: kvm
    EOI

    : mac
    :
    $* <<EOI 2>'stdin:6:1: error: machine mac redefinition' == 1
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    mac: de:ad:be:ef:de:ad
    mac: de:ad:be:ef:de:ad
    EOI

    : options
    :
    $* <<EOI 2>'stdin:6:1: error: machine options redefinition' == 1
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    options: -device "virtio-scsi-pci,id=scsi" -device "scsi-hd,drive=disk0"
    options:
    EOI
  }

  : invalid
  :
  {
    : type
    :
    $* <<EOI 2>'stdin:5:7: error: invalid machine type' == 1
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: vmware
    EOI

    : options
    :
    {
      : empty
      :
      $* <<EOI 2>'stdin:5:9: error: empty machine options' == 1
      : 1
      id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
      name: windows_10-msvc_14
      summary: Windows 10 build 1607 with VC 14 update 3
      options:
      EOI

      : unquoted
      :
      $* <<EOI 2>'stdin:5:42: error: invalid machine options: unterminated quoted string' == 1
      : 1
      id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
      name: windows_10-msvc_14
      summary: Windows 10 build 1607 with VC 14 update 3
      options: -device "virtio-scsi-pci,id=scsi
      EOI

      : unquoted-multi-line
      :
      $* <<EOI 2>'stdin:7:29: error: invalid machine options: unterminated quoted string' == 1
      : 1
      id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
      name: windows_10-msvc_14
      summary: Windows 10 build 1607 with VC 14 update 3
      options:\
      -device "virtio-scsi-pci,id=scsi"
      -device "scsi-hd,drive=disk0
      \
      EOI
    }

    : changes
    :
    $* <<EOI 2>'stdin:5:9: error: empty machine changes' == 1
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    changes:
    EOI
  }

  : missed
  :
  {
    : type
    :
    $* <<EOI 2>'stdin:5:1: error: no machine type specified' == 1
    : 1
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    EOI
  }

  : unknown-name
  :
  $* <<EOI 2>"stdin:5:1: error: unknown name 'x' in machine manifest" == 1
  : 1
  id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  name: windows_10-msvc_14
  summary: Windows 10 build 1607 with VC 14 update 3
  x:
  EOI
}

: toolchain-manifest
:
{
  test.options += -t

  : valid
  :
  $* <<EOF >>EOF
  : 1
  id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  EOF

  : no-id
  :
  $* <<EOI 2>'stdin:2:1: error: no toolchain id specified' == 1
  : 1
  EOI

  : dup-id
  :
  $* <<EOI 2>'stdin:3:1: error: toolchain id redefinition' == 1
  : 1
  id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  EOI

  : empty-id
  :
  $* <<EOI 2>'stdin:2:4: error: empty toolchain id' == 1
  : 1
  id:
  EOI

  : unknown
  :
  $* <<EOI 2>"stdin:2:1: error: unknown name 'x' in toolchain manifest" == 1
  : 1
  x: y
  EOI
}

: bootstrapped-machine-manifest
:
{
  test.options += -bm

  : unknown
  :
  $* <<EOI 2>"stdin:2:1: error: unknown name 'x' in bootstrapped machine manifest" == 1
  : 1
  x: y
  EOI

  : no-machine
  :
  $* <<EOI 2>'stdin:2:1: error: machine manifest expected' == 1
  : 1
  EOI

  : build-role
  :
  {
    : valid
    :
    {
      : all-values
      :
      $* <<EOF >>EOF
      : 1
      :
      id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
      name: windows_10-msvc_14
      summary: Windows 10 build 1607 with VC 14 update 3
      type: kvm
      mac: de:ad:be:ef:de:ad
      :
      id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
      :
      bbot-version: 1.1.2
      libbbot-version: 1.1.1
      EOF
    }

    : no-machine-mac
    :
    $* <<EOI 2>'stdin:2:1: error: mac address must be present in machine manifest' == 1
    : 1
    :
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: kvm
    EOI

    : no-toolchain
    :
    $* <<EOI 2>'stdin:8:1: error: toolchain manifest expected' == 1
    : 1
    :
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: kvm
    mac: de:ad:be:ef:de:ad
    EOI

    : no-bootstrap
    :
    $* <<EOI 2>'stdin:10:1: error: bootstrap manifest expected' == 1
    : 1
    :
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    name: windows_10-msvc_14
    summary: Windows 10 build 1607 with VC 14 update 3
    type: kvm
    mac: de:ad:be:ef:de:ad
    :
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    EOI
  }

  : auxiliary-role
  :
  {
    : valid
    :
    {
      : all-values
      :
      $* <<EOF >>EOF
      : 1
      :
      id: x86_64-linux_debian_12-postgresql_15-1.0
      name: x86_64-linux_debian_12-postgresql_15
      summary: Debian 12 "bookworm" with PostgreSQL 15.6.0 (auxiliary machine)
      role: auxiliary
      ram-minimum: 1048576
      type: kvm
      mac: e6:38:72:53:61:ae
      changes:\
      1.0
        - clone off linux_debian_12-small-1.0
        - postgresql-15 15.6.0+deb12u1
      \
      EOF
    }

    : unexpected-manifest
    :
    $* <<EOI 2>'stdin:10:1: error: single machine manifest expected' == 1
    : 1
    :
    id: x86_64-linux_debian_12-postgresql_15-1.0
    name: x86_64-linux_debian_12-postgresql_15
    summary: Debian 12 "bookworm" with PostgreSQL 15.6.0 (auxiliary machine)
    role: auxiliary
    ram-minimum: 1048576
    type: kvm
    mac: e6:38:72:53:61:ae
    :
    EOI
  }
}