-
Notifications
You must be signed in to change notification settings - Fork 9
101 lines (90 loc) · 4 KB
/
test-in-herokuish.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
# RAILS_ENV: test
# NODE_ENV: development
# test_mongo_local_db_uri="mongodb://$(test_mongo_db_user):$(test_mongo_db_password)@localhost:$(test_mongo_port)/$(test_mongo_db_name)"
# test_postgres_local_db_uri="postgresql://$(test_postgres_db_user):$(test_postgres_db_password)@localhost:$(test_postgres_port)/$(test_postgres_db_name)"
name: Run tests in herokuish
on: [push]
env:
test_network_name: outpost-test-network
test_mongo_container_name: outpost-test-mongo
test_mongo_init_db_user: admin
test_mongo_init_db_password: password
test_mongo_db_name: outpost_api_test
test_mongo_db_user: outpost
test_mongo_db_password: password
test_postgres_container_name: outpost-test-postgres
test_postgres_db_name: outpost_test
test_postgres_db_user: outpost
test_postgres_db_password: password
test_mongo_internal_db_uri: "mongodb://$test_mongo_db_user:$test_mongo_db_password@$test_mongo_container_name:27017/$test_mongo_db_name"
test_postgres_internal_db_uri: "postgresql://$test_postgres_db_user:$test_postgres_db_password@$test_postgres_container_name:5432/outpost?"
jobs:
test-in-herokuish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: "Set up internal DB URIs"
run: |
echo "test_mongo_internal_db_uri=mongodb://${{ env.test_mongo_db_user }}:${{ env.test_mongo_db_password }}@${{ env.test_mongo_container_name }}:27017/${{ env.test_mongo_db_name }}" >> $GITHUB_ENV
echo "test_postgres_internal_db_uri=postgresql://${{ env.test_postgres_db_user }}:${{ env.test_postgres_db_password }}@${{ env.test_postgres_container_name }}:5432/${{ env.test_postgres_db_name }}" >> $GITHUB_ENV
- name: "Connection info"
run: |
echo $test_mongo_internal_db_uri
echo $test_postgres_internal_db_uri
- name: "Create custom network"
run: docker network create $test_network_name
- name: "Setup mongo"
run: |
docker run -d --name $test_mongo_container_name \
--network $test_network_name \
-p 27017:27017 \
-v $PWD/.docker/services/mongo/setup-mongodb.js:/docker-entrypoint-initdb.d/mongo-init.js:ro \
-e MONGO_INITDB_ROOT_USERNAME=$test_mongo_init_db_user \
-e MONGO_INITDB_ROOT_PASSWORD=$test_mongo_init_db_password \
-e MONGO_INITDB_USERNAME=$test_mongo_db_user \
-e MONGO_INITDB_PASSWORD=$test_mongo_db_password \
-e MONGO_INITDB_DATABASE=$test_mongo_db_name \
mongo:latest
- name: "Setup postgres"
run: |
docker run -d --name $test_postgres_container_name \
--network $test_network_name \
-p 5432:5432 \
-e POSTGRES_DB=$test_postgres_db_name \
-e POSTGRES_PASSWORD=$test_postgres_db_password \
-e POSTGRES_USER=$test_postgres_db_user \
postgres:13.7-alpine
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
tags: outpost:test
file: Dockerfile.test
load: true
# push: true
build-args: |
RACK_ENV=test
RAILS_ENV=test
NPM_CONFIG_PRODUCTION=false
NPM_CONFIG_LOGLEVEL=error
USE_YARN_CACHE=true
NODE_OPTIONS=--openssl-legacy-provider
NODE_VERBOSE=false
NODE_ENV=test
NODE_MODULES_CACHE=true
- name: Run the image and tests
run: |
docker run --rm --name test_container \
--network $test_network_name \
-p 3000:3000 \
-e RACK_ENV=test \
-e RAILS_ENV=test \
-e NODE_ENV=test \
-e RAILS_SERVE_STATIC_FILES=true \
-e SECRET_KEY_BASE=dummy \
-e DB_URI=$test_mongo_internal_db_uri \
-e DATABASE_URL=$test_postgres_internal_db_uri \
-e GOOGLE_API_KEY=${{ secrets.GOOGLE_API_KEY }} \
-e OFSTED_FEED_API_ENDPOINT=https://test-ofsted-feed.stub \
-e DATABASE_CLEANER_ALLOW_PRODUCTION=true \
outpost:test