0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/.github/workflows/integration-test.yml

158 lines
4.3 KiB
YAML
Raw Normal View History

name: Integration Test
on:
push:
2022-07-01 07:33:08 -05:00
branches:
- master
- "push-action/**"
2022-06-27 03:38:39 -05:00
pull_request:
concurrency:
2023-01-18 22:22:17 -05:00
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
package:
2023-03-05 11:48:50 -05:00
# See https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations
strategy:
matrix:
env: [oss, cloud]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v3
2023-03-06 00:45:14 -05:00
- name: Build and package
2023-03-05 11:48:50 -05:00
if: matrix.env != 'cloud'
2023-03-06 00:45:14 -05:00
run: |
pnpm -r build
./.scripts/package.sh
2023-03-05 11:48:50 -05:00
2023-03-06 00:45:14 -05:00
- name: Build and package (Cloud)
2023-03-05 11:48:50 -05:00
if: matrix.env == 'cloud'
2023-03-06 00:45:14 -05:00
run: |
pnpm -r build
./.scripts/package.sh
2023-03-05 11:48:50 -05:00
env:
IS_CLOUD: 1
CONSOLE_PUBLIC_URL: /
2023-03-06 00:45:14 -05:00
ADMIN_ENDPOINT: http://localhost:3002
# Setup ApplicationInsights for smoke testing. Note the connection string should be a dev string.
APPLICATIONINSIGHTS_CONNECTION_STRING: ${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING }}
- uses: actions/upload-artifact@v3
with:
2023-03-05 11:48:50 -05:00
name: integration-test-${{ github.sha }}-${{ matrix.env }}
path: /tmp/logto.tar.gz
retention-days: 3
run-logto:
strategy:
2023-03-27 23:00:28 -05:00
fail-fast: false
matrix:
2023-03-05 11:48:50 -05:00
target: [api, ui, ui-cloud]
2023-03-05 11:48:50 -05:00
needs: package
runs-on: ubuntu-latest
2023-03-05 11:48:50 -05:00
env:
INTEGRATION_TEST: true
IS_CLOUD: ${{ contains(matrix.target, 'cloud') && '1' || '0' }}
2023-03-13 00:58:58 -05:00
PATH_BASED_MULTI_TENANCY: ${{ contains(matrix.target, 'cloud') && '1' || '0' }}
steps:
- uses: actions/checkout@v3
with:
path: tests
- name: Copy lockfile
run: |
cp tests/pnpm-lock.yaml ./
cp tests/package.json ./
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v3
with:
run-install: false
# Setup integration test
- name: Install dependencies
run: |
2022-10-15 11:49:16 -05:00
cd tests
pnpm i
pnpm prepack
# Install Chromium
cd packages/integration-tests/node_modules/puppeteer
pnpm postinstall
# Setup environment
- name: Setup Postgres
uses: ikalnytskyi/action-setup-postgres@v4
2023-04-07 04:41:22 -05:00
- name: Setup Redis
uses: supercharge/redis-github-action@1.5.0
with:
redis-version: 6
- uses: actions/download-artifact@v3
with:
2023-03-05 11:48:50 -05:00
name: integration-test-${{ github.sha }}-${{ contains(matrix.target, 'cloud') && 'cloud' || 'oss' }}
- name: Extract
2022-10-15 11:49:16 -05:00
working-directory: tests
run: |
2023-03-05 09:07:02 -05:00
npm run cli init -- \
-p ../logto \
--db postgres://postgres:postgres@localhost:5432/postgres \
--du ../logto.tar.gz \
2023-03-05 11:48:50 -05:00
${{ contains(matrix.target, 'cloud') && '--cloud' || '' }}
2022-10-15 11:49:16 -05:00
- name: Check and add mock connectors
2022-10-15 11:49:16 -05:00
working-directory: tests
run: |
npm run cli connector list -- -p ../logto | grep OFFICIAL
npm run cli connector link -- --mock -p ../logto
2022-10-08 04:12:19 -05:00
- name: Run Logto
working-directory: logto/
2023-02-09 05:31:14 -05:00
run: nohup npm start > nohup.out 2> nohup.err < /dev/null &
2023-04-07 04:41:22 -05:00
env:
REDIS_URL: 1
2023-03-05 09:07:02 -05:00
- name: Run Logto Cloud
working-directory: logto/
2023-03-05 11:48:50 -05:00
if: contains(matrix.target, 'cloud')
run: nohup npm run start:cloud > nohup-cloud.out 2> nohup-cloud.err < /dev/null &
2023-03-05 09:07:02 -05:00
- name: Sleep for 5 seconds
run: sleep 5
# Test
- name: Run tests
# continue-on-error: true # Uncomment this line to debug
run: |
2022-10-15 11:49:16 -05:00
cd tests/packages/integration-tests
pnpm build
2023-03-05 11:48:50 -05:00
pnpm run test:${{ matrix.target }}
2023-02-09 05:31:14 -05:00
- name: Show logs
working-directory: logto/
run: cat nohup.out
- name: Show error logs
working-directory: logto/
run: cat nohup.err
2023-03-05 11:48:50 -05:00
- name: Show cloud logs
working-directory: logto/
if: contains(matrix.target, 'cloud')
run: cat nohup-cloud.out
- name: Show cloud error logs
working-directory: logto/
if: contains(matrix.target, 'cloud')
run: cat nohup-cloud.err