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

: packages
:
{
  : pkg
  :
  {
    : manifest
    :
    : Roundtrip the pkg package manifest list.
    :
    $* -pp <<EOF >>EOF
    : 1
    sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    :
    name: libfoo
    version: 1.2.3+2
    priority: high; Due to critical bug fix.
    summary: Modern XML parser
    license: LGPLv2, MIT; Both required.
    license: BSD
    tags: c++, xml, parser, serializer, pull, streaming, modern
    description: libfoo is a very modern C++ XML parser.
    changes: 1.2.3+2: applied upstream patch for critical bug bar
    changes: 1.2.3+1: applied upstream patch for critical bug foo
    url: http://www.example.org/projects/libfoo/; libfoo project page url
    doc-url: http://www.example.org/projects/libfoo/man.xhtml; documentation page
    src-url: http://scm.example.com/?p=odb/libodb.git\;a=tree; source tree
    package-url: http://www.example.org/projects/libfoo/1.2.3+2; package url
    email: libfoo-users@example.org; Public mailing list, posts by non-members\
     are allowed but moderated.
    package-email: libfoo-1.2.3+2@example.org; Bug reports are welcome.
    build-email: libfoo-builds@example.org; Mailing list for bbot notification\
     emails.
    depends: libz
    depends: libgnutls <= 1.2.3 | libopenssl >= 2.3.4
    depends: ? libboost-regex >= 1.52.0; Only if C++ compiler does not support\
     C++11 <regex>.
    depends: ? libqtcore >= 5.0.0; Only if GUI is enabled.
    requires: linux | windows | macosx; symbian is coming.
    requires: c++11
    requires: ? ; VC++ 12.0 or later if targeting Windows.
    requires: ? ; libc++ standard library if using Clang on Mac OS X.
    requires: zlib; Most Linux/UNIX systems already have one; or get it at\
     www.zlib.net.
    build-include: linux*
    build-include: freebsd*
    build-exclude: *; Only supports Linux and FreeBSD.
    location: libfoo-1.2.3+2.tar.bz2
    sha256sum: e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    :
    name: libbar
    version: 3.4A.5+6
    summary: Modern bar management framework
    license: LGPLv2
    tags: c++, xml, modern
    url: http://www.example.org/projects/libbar/
    email: libbar-users@example.org
    build-email:
    depends: libbaz (1- 2-) | libbaz [3 4-) | libbaz (5 6] | libbaz [7 8]
    build-exclude: *-msvc_14*/i?86-*; Linker crash.
    location: bar/libbar-3.4A.5+6.tbz
    sha256sum: d4b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    :
    name: libbaz
    version: 2~3.4A.5+3
    summary: Modern baz system
    license: LGPLv2
    url: http://www.example.org/projects/libbar/
    email: libbaz-users@example.org
    location: libbaz/libbaz-2~3.4A.5+3.tar.gz
    sha256sum: b5b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
    EOF
  }

  : dir
  :
  {
    : empty
    :
    : Roundtrip an empty dir package manifest list.
    :
    $* -gp <"" >:""

    : non-empty
    :
    : Roundtrip the dir package manifest list.
    :
    $* -gp <<EOF >>EOF
    : 1
    location: hello/
    :
    location: mhello/
    EOF

    : duplicate
    :
    $* -gp <<EOI 2>'stdin:5:1: error: duplicate package manifest' != 0
    : 1
    location: hello/
    :
    location: hello/
    :
    location: mhello/
    EOI
  }
}

: repositories
:
{
  : pkg
  :
  {
    : manifest
    :
    : Roundtrip the pkg repository manifest list.
    :
    $* -pr <<EOF >>EOF
    : 1
    location: http://pkg.example.org/1/math
    type: pkg
    role: prerequisite
    :
    location: ../stable
    type: pkg
    role: complement
    :
    url: http://cppget.org
    email: repoman@cppget.org; General mailing list.
    summary: General C++ package repository
    description: This is the awesome C++ package repository full of exciting\
     stuff.
    certificate: \
    -----BEGIN CERTIFICATE-----
    MIIFLzCCAxegAwIBAgIJAJ71rMp8mDy1MA0GCSqGSIb3DQEBCwUAMDMxFzAVBgNV
    BAoMDkNvZGUgU3ludGhlc2lzMRgwFgYDVQQDDA9uYW1lOmNwcGdldC5vcmcwHhcN
    MTYwNDA4MTc1NTUwWhcNMTcwNDA4MTc1NTUwWjAzMRcwFQYDVQQKDA5Db2RlIFN5
    bnRoZXNpczEYMBYGA1UEAwwPbmFtZTpjcHBnZXQub3JnMIICIjANBgkqhkiG9w0B
    AQEFAAOCAg8AMIICCgKCAgEAwj7lwxkr19ygfNIzQsiKkmyyRG0c5AwMrwvldEk7
    2UIwz5kNb04zveUzQcfNFhau60+xC980Y4TKA4/ScfinyaDfp1I3pmiv4OSDUoBw
    9e8a+4Jyo5fuiAXoAYaQyAdwvH1mIbYq1ObRfKW2MTrUXp/HRJAWHHBnv3VmCYBZ
    dllY1hasA+SBDMBv6iTXkKUIfEdNDk8cjUR3FjxaefIdip9pHR3G0y4iWctS1drq
    AKLE1J0KIJyPsJCvoZnzIeePaCNL/UtRup9mYi2vxHHFD4Ml5Bbp+gE6vq5XhcQz
    LeCcGYKB3UjVWuszcpFIoHACw9ja2JUumbTiclUDgLBk8WXJvLjOCNLp9i/MKQws
    p5CDfrNe2P6u63ZmtW2v0Qpj/6b6JQmqJaMgHQdDEBUFO3bjwm7yyXyvEjj/EAEJ
    pGziWZjan5NKGgKCX1JChQJloMHhzr42YMvceWTMJjAr07Es9vCsCS2KPvAKY7Mv
    yewAyK9ucFRDObZVuaFjU+WUTXB1munwO3Jso56EMxeFvu+W1B+m49XS3k/TlBvF
    HGnkiSaMwLEJvgFVgQPpG2gD39WDFqX28pWdLL4hM+hXUfdeH0OdXfq66CLu7P8d
    cgkZdHRs5UauxLzm1Qo06aLsm2HXrfDnmsd5ENi7RkiFMx1aLh3/cjZD0uHndQUC
    LEcCAwEAAaNGMEQwDgYDVR0PAQH/BAQDAgeAMBYGA1UdJQEB/wQMMAoGCCsGAQUF
    BwMDMBoGA1UdEQQTMBGBD2luZm9AY3BwZ2V0Lm9yZzANBgkqhkiG9w0BAQsFAAOC
    AgEAHLfv2w82bBMgDgsRX8GU/3eK6CnyfRu4Auto1XjyHCrD6qcIdmebC0hihpSg
    5xSlfVwjPRWBmg3z5/K8ln5jM6KKiWHd47OCfx+DW7wbesq2+6lS1btXpRR2pv7j
    zG+41Cncu/xVNs9F4CQluVn5xyWFVDUxQfkQqAE46EbkjAmq42y+1ZQnq2Zm47Wr
    iMRXQtg1yx7Fs2EpVU+sbW4ImuXgv0YbyYbI1lPhvmx8rIL6lybN3evEfIj7crh7
    5abWPDZzA+1aNL5tiaSNrn3nS/BfJyEYhGMyy0bsekPZiaqGB1q/mgv2rmR/2SRL
    Tx+T7sthy/IHTOUbDTY0lUhjc6thQMncgGTaD4TC3QaXhdLWzO9XTh0K7U8BOMwh
    wppr1G5aTXY0PUB0+Hs+IQZ4mVfBvKO0Wn6GgoDAs/mW9qvbWP3ZnpdvhB52a49P
    g07JQ+R0QgBNQY7t0lT0mOpAPx79Dwc5R8jQCkx4gTr1bWtgyCvza+gpTgUQDOH5
    nawOIIDOnRv4heFdvgfEQs2oKa3X4bM+BsgOx7OTvnWCzJy0IXo0uBbcTrMv9Z62
    +KVwnghQdpURRnUpomt03cTwjqVJVrq287owGv8qqnuGcTTi1SgzNNYREFoljY58
    CCj4yYvTUzXjcAUXaNC5YNw3JEQp8vmciuJwhyUkbifLrHU=
    -----END CERTIFICATE-----
    \
    EOF

    : prerequisite-type
    :
    $* -pr <<EOI >>EOO
    : 1
    location: http://example.org/math.git#master
    role: prerequisite
    :
    location: ../stable.git
    role: complement
    :
    location: git://example.org/foo#master
    type: git
    role: prerequisite
    :
    location: http://pkg.example.org/1/bar
    role: prerequisite
    :
    url: http://cppget.org
    EOI
    : 1
    location: http://example.org/math.git#master
    type: git
    role: prerequisite
    :
    location: ../stable.git
    type: pkg
    role: complement
    :
    location: git://example.org/foo#master
    type: git
    role: prerequisite
    :
    location: http://pkg.example.org/1/bar
    type: pkg
    role: prerequisite
    :
    url: http://cppget.org
    EOO
  }

  : git
  :
  {
    : manifest
    :
    : Roundtrip the git repository manifest list.
    :
    $* -gr <<EOF >>EOF
    : 1
    location: http://example.org/math.git#master
    type: git
    role: prerequisite
    :
    location: ../stable.git#stable
    type: git
    role: complement
    :
    url: http://cppget.org
    email: repoman@cppget.org; General mailing list.
    summary: General C++ package repository
    description: This is the awesome C++ package repository full of exciting\
     stuff.
    EOF

    : prerequisite-type
    :
    $* -gr <<EOI >>EOO
    : 1
    location: http://example.org/math.git#master
    role: prerequisite
    :
    location: ../stable.git#stable
    role: complement
    :
    location: git://example.org/foo#master
    type: git
    role: prerequisite
    :
    location: http://pkg.example.org/1/bar
    role: prerequisite
    :
    url: http://cppget.org
    EOI
    : 1
    location: http://example.org/math.git#master
    type: git
    role: prerequisite
    :
    location: ../stable.git#stable
    type: git
    role: complement
    :
    location: git://example.org/foo#master
    type: git
    role: prerequisite
    :
    location: http://pkg.example.org/1/bar
    type: pkg
    role: prerequisite
    :
    url: http://cppget.org
    EOO
  }

  : dir
  :
  {
    : manifest
    :
    : Roundtrip the dir repository manifest list.
    :
    $* -dr <<EOF >>EOF
    : 1
    location: ../stable
    type: dir
    role: complement
    :
    EOF

    : prerequisite-with-fragment
    :
    $* -dr <<EOI >>EOO
    : 1
    location: ../stable.git#stable
    role: complement
    :
    EOI
    : 1
    location: ../stable.git
    type: dir
    role: complement
    :
    EOO
  }
}

: signature
:
: Roundtrip the signature manifest.
:
{
  : manifest
  :
  $* -s <<EOF >>EOF
  : 1
  sha256sum: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
  signature: \
  geWdw7Gm+Rt+CLDMBby5Y796E8rxwImb0bmcZwGWar9D3vkFm9Kjh00Buuo1PuU7tP1dV6yvRbH8
  NzC0IryEoUJHx9909AJ449ET9Zb+C3ykEeBlKH2wonj7cAVK9ZEDpPEGAtp56XWZQEawl50mwq6t
  XkZAABxtOswXiicdh3HK7kaPHp38/9CBMc0rva6wDnkbTigUYA2ULqLtP5a5mLovVc48zI9A/hmb
  Qx1/Nr7nzTZNDGK7CwTAb1fPam9rZklTfCTPSPUUjvWjM9XdY8cbRE1FrE14TXdyQPxCLzHO2dUO
  YWH5/qMikEoCYhYXQ6KhekoT/MUiVC3PMcYQbYOrOtSxq6RcgnymexBe1XIyld5Rfo1eXu8TK11r
  QPULIqAGy6RwEUhGznuEiGHQwb1UymNyJ/qgr4vBPjJtlvptqG5XNmtiJ22f07nmeVRi2Vg2UyOw
  HoVpy5t/w0tEnUXPA39Vt0v1bUm7Knhc8qL4JFEqK/j/CzEHzEtAjn0aoGuKubCO0WUa+v6ZlkLU
  YrNUIdgT1wgj4yEhLO3g+NsnxFH05D2sfR16rrkI2E6st5crAHR8FOl2FDsWxgKqNbzXZw7rl+Fa
  TobGycX7MDf2mbBmR/KmEkMBJ4mziWLAycSAGyE5VRYDwHPJlQE0143wBzT8eNw4VLm/r+88VYw=
  \
  EOF
}