aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/bootstrap-manifest/testscript
blob: e2af360c87a549c059336bb40944ad8e89bc4d74 (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
# file      : unit-tests/bootstrap-manifest/testscript
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license   : TBC; see accompanying LICENSE file

: 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

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

: bootstrap-manifest
:
{
  test.options += -b

  : valid
  :
  $* <<EOF >>EOF
  : 1
  bbot-version: 1.1.2
  libbbot-version: 1.1.1
  EOF

  : dup
  :
  $* <<EOI 2>'stdin:3:1: error: bbot-version redefinition' == 1
  : 1
  bbot-version: 1.1.2
  bbot-version: 1.1.3
  EOI

  : invalid-version
  :
  $* <<EOI 2>'stdin:2:15: error: invalid package version: invalid major version' == 1
  : 1
  bbot-version: abc
  EOI

  : no-versions
  :
  $* <<EOI 2>'stdin:2:1: error: no package versions specified' == 1
  : 1
  EOI

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

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

  : 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"
    :
    id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    :
    bbot-version: 1.1.2
    libbbot-version: 1.1.1
    EOF

    : no-options
    :
    $* <<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
  }

  : 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

  : 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

  : invalid-options
  :
  {
    : unquoted
    :
    $* <<EOI 2>'stdin:6: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

    : empty
    :
    $* <<EOI 2>'stdin:6: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
  }

  : 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
}