|
@@ -20,6 +20,10 @@ on:
|
|
|
jobs:
|
|
|
e2e:
|
|
|
name: (Docker) E2E Test Suite
|
|
|
+ strategy:
|
|
|
+ fail-fast: false
|
|
|
+ matrix:
|
|
|
+ secondary_db_enabled: [true, false]
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
services:
|
|
@@ -45,6 +49,7 @@ jobs:
|
|
|
env:
|
|
|
DB_TYPE: mysql
|
|
|
CACHE_TYPE: redis
|
|
|
+ SECONDARY_DB_ENABLED: ${{ matrix.secondary_db_enabled }}
|
|
|
|
|
|
- name: Wait for server to start
|
|
|
run: docker/is-available.sh http://localhost:3123 $(pwd)/logs
|
|
@@ -67,13 +72,7 @@ jobs:
|
|
|
matrix:
|
|
|
db_type: [mysql, sqlite]
|
|
|
cache_type: [redis, memory]
|
|
|
- include:
|
|
|
- - cache_type: redis
|
|
|
- db_type: mysql
|
|
|
- redis_port: 6380
|
|
|
- - cache_type: redis
|
|
|
- db_type: sqlite
|
|
|
- redis_port: 6381
|
|
|
+ secondary_db_enabled: [true, false]
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
@@ -85,16 +84,24 @@ jobs:
|
|
|
cache:
|
|
|
image: redis
|
|
|
ports:
|
|
|
- - ${{ matrix.redis_port }}:6379
|
|
|
+ - 6379:6379
|
|
|
db:
|
|
|
image: mysql
|
|
|
ports:
|
|
|
- - 3307:3306
|
|
|
+ - 3306:3306
|
|
|
env:
|
|
|
MYSQL_ROOT_PASSWORD: root
|
|
|
- MYSQL_DATABASE: standardnotes_${{ matrix.cache_type }}
|
|
|
+ MYSQL_DATABASE: standardnotes
|
|
|
MYSQL_USER: standardnotes
|
|
|
MYSQL_PASSWORD: standardnotes
|
|
|
+ secondary_db:
|
|
|
+ image: mongo:5.0
|
|
|
+ ports:
|
|
|
+ - 27017:27017
|
|
|
+ env:
|
|
|
+ MONGO_INITDB_ROOT_USERNAME: standardnotes
|
|
|
+ MONGO_INITDB_ROOT_PASSWORD: standardnotes
|
|
|
+ MONGO_INITDB_DATABASE: standardnotes
|
|
|
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
@@ -125,14 +132,20 @@ jobs:
|
|
|
echo "REFRESH_TOKEN_AGE=10" >> packages/home-server/.env
|
|
|
echo "REVISIONS_FREQUENCY=2" >> packages/home-server/.env
|
|
|
echo "DB_HOST=localhost" >> packages/home-server/.env
|
|
|
- echo "DB_PORT=3307" >> packages/home-server/.env
|
|
|
- echo "DB_DATABASE=standardnotes_${{ matrix.cache_type }}" >> packages/home-server/.env
|
|
|
- echo "DB_SQLITE_DATABASE_PATH=sqlite_${{ matrix.cache_type }}.db" >> packages/home-server/.env
|
|
|
+ echo "DB_PORT=3306" >> packages/home-server/.env
|
|
|
+ echo "DB_DATABASE=standardnotes" >> packages/home-server/.env
|
|
|
+ echo "DB_SQLITE_DATABASE_PATH=homeserver.db" >> packages/home-server/.env
|
|
|
echo "DB_USERNAME=standardnotes" >> packages/home-server/.env
|
|
|
echo "DB_PASSWORD=standardnotes" >> packages/home-server/.env
|
|
|
echo "DB_TYPE=${{ matrix.db_type }}" >> packages/home-server/.env
|
|
|
- echo "REDIS_URL=redis://localhost:${{ matrix.redis_port }}" >> packages/home-server/.env
|
|
|
+ echo "REDIS_URL=redis://localhost:6380" >> packages/home-server/.env
|
|
|
echo "CACHE_TYPE=${{ matrix.cache_type }}" >> packages/home-server/.env
|
|
|
+ echo "SECONDARY_DB_ENABLED=${{ matrix.secondary_db_enabled }}" >> packages/home-server/.env
|
|
|
+ echo "MONGO_HOST=localhost" >> packages/home-server/.env
|
|
|
+ echo "MONGO_PORT=27017" >> packages/home-server/.env
|
|
|
+ echo "MONGO_DATABASE=standardnotes" >> packages/home-server/.env
|
|
|
+ echo "MONGO_USERNAME=standardnotes" >> packages/home-server/.env
|
|
|
+ echo "MONGO_PASSWORD=standardnotes" >> packages/home-server/.env
|
|
|
echo "FILES_SERVER_URL=http://localhost:3123" >> packages/home-server/.env
|
|
|
echo "E2E_TESTING=true" >> packages/home-server/.env
|
|
|
|