-
Notifications
You must be signed in to change notification settings - Fork 30
390 lines (365 loc) · 11.6 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
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
name: 'tests'
permissions: write-all
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**/*.md'
- 'LICENSE'
- 'benchmarks/**'
- 'examples/**'
pull_request:
paths-ignore:
- '**/*.md'
- 'LICENSE'
- 'benchmarks/**'
- 'examples/**'
schedule:
- cron: '0 9 * * *'
jobs:
# node-unit-tests:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: true
# matrix:
# node: [18, 20, 21]
# steps:
# - uses: actions/checkout@main
#
# - name: Setup NodeJS ${{ matrix.node }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Install dependencies (examples)
# working-directory: examples
# run: |
# npm install
#
# - name: Run linting
# run: |
# npm run lint
#
# - name: Typecheck
# run: |
# npm run typecheck
#
# - name: Run unit tests
# run: |
# npm run test:node:unit
#
# web-all-tests-local-single-node:
# runs-on: ubuntu-latest
# needs: node-unit-tests
# strategy:
# fail-fast: true
# matrix:
# clickhouse: [head, latest]
# steps:
# - uses: actions/checkout@main
#
# - name: Start ClickHouse (version - ${{ matrix.clickhouse }}) in Docker
# uses: isbang/[email protected]
# env:
# CLICKHOUSE_VERSION: ${{ matrix.clickhouse }}
# with:
# compose-file: 'docker-compose.yml'
# down-flags: '--volumes'
#
# - name: Setup NodeJS
# uses: actions/setup-node@v4
# with:
# node-version: 20
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Run all web tests
# run: |
# npm run test:web
#
# node-integration-tests-local-single-node:
# needs: node-unit-tests
# runs-on: ubuntu-latest
# strategy:
# fail-fast: true
# matrix:
# node: [18, 20, 21]
# clickhouse: [head, latest]
#
# steps:
# - uses: actions/checkout@main
#
# - name: Start ClickHouse (version - ${{ matrix.clickhouse }}) in Docker
# uses: isbang/[email protected]
# env:
# CLICKHOUSE_VERSION: ${{ matrix.clickhouse }}
# with:
# compose-file: 'docker-compose.yml'
# down-flags: '--volumes'
#
# - name: Setup NodeJS ${{ matrix.node }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Add ClickHouse TLS instance to /etc/hosts
# run: |
# sudo echo "127.0.0.1 server.clickhouseconnect.test" | sudo tee -a /etc/hosts
#
# - name: Run integration tests
# run: |
# npm run test:node:integration
#
# - name: Run TLS tests
# run: |
# npm run test:node:tls
#
# node-integration-tests-local-cluster:
# needs: node-unit-tests
# runs-on: ubuntu-latest
# strategy:
# fail-fast: true
# matrix:
# node: [18, 20, 21]
# clickhouse: [head, latest]
#
# steps:
# - uses: actions/checkout@main
#
# - name: Start ClickHouse cluster (version - ${{ matrix.clickhouse }}) in Docker
# uses: isbang/[email protected]
# env:
# CLICKHOUSE_VERSION: ${{ matrix.clickhouse }}
# with:
# compose-file: 'docker-compose.cluster.yml'
# down-flags: '--volumes'
#
# - name: Setup NodeJS ${{ matrix.node }}
# uses: actions/setup-node@v4
# with:
# node-version: ${{ matrix.node }}
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Run integration tests
# run: |
# npm run test:node:integration:local_cluster
#
# web-integration-tests-local-cluster:
# runs-on: ubuntu-latest
# needs: node-unit-tests
# strategy:
# fail-fast: true
# matrix:
# clickhouse: [head, latest]
# steps:
# - uses: actions/checkout@main
#
# - name: Start ClickHouse cluster (version - ${{ matrix.clickhouse }}) in Docker
# uses: isbang/[email protected]
# env:
# CLICKHOUSE_VERSION: ${{ matrix.clickhouse }}
# with:
# compose-file: 'docker-compose.cluster.yml'
# down-flags: '--volumes'
#
# - name: Setup NodeJS
# uses: actions/setup-node@v4
# with:
# node-version: 20
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Run all web tests
# run: |
# npm run test:web:integration:local_cluster
setup-cloud:
runs-on: ubuntu-latest
steps:
- name: Check Out Code
uses: actions/checkout@v3
- name: Resolve runner IP
run: echo "TF_VAR_allowed_cidr=$(curl -s ifconfig.me)/32" >> $GITHUB_ENV
- name: Setup Terraform
uses: hashicorp/[email protected]
with:
terraform_version: 1.3.4
terraform_wrapper: false
- name: Terraform Init
id: init
working-directory: .github/cloud/
run: terraform init
- name: Terraform Validate
id: validate
working-directory: .github/cloud/
run: terraform validate -no-color
- name: Set service name for pull request
if: github.event_name == 'pull_request'
working-directory: .github/cloud/
run: echo "TF_VAR_service_name=clickhouse-js PR${{ github.event.pull_request.number }} $(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
- name: Set service name for push
if: github.event_name == 'push'
working-directory: .github/cloud/
run: echo "TF_VAR_service_name=clickhouse-js (push) $(git rev-parse --short HEAD) $(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
- name: Set service name for workflow dispatch
if: github.event_name == 'workflow_dispatch'
working-directory: .github/cloud/
run: echo "TF_VAR_service_name=clickhouse-js (dispatch) $(git rev-parse --short HEAD) $(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
- name: Terraform Apply
working-directory: .github/cloud/
id: apply
run: terraform apply -no-color -auto-approve -input=false -lock=false
env:
TF_VAR_organization_id: ${{ secrets.INTEGRATIONS_TEAM_TESTS_ORGANIZATION_ID }}
TF_VAR_token_key: ${{ secrets.INTEGRATIONS_TEAM_TESTS_TOKEN_KEY }}
TF_VAR_token_secret: ${{ secrets.INTEGRATIONS_TEAM_TESTS_TOKEN_SECRET }}
TF_VAR_service_password: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD }}
TF_VAR_api_url: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_API_URL }}
- name: Output Host and Service Name
working-directory: .github/cloud/
run: |
echo "clickhouse_host=https://$(terraform output -raw CLICKHOUSE_HOST):8443" >> $GITHUB_OUTPUT
echo "clickhouse_service_name=$TF_VAR_service_name" >> $GITHUB_OUTPUT
node-integration-tests-cloud:
# needs: node-unit-tests
needs: [setup-cloud]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [18, 20, 21]
steps:
- uses: actions/checkout@main
- name: Setup NodeJS ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: |
npm install
- name: Run integration tests
env:
CLICKHOUSE_CLOUD_HOST: ${{ needs.setup-cloud.outputs.clickhouse-host }}
CLICKHOUSE_CLOUD_PASSWORD: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }}
run: |
npm run test:node:integration:cloud_smt
cleanup-cloud:
runs-on: ubuntu-latest
if: always()
needs: [setup-cloud, node-integration-tests-cloud]
steps:
- name: Check Out Code
uses: actions/checkout@v3
- name: Resolve runner IP
run: echo "TF_VAR_allowed_cidr=$(curl -s ifconfig.me)/32" >> $GITHUB_ENV
- name: Setup Terraform
uses: hashicorp/[email protected]
with:
terraform_version: 1.3.4
terraform_wrapper: false
- name: Terraform Init
id: init
working-directory: .github/cloud/
run: terraform init
- name: Terraform Validate
id: validate
working-directory: .github/cloud/
run: terraform validate -no-color
- name: Cleanup
if: always()
working-directory: .github/cloud/
run: terraform destroy -no-color -auto-approve -input=false -lock=false
env:
TF_VAR_organization_id: ${{ secrets.INTEGRATIONS_TEAM_TESTS_ORGANIZATION_ID }}
TF_VAR_token_key: ${{ secrets.INTEGRATIONS_TEAM_TESTS_TOKEN_KEY }}
TF_VAR_token_secret: ${{ secrets.INTEGRATIONS_TEAM_TESTS_TOKEN_SECRET }}
TF_VAR_service_password: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD }}
TF_VAR_api_url: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_API_URL }}
TF_VAR_service_name: ${{ needs.setup-cloud.outputs.clickhouse-service-name }}
# web-integration-tests-cloud-smt:
# needs: node-unit-tests
# runs-on: ubuntu-latest
# permissions: write-all
# steps:
# - uses: actions/checkout@main
#
# - name: Setup NodeJS
# uses: actions/setup-node@v4
# with:
# node-version: 20
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Run integration tests
# env:
# CLICKHOUSE_CLOUD_HOST: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_HOST_SMT }}
# CLICKHOUSE_CLOUD_PASSWORD: ${{ secrets.INTEGRATIONS_TEAM_TESTS_CLOUD_PASSWORD_SMT }}
# run: |
# npm run test:web:integration:cloud_smt
#
# # With unit + integration + TLS tests + coverage + SonarCloud report, after the rest of the tests.
# # Needs all integration tests on all environments to pass.
# # Should use only the current LTS version of Node.js.
# node-all-tests-with-coverage-and-sonar:
# needs:
# [
# 'node-integration-tests-local-single-node',
# 'node-integration-tests-local-cluster',
# 'node-integration-tests-cloud-smt',
# 'web-all-tests-local-single-node',
# 'web-integration-tests-local-cluster',
# 'web-integration-tests-cloud-smt',
# ]
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@main
# with:
# fetch-depth: 0
#
# - name: Start ClickHouse (version - ${{ matrix.clickhouse }}) in Docker
# uses: isbang/[email protected]
# with:
# compose-file: 'docker-compose.yml'
# down-flags: '--volumes'
#
# - name: Setup NodeJS 20
# uses: actions/setup-node@v4
# with:
# node-version: 20
#
# - name: Install dependencies
# run: |
# npm install
#
# - name: Add ClickHouse TLS instance to /etc/hosts
# run: |
# sudo echo "127.0.0.1 server.clickhouseconnect.test" | sudo tee -a /etc/hosts
#
# - name: Run unit + integration + TLS tests with coverage
# run: |
# npm run test:node:coverage
#
# - name: SonarCloud Scan
# uses: SonarSource/sonarcloud-github-action@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}