Integration tests #1296
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Integration tests" | |
on: | |
workflow_dispatch: | |
# no push trigger, this only runs nightly | |
schedule: | |
# Daily 5am australian/brisbane time (7pm UTC) | |
- cron: "0 19 * * *" | |
push: | |
paths-ignore: | |
- "**.md" | |
- "releases.json" | |
- ".github/**" | |
env: | |
SA_PASSWORD: ${{ secrets.DB_IMAGE_SA_PASSWORD }} | |
ADMIN_API_KEY: ${{ secrets.OD_IMAGE_ADMIN_API_KEY }} | |
SERVER_URL: "http://localhost:8080" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
sqlserver: | |
image: mcr.microsoft.com/mssql/server:2019-CU27-ubuntu-20.04 | |
env: | |
ACCEPT_EULA: Y | |
SA_PASSWORD: ${{ env.SA_PASSWORD }} | |
MSSQL_PID: Developer | |
options: >- | |
--health-cmd "/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P \"$SA_PASSWORD\" -Q \"SELECT 1\" || exit 1" | |
--health-interval 10s | |
--health-timeout 3s | |
--health-retries 10 | |
--health-start-period 10s | |
octopusserver: | |
image: octopusdeploy/octopusdeploy:latest | |
env: | |
ACCEPT_EULA: Y | |
DB_CONNECTION_STRING: "Server=sqlserver;Database=OctopusDeploy;User Id=sa;Password=${{ env.SA_PASSWORD }};" | |
ADMIN_API_KEY: ${{ env.ADMIN_API_KEY }} | |
ENABLE_USAGE: N | |
OCTOPUS_SERVER_BASE64_LICENSE: ${{ secrets.OCTOPUS_SERVER_BASE64_LICENSE }} | |
ports: | |
- 8080:8080 | |
permissions: # https://github.com/dorny/test-reporter/issues/168 | |
statuses: write | |
checks: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Setup gotestsum | |
run: go install gotest.tools/gotestsum@latest | |
# we don't technically need to run the unit tests but they're fast so why not | |
- name: Unit Tests | |
run: gotestsum --format testname --junitfile ../unit-tests.xml | |
working-directory: ./pkg | |
- name: Integration Tests | |
env: | |
OCTOPUS_TEST_URL: ${{ env.SERVER_URL }} | |
OCTOPUS_TEST_APIKEY: ${{ env.ADMIN_API_KEY }} | |
run: gotestsum --format testname --junitfile ../integration-tests.xml | |
working-directory: ./test/integration | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() | |
with: | |
name: Test Results | |
path: "*-tests.xml" | |
reporter: java-junit |