-
Notifications
You must be signed in to change notification settings - Fork 64
120 lines (108 loc) · 3.79 KB
/
api-qs-tests.yml
File metadata and controls
120 lines (108 loc) · 3.79 KB
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
name: Run API QuickStart Sample Tests
on:
workflow_call:
inputs:
sample-directory:
required: true
type: string
api-url:
default: 'http://localhost:3010'
type: string
test-directory:
default: 'tests'
type: string
test-ref:
default: 'master'
type: string
secrets:
AUTH0_DOMAIN:
required: true
API_IDENTIFIER:
required: true
CLIENT_ID_SCOPES_NONE:
required: true
CLIENT_SECRET_SCOPES_NONE:
required: true
CLIENT_ID_SCOPES_READ:
required: true
CLIENT_SECRET_SCOPES_READ:
required: true
CLIENT_ID_SCOPES_WRITE:
required: true
CLIENT_SECRET_SCOPES_WRITE:
required: true
CLIENT_ID_SCOPES_READWRITE:
required: true
CLIENT_SECRET_SCOPES_READWRITE:
required: true
jobs:
authorize:
name: Authorize
environment: ${{ github.actor != 'dependabot[bot]' && github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
sample:
needs: authorize
name: Test Sample
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Checkout Tests
uses: actions/checkout@v4
with:
repository: auth0-samples/api-quickstarts-tests
path: ${{ inputs.test-directory }}
ref: ${{ inputs.test-ref }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup sample .env
working-directory: ${{ inputs.sample-directory }}
env:
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }}
API_IDENTIFIER: ${{ secrets.API_IDENTIFIER }}
run: |
sed \
-e "s|{DOMAIN}|$AUTH0_DOMAIN|g" \
-e "s|{API_IDENTIFIER}|$API_IDENTIFIER|g" \
.env.example > .env
- name: Build PR image
working-directory: ${{ inputs.sample-directory }}
env:
IMAGE_NAME: ${{ github.event.pull_request.head.sha || github.sha }}
CONTAINER_NAME: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
docker build -t $IMAGE_NAME .
docker run -d --env-file .env -p 3010:3010 --name $CONTAINER_NAME $IMAGE_NAME
- name: Wait for sample to start
run: |
sleep 10
docker run --network host --rm appropriate/curl --retry 8 --retry-connrefused -v localhost:3010
- name: Install dependencies
working-directory: tests
run: npm i
- name: Run tests
working-directory: tests
env:
AUTH0_DOMAIN: ${{ secrets.AUTH0_DOMAIN }}
API_IDENTIFIER: ${{ secrets.API_IDENTIFIER }}
API_URL: ${{ inputs.api-url }}
AUTH0_CLIENT_ID_1: ${{ secrets.CLIENT_ID_SCOPES_NONE }}
AUTH0_CLIENT_SECRET_1: ${{ secrets.CLIENT_SECRET_SCOPES_NONE }}
AUTH0_CLIENT_ID_2: ${{ secrets.CLIENT_ID_SCOPES_READ }}
AUTH0_CLIENT_SECRET_2: ${{ secrets.CLIENT_SECRET_SCOPES_READ }}
AUTH0_CLIENT_ID_3: ${{ secrets.CLIENT_ID_SCOPES_WRITE }}
AUTH0_CLIENT_SECRET_3: ${{ secrets.CLIENT_SECRET_SCOPES_WRITE }}
AUTH0_CLIENT_ID_4: ${{ secrets.CLIENT_ID_SCOPES_READWRITE }}
AUTH0_CLIENT_SECRET_4: ${{ secrets.CLIENT_SECRET_SCOPES_READWRITE }}
run: npm test
- name: Copy app logs
env:
CONTAINER_NAME: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
mkdir -p /tmp/out
docker logs $CONTAINER_NAME > /tmp/out/app_logs.log
if: failure()