Skip to content

Commit

Permalink
fixup! chore: split unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atzoum committed Jun 14, 2023
1 parent 9c58ee3 commit f89ef2c
Showing 1 changed file with 26 additions and 139 deletions.
165 changes: 26 additions & 139 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
pull_request:
jobs:
integration:
name: Integrations
name: Integration
runs-on: 'ubuntu-20.04'
strategy:
matrix:
Expand All @@ -23,20 +23,19 @@ jobs:
- run: go version
- run: go mod download # Not required, used to segregate module download vs test times

- name: Integration test for enterprise
- name: enterprise
if: matrix.FEATURES == 'enterprise'
run: go test -v ./integration_test/docker_test/docker_test.go -count 1
env:
ENTERPRISE_TOKEN: ${{ secrets.ENTERPRISE_TOKEN }}

- name: Integration test for oss
- name: oss
if: matrix.FEATURES == 'oss'
run: go test -v ./integration_test/docker_test/docker_test.go -count 1
env:
RSERVER_ENABLE_MULTITENANCY: ${{ matrix.MULTITENANCY }}

warehouse-integration:
name: Warehouse Service Integration
name: Warehouse Integration
runs-on: 'ubuntu-20.04'
strategy:
fail-fast: false
Expand Down Expand Up @@ -99,7 +98,6 @@ jobs:
with:
name: ${{ matrix.destination }}
path: coverage.txt

unit:
name: Unit
runs-on: 'ubuntu-20.04'
Expand All @@ -109,127 +107,21 @@ jobs:
with:
go-version: '~1.20.4'
check-latest: true

- run: go version
- run: go mod download # Not required, used to segregate module download vs test times
- env:
TEST_KAFKA_CONFLUENT_CLOUD_HOST: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_HOST }}
TEST_KAFKA_CONFLUENT_CLOUD_KEY: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_KEY }}
TEST_KAFKA_CONFLUENT_CLOUD_SECRET: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_SECRET }}
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_HOST: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_HOST }}
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_EVENTHUB_NAME: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_EVENTHUB_NAME }}
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_CONNECTION_STRING: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_CONNECTION_STRING }}
run: make test exclude=/rudder-server/(jobsdb|integration_test|processor|regulation-worker|router|suppression-backup-service|warehouse)
- run: make test exclude="/rudder-server/(jobsdb|integration_test|processor|regulation-worker|router|services|suppression-backup-service|warehouse)"
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: unit
path: coverage.txt
jobsdb-unit:
name: JobsDB Unit
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.3'
check-latest: true
- run: go version
- run: go mod download
- run: make test package=./jobsdb/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: jobsdb-unit
path: coverage.txt
integration-unit:
name: Integration Unit
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.3'
check-latest: true
- run: go version
- run: go mod download
- run: make test package=./integration_test/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: integration-unit
path: coverage.txt
processor-unit:
name: Processor Unit
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.3'
check-latest: true
- run: go version
- run: go mod download
- run: make test package=./processor/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: processor-unit
path: coverage.txt
regulation-worker-unit:
name: Regulation Worker Unit
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.3'
check-latest: true
- run: go version
- run: go mod download
- run: make test package=./regulation-worker/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: regulation-worker-unit
path: coverage.txt
router-unit:
name: Router Unit
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.3'
check-latest: true
- run: go version
- run: go mod download
- run: make test package=./router/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: router-unit
path: coverage.txt
suppression-backup-service-unit:
name: Suppression Backup Service Unit
runs-on: 'ubuntu-20.04'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '~1.20.3'
check-latest: true
- run: go version
- run: go mod download
- run: make test package=./suppression-backup-service/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: suppression-backup-service-unit
path: coverage.txt
warehouse-unit:
name: Warehouse Unit
package-unit:
name: Package Unit
runs-on: 'ubuntu-20.04'
strategy:
fail-fast: false
matrix:
package: [ jobsdb, integration_test, processor, regulation-worker, router, services, suppression-backup-service, warehouse ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
Expand All @@ -238,28 +130,29 @@ jobs:
check-latest: true
- run: go version
- run: go mod download
- env:
- name: Package Unit [ ${{ matrix.package }} ]
env:
TEST_KAFKA_CONFLUENT_CLOUD_HOST: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_HOST }}
TEST_KAFKA_CONFLUENT_CLOUD_KEY: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_KEY }}
TEST_KAFKA_CONFLUENT_CLOUD_SECRET: ${{ secrets.TEST_KAFKA_CONFLUENT_CLOUD_SECRET }}
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_HOST: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_HOST }}
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_EVENTHUB_NAME: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_EVENTHUB_NAME }}
TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_CONNECTION_STRING: ${{ secrets.TEST_KAFKA_AZURE_EVENT_HUBS_CLOUD_CONNECTION_STRING }}
TEST_S3_DATALAKE_CREDENTIALS: ${{ secrets.TEST_S3_DATALAKE_CREDENTIALS }}
BIGQUERY_INTEGRATION_TEST_CREDENTIALS: ${{ secrets.BIGQUERY_INTEGRATION_TEST_CREDENTIALS }}
run: make test package=./warehouse/...
run: make test package=./${{ matrix.package }}/...
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: warehouse-unit
name: ${{ matrix.package }}-unit
path: coverage.txt

coverage:
name: Coverage
runs-on: 'ubuntu-20.04'
needs:
- warehouse-integration
- unit
- jobsdb-unit
- integration-unit
- processor-unit
- regulation-worker-unit
- router-unit
- suppression-backup-service-unit
- warehouse-unit
- package-unit
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -278,21 +171,15 @@ jobs:
with:
fail_ci_if_error: true
files: ./coverage.txt

all-tests-successful:
all-green:
name: All
if: always()
runs-on: ubuntu-latest
needs:
- integration
- warehouse-integration
- unit
- jobsdb-unit
- integration-unit
- processor-unit
- regulation-worker-unit
- router-unit
- suppression-backup-service-unit
- warehouse-unit
- package-unit
steps:
- uses: re-actors/alls-green@v1.2.2
with:
Expand Down

0 comments on commit f89ef2c

Please sign in to comment.