-
Notifications
You must be signed in to change notification settings - Fork 32
264 lines (255 loc) · 7.43 KB
/
tests.yml
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: DAQ test suite
on:
push:
pull_request:
schedule:
- cron: '0 16 * * *'
jobs:
build_docker:
runs-on: ubuntu-18.04
timeout-minutes: 20
strategy:
matrix:
build: [faucet, faux, setup, base, subset]
steps:
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Installing dependencies
env:
GIT_URL: ${{ secrets.GIT_URL }}
run: |
bin/setup_daq
- name: Build docker images for tests
run: |
bin/build_shard ${{ matrix.build }} compress /tmp/build_artifacts/docker_images/
- uses: actions/upload-artifact@v2
with:
name: build_artifacts_${{ matrix.build }}
path: /tmp/build_artifacts/
integration_tests:
needs: build_docker
runs-on: ubuntu-18.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
test: [base, many, aux, topo, modules, dhcp, switch, mud, ata]
steps:
- uses: actions/download-artifact@v2
with:
name: build_artifacts_faucet
path: /tmp/build_artifacts_faucet
- uses: actions/download-artifact@v2
with:
name: build_artifacts_faux
path: /tmp/build_artifacts_faux
- uses: actions/download-artifact@v2
with:
name: build_artifacts_setup
path: /tmp/build_artifacts_setup
- uses: actions/download-artifact@v2
with:
name: build_artifacts_base
path: /tmp/build_artifacts_base
- uses: actions/download-artifact@v2
if: matrix.test == 'aux'
with:
name: build_artifacts_subset
path: /tmp/build_artifacts_subset
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Installing dependencies
env:
GIT_URL: ${{ secrets.GIT_URL }}
run: |
bin/setup_daq
- name: Loading docker images
run: |
bin/load_images faucet faux setup base
- name: Loading subset docker images
if: matrix.test == 'aux'
run: |
bin/load_images subset
- name: Running ${{ matrix.test }} test
env:
DOCKER_STARTUP_TIMEOUT_MS: 60000
GCP_BASE64_CRED: ${{ secrets.GCP_BASE64_CRED }}
GCP_REFLECT_KEY_BASE64: ${{ secrets.GCP_REFLECT_KEY_BASE64 }}
run: |
bin/test_daq ${{ matrix.test }}
- name: Runtime logs
if: ${{ always() }}
run: |
echo %%%%%%% daq log cmdrun.log
cat inst/cmdrun.log || true
more inst/run-*/nodes/pass*/tmp/module_config.json | cat
unit_tests:
runs-on: ubuntu-18.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
env:
GIT_URL: ${{ secrets.GIT_URL }}
run: |
bin/setup_dev
- name: Check style
run: |
bin/check_style
- name: Unit test
run: |
testing/run_unit_tests.sh
shunt_test:
runs-on: ubuntu-18.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
env:
GIT_URL: ${{ secrets.GIT_URL }}
run: |
bin/setup_dev
- name: Shunt test
run: |
testing/test_shunt.sh
usi_tests:
runs-on: ubuntu-18.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Build with Maven
run: mvn -B clean compile test assembly:single --file usi/pom.xml
test_fot:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: Set up python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: setup forch
env:
GIT_URL: ${{ secrets.GIT_URL }}
run: |
set -x
bin/setup_remote forch
git rev-list HEAD --max-count=1 > forch/etc/DAQ_VERSION
cd forch
bin/setup_base
bin/setup_remote faucet
bin/setup_remote daq
bin/retry_cmd bin/build_docker controller
bin/build_dts
- name: run vxlan integration tests
if: ${{ always() }}
run: |
cd forch
bin/retry_cmd bin/run_fot_test vxlan
- name: run dts integration tests
run: |
cd forch
bin/retry_cmd bin/run_fot_test dts localhost
- name: post-run logs
if: ${{ always() }}
run: |
cd forch
echo %%%%%%%%%%%%% Controller log
docker logs forch-controller-1
echo %%%%%%%%%%%%% DAQ log
cat inst/forch-controller-1/daq/inst/cmdrun.log || cat inst/forch-dts/cmdrun.log
echo %%%%%%%%%%%%% Forch log
cat inst/forch-controller-1/forch.log
echo %%%%%%%%%%%%% Faucet log
cat inst/forch-controller-1/faucet.log
echo %%%%%%%%%%%%% Endpoint log
cat inst/endpoint.log || true
echo %%%%%%%%%%%%% Log lengths
find inst -name \*.log | fgrep -v nodes/ | xargs wc -l
device_coupler_test:
needs: build_docker
runs-on: ubuntu-18.04
timeout-minutes: 40
strategy:
fail-fast: false
steps:
- uses: actions/download-artifact@v2
with:
name: build_artifacts_faucet
path: /tmp/build_artifacts_faucet
- uses: actions/download-artifact@v2
with:
name: build_artifacts_faux
path: /tmp/build_artifacts_faux
- uses: actions/download-artifact@v2
with:
name: build_artifacts_setup
path: /tmp/build_artifacts_setup
- uses: actions/download-artifact@v2
with:
name: build_artifacts_subset
path: /tmp/build_artifacts_subset
- uses: actions/download-artifact@v2
with:
name: build_artifacts_base
path: /tmp/build_artifacts_base
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set up JDK 1.11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Installing dependencies
env:
GIT_URL: ${{ secrets.GIT_URL }}
run: |
bin/setup_daq
- name: Loading docker images
run: |
bin/load_images faucet faux setup base subset
- name: Running device_coupler test
env:
DOCKER_STARTUP_TIMEOUT_MS: 60000
GCP_BASE64_CRED: ${{ secrets.GCP_BASE64_CRED }}
GCP_REFLECT_KEY_BASE64: ${{ secrets.GCP_REFLECT_KEY_BASE64 }}
run: |
device_coupler/testing/test_device_coupler
- name: Runtime logs
if: ${{ always() }}
run: |
echo %%%%%%% daq log cmdrun.log
cat inst/cmdrun.log || true
more inst/run-*/nodes/pass*/tmp/module_config.json | cat