mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
35f59daceb
* Add Pending Model Checks * Update This File Reference * Don't Use Title Case * Include ConnectionString * Remove --connection arg * Add Fake Model Change * Remove Fake Change
204 lines
8.3 KiB
YAML
204 lines
8.3 KiB
YAML
---
|
|
name: Database testing
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "rc"
|
|
- "hotfix-rc"
|
|
paths:
|
|
- ".github/workflows/test-database.yml" # This file
|
|
- "src/Sql/**" # SQL Server Database Changes
|
|
- "util/Migrator/**" # New SQL Server Migrations
|
|
- "util/MySqlMigrations/**" # Changes to MySQL
|
|
- "util/PostgresMigrations/**" # Changes to Postgres
|
|
- "util/SqliteMigrations/**" # Changes to Sqlite
|
|
- "src/Infrastructure.Dapper/**" # Changes to SQL Server Dapper Repository Layer
|
|
- "src/Infrastructure.EntityFramework/**" # Changes to Entity Framework Repository Layer
|
|
- "test/Infrastructure.IntegrationTest/**" # Any changes to the tests
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/test-database.yml" # This file
|
|
- "src/Sql/**" # SQL Server Database Changes
|
|
- "util/Migrator/**" # New SQL Server Migrations
|
|
- "util/MySqlMigrations/**" # Changes to MySQL
|
|
- "util/PostgresMigrations/**" # Changes to Postgres
|
|
- "util/SqliteMigrations/**" # Changes to Sqlite
|
|
- "src/Infrastructure.Dapper/**" # Changes to SQL Server Dapper Repository Layer
|
|
- "src/Infrastructure.EntityFramework/**" # Changes to Entity Framework Repository Layer
|
|
- "test/Infrastructure.IntegrationTest/**" # Any changes to the tests
|
|
|
|
jobs:
|
|
test:
|
|
name: Run tests
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Set up .NET
|
|
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
|
|
|
|
- name: Restore tools
|
|
run: dotnet tool restore
|
|
|
|
- name: Docker Compose databases
|
|
working-directory: "dev"
|
|
# We could think about not using profiles and pulling images directly to cover multiple versions
|
|
run: |
|
|
cp .env.example .env
|
|
docker compose --profile mssql --profile postgres --profile mysql up -d
|
|
shell: pwsh
|
|
|
|
# I've seen the SQL Server container not be ready for commands right after starting up and just needing a bit longer to be ready
|
|
- name: Sleep
|
|
run: sleep 15s
|
|
|
|
- name: Checking pending model changes (MySQL)
|
|
working-directory: "util/MySqlMigrations"
|
|
run: 'dotnet ef migrations has-pending-model-changes -- --GlobalSettings:MySql:ConnectionString="$CONN_STR"'
|
|
env:
|
|
CONN_STR: "server=localhost;uid=root;pwd=SET_A_PASSWORD_HERE_123;database=vault_dev;Allow User Variables=true"
|
|
|
|
- name: Checking pending model changes (Postgres)
|
|
working-directory: "util/PostgresMigrations"
|
|
run: 'dotnet ef migrations has-pending-model-changes -- --GlobalSettings:PostgreSql:ConnectionString="$CONN_STR"'
|
|
env:
|
|
CONN_STR: "Host=localhost;Username=postgres;Password=SET_A_PASSWORD_HERE_123;Database=vault_dev"
|
|
|
|
- name: Checking pending model changes (SQLite)
|
|
working-directory: "util/SqliteMigrations"
|
|
run: 'dotnet ef migrations has-pending-model-changes -- --GlobalSettings:Sqlite:ConnectionString="$CONN_STR"'
|
|
env:
|
|
CONN_STR: "Data Source=${{ runner.temp }}/test.db"
|
|
|
|
- name: Migrate SQL Server
|
|
run: 'dotnet run --project util/MsSqlMigratorUtility/ "$CONN_STR"'
|
|
env:
|
|
CONN_STR: "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True;"
|
|
|
|
- name: Migrate MySQL
|
|
working-directory: "util/MySqlMigrations"
|
|
run: 'dotnet ef database update --connection "$CONN_STR" -- --GlobalSettings:MySql:ConnectionString="$CONN_STR"'
|
|
env:
|
|
CONN_STR: "server=localhost;uid=root;pwd=SET_A_PASSWORD_HERE_123;database=vault_dev;Allow User Variables=true"
|
|
|
|
- name: Migrate Postgres
|
|
working-directory: "util/PostgresMigrations"
|
|
run: 'dotnet ef database update --connection "$CONN_STR" -- --GlobalSettings:PostgreSql:ConnectionString="$CONN_STR"'
|
|
env:
|
|
CONN_STR: "Host=localhost;Username=postgres;Password=SET_A_PASSWORD_HERE_123;Database=vault_dev"
|
|
|
|
- name: Migrate SQLite
|
|
working-directory: "util/SqliteMigrations"
|
|
run: 'dotnet ef database update --connection "$CONN_STR" -- --GlobalSettings:Sqlite:ConnectionString="$CONN_STR"'
|
|
env:
|
|
CONN_STR: "Data Source=${{ runner.temp }}/test.db"
|
|
|
|
- name: Run tests
|
|
working-directory: "test/Infrastructure.IntegrationTest"
|
|
env:
|
|
# Default Postgres:
|
|
BW_TEST_DATABASES__0__TYPE: "Postgres"
|
|
BW_TEST_DATABASES__0__CONNECTIONSTRING: "Host=localhost;Username=postgres;Password=SET_A_PASSWORD_HERE_123;Database=vault_dev"
|
|
# Default MySql
|
|
BW_TEST_DATABASES__1__TYPE: "MySql"
|
|
BW_TEST_DATABASES__1__CONNECTIONSTRING: "server=localhost;uid=root;pwd=SET_A_PASSWORD_HERE_123;database=vault_dev"
|
|
# Default Dapper SqlServer
|
|
BW_TEST_DATABASES__2__TYPE: "SqlServer"
|
|
BW_TEST_DATABASES__2__CONNECTIONSTRING: "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True;"
|
|
# Default Sqlite
|
|
BW_TEST_DATABASES__3__TYPE: "Sqlite"
|
|
BW_TEST_DATABASES__3__CONNECTIONSTRING: "Data Source=${{ runner.temp }}/test.db"
|
|
run: dotnet test --logger "trx;LogFileName=infrastructure-test-results.trx"
|
|
shell: pwsh
|
|
|
|
- name: Report test results
|
|
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5 # v1.9.1
|
|
if: always()
|
|
with:
|
|
name: Test Results
|
|
path: "**/*-test-results.trx"
|
|
reporter: dotnet-trx
|
|
fail-on-error: true
|
|
|
|
- name: Docker Compose down
|
|
if: always()
|
|
working-directory: "dev"
|
|
run: docker compose down
|
|
shell: pwsh
|
|
|
|
validate:
|
|
name: Run validation
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Set up .NET
|
|
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
|
|
|
|
- name: Print environment
|
|
run: |
|
|
dotnet --info
|
|
nuget help | grep Version
|
|
echo "GitHub ref: $GITHUB_REF"
|
|
echo "GitHub event: $GITHUB_EVENT"
|
|
|
|
- name: Build DACPAC
|
|
run: dotnet build src/Sql --configuration Release --verbosity minimal --output .
|
|
shell: pwsh
|
|
|
|
- name: Upload DACPAC
|
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
|
with:
|
|
name: sql.dacpac
|
|
path: Sql.dacpac
|
|
|
|
- name: Docker Compose up
|
|
working-directory: "dev"
|
|
run: |
|
|
cp .env.example .env
|
|
docker compose --profile mssql up -d
|
|
shell: pwsh
|
|
|
|
- name: Migrate
|
|
run: 'dotnet run --project util/MsSqlMigratorUtility/ "$CONN_STR"'
|
|
env:
|
|
CONN_STR: "Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True;"
|
|
|
|
- name: Diff .sqlproj to migrations
|
|
run: /usr/local/sqlpackage/sqlpackage /action:DeployReport /SourceFile:"Sql.dacpac" /TargetConnectionString:"Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True;" /OutputPath:"report.xml" /p:IgnoreColumnOrder=True /p:IgnoreComments=True
|
|
shell: pwsh
|
|
|
|
- name: Generate SQL file
|
|
run: /usr/local/sqlpackage/sqlpackage /action:Script /SourceFile:"Sql.dacpac" /TargetConnectionString:"Server=localhost;Database=vault_dev;User Id=SA;Password=SET_A_PASSWORD_HERE_123;Encrypt=True;TrustServerCertificate=True;" /OutputPath:"diff.sql" /p:IgnoreColumnOrder=True /p:IgnoreComments=True
|
|
shell: pwsh
|
|
|
|
- name: Report validation results
|
|
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
|
|
with:
|
|
name: report.xml
|
|
path: |
|
|
report.xml
|
|
diff.sql
|
|
|
|
- name: Validate XML
|
|
run: |
|
|
if grep -q "<Operations>" "report.xml"; then
|
|
echo
|
|
echo "Migrations are out of sync with sqlproj!"
|
|
exit 1
|
|
else
|
|
echo "Report looks good"
|
|
fi
|
|
shell: bash
|
|
|
|
- name: Docker Compose down
|
|
if: ${{ always() }}
|
|
working-directory: "dev"
|
|
run: docker compose down
|
|
shell: pwsh
|