aboutsummaryrefslogtreecommitdiff
path: root/tests/integration/testscript
blob: 1408946fbd23a52e3a41db69e09f9f4348c5baac (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
# file      : tests/integration/testscript
# license   : TBC; see accompanying LICENSE file

#\
# Requirement:
#
# 1. tftpd-hpa installed (assumed in /usr/sbin/in.tftpd)
#
# 2. b, bpkg, curl executables in PATH.
#
# TFTP server (tftpd-hpa) setup: from the test out_base, run (sudo is required
# for --secure/chroot):
#

sudo /usr/sbin/in.tftpd \
  --foreground \
  --address 127.0.0.1:55123 \
  --user "$(whoami)" \
  --permissive \
  --create \
  --secure \
  --map-file tftp-map \
  "$(pwd)"

#\

machine = linux-gcc
target = x86_64-linux-gnu
environment =
c   = gcc
cxx = g++

# Where we get the task and what we do with the result can be configured
# independently:
#
# - We can poll a controller for a task by specifying its URL or we can
#   read a task manifest from a file (--fake-request).
#
# - We can send the result back to the controller or we can dump the result
#   to stdout (--dump-result).
#

#\
wait = 5 # Seconds.
controller = https://stage.build2.org/?build-task
#\

wait = 1 # Seconds.
controller = --fake-request ../task --dump-result

pkg = libhello
ver = 1.0.0+7
#rep_url = "https://git.build2.org/hello/libhello.git#1.0"
#rep_type = git
rep_url = https://stage.build2.org/1
rep_type = pkg
rfp = yes

#\
pkg = hello
ver = 1.0.0+6
rep_url = "https://git.build2.org/hello/hello.git"
rep_type = git
rfp = yes
#\

#\
pkg = libstudxml
ver =  	1.1.0-b.9.20210202082911.e729667b0f34
rep_url = https://stage.build2.org/1
rep_type = pkg
rfp = yes
#\

#\
# To make sure that the test-installed phase succeeds use the build2 driver
# installed into ~/install/bin.
#
pkg = libbuild2-hello
ver =  	0.1.0-a.0.20201019074759.bba32abb6d3d
rep_url = "https://github.com/build2/libbuild2-hello.git#master"
rep_type = git
#rep_url = https://stage.build2.org/1
#rep_type = pkg
rfp = yes
#\

#\
# Use the build2 driver installed into ~/install/bin (see above).
#
pkg = libbuild2-kconfig
ver = 0.1.0-a.0.20210108084836.3687e4b95226
rep_url = "https://github.com/build2/libbuild2-kconfig.git#master"
rep_type = git
#ver = 0.1.0-a.0.20200910053253.a71aa3f3938b
#rep_url = https://stage.build2.org/1
#rep_type = pkg
rfp = yes
#\

#\
pkg = curl
ver = 7.67.0+8
rep_url = https://pkg.cppget.org/1/testing
rep_type = pkg
rfp = yes
#\

#\
pkg = cli
ver = 1.2.0-b.7.20210311174126.7aba3e27228e
rep_url = "https://git.codesynthesis.com/cli/cli.git#adhoc-recipe"
rep_type = git
#rep_url = https://stage.build2.org/1
#rep_type = pkg
rfp = yes
#\

#\
pkg = libxsd
ver = 4.2.0-b.1.20210302135218.6a71bc57f6eb
rep_url = "https://git.codesynthesis.com/xsd/xsd.git#master"
rep_type = git
#rep_url = https://stage.build2.org/1
#rep_type = pkg
rfp = yes
#\

#\
pkg = libcmark-gfm-extensions
ver = 0.29.0-a.1+7
rep_url = https://pkg.cppget.org/1/alpha
rep_type = pkg
rfp = yes
#\

#\
pkg = non-existing
ver = 0.1.0
rep_url = https://pkg.cppget.org/1/alpha
rep_type = pkg
rfp = yes
#\

# Note that we also need to make sure that the installed package libraries are
# properly imported when configuring and running tests, and that the installed
# executables are runnable.
#
config = "\"config.install.root='$~/install'\" \
bpkg:--fetch-timeout=60 \
\"config.bin.rpath='$~/install/lib'\" \
config.cc.coptions=-Wall \
b.test-installed.configure:\"config.cc.loptions=-L'$~/install/lib'\" \
bpkg.test-installed.create:\"config.cc.loptions=-L'$~/install/lib'\""

#interactive="interactive: bpkg.configure.build"
#interactive="interactive: warning"

+cat <<"EOI" >=task
  : 1
  name: $pkg
  version: $ver
  repository-url: $rep_url
  repository-type: $rep_type
  trust: $rfp
  machine: $machine
  target: $target
  config: $config
  $interactive
  EOI

+if ("$environment" != "")
  echo "environment: $environment" >+task
end

#
#
tftp = 127.0.0.1:55123

a = $0
+ sed -e 's/-agent$/-worker/' <"$0" | set w

: agent
:
{
  cat <<"EOI" >=machine-header;
    : 1
    id: $machine-1.0
    name: $machine
    summary: The $machine fake machine
    EOI
  $a --verbose 3 --tftp $~ --fake-machine machine-header $controller \
     &build/*** >| 2>|
}

: worker
:
{
  env = ("$environment" != "" ? "$environment" : "default")

  cat <<"EOI" >=$env;
  #!/bin/sh

  t="\$1"
  shift

  exec "\$@" cc config.c=$c config.cxx=$cxx
  EOI
  chmod ugo+x $env;
  sleep $wait;
  $w --verbose 3 --startup --tftp-host $tftp --environments $~ \
    &?build-module/*** &?build/*** \
    &?build-installed/*** &?build-installed-bpkg/*** \
    &?dist/*** &?redist/*** \
    &?dist-installed/*** &?redist-installed/*** \
    &task.manifest <| 2>|
}