-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial solution of Integration tests control. (#185)
* Initial solution of Integration tests control. - 'sbt test' now does no run Integration tests - To run IT or DB tests is needed to call extra command alias defined in .sbtrc
- Loading branch information
1 parent
8adf2b3
commit cc8892e
Showing
43 changed files
with
221 additions
and
103 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,9 +25,6 @@ on: | |
jobs: | ||
build-agent-and-model: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
scala: [2.11.12, 2.12.18, 2.13.11] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
@@ -38,10 +35,25 @@ jobs: | |
with: | ||
java-version: "[email protected]" | ||
|
||
- name: Build and run tests | ||
run: sbt "project agent" ++${{matrix.scala}} test doc "project model" ++${{matrix.scala}} test doc | ||
- name: Build and run unit tests | ||
run: sbt "project agent" test doc "project model" test doc | ||
|
||
build-server: | ||
build-server-unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- uses: coursier/cache-action@v5 | ||
|
||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v14 | ||
with: | ||
java-version: "[email protected]" | ||
|
||
- name: Build and run unit tests | ||
run: sbt "project server" test | ||
|
||
build-server-integration: | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
|
@@ -56,9 +68,6 @@ jobs: | |
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
strategy: | ||
matrix: | ||
scala: [2.13.11] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
@@ -72,5 +81,40 @@ jobs: | |
- name: Prepare testing database | ||
run: sbt flywayMigrate | ||
|
||
- name: Build and run tests | ||
run: sbt "project server" ++${{matrix.scala}} test doc | ||
- name: Build and run integration tests | ||
run: sbt "project server" testIT doc | ||
|
||
build-database: | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres:15 | ||
env: | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: atum_db | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- uses: coursier/cache-action@v5 | ||
|
||
- name: Setup Scala | ||
uses: olafurpg/setup-scala@v14 | ||
with: | ||
java-version: "[email protected]" | ||
|
||
# Fails on balta dbConnection error issue: https://github.com/AbsaOSS/balta/issues/23 | ||
# - name: Build and run unit tests | ||
# run: sbt "project database" test | ||
|
||
- name: Prepare testing database | ||
run: sbt flywayMigrate | ||
|
||
- name: Build and run database/integration tests | ||
run: sbt testDB doc |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ on: | |
types: [ opened, edited, synchronize, reopened ] | ||
|
||
env: | ||
scalaLong13: 2.13.11 | ||
scalaShort13: "2.13" | ||
scalaLong: 2.13.11 | ||
scalaShort: "2.13" | ||
overall: 75.0 | ||
changed: 75.0 | ||
|
||
|
@@ -58,18 +58,18 @@ jobs: | |
- name: Build and run tests | ||
continue-on-error: true | ||
id: jacocorun | ||
run: sbt "project server; jacoco" | ||
run: sbt "project server" jacoco | ||
# server module code coverage | ||
- name: Add coverage to PR | ||
if: steps.jacocorun.outcome == 'success' | ||
id: jacoco-server | ||
uses: madrapps/[email protected] | ||
with: | ||
paths: ${{ github.workspace }}/server/target/jvm-${{ env.scalaShort13 }}/jacoco/report/jacoco.xml | ||
paths: ${{ github.workspace }}/server/target/jvm-${{ env.scalaShort }}/jacoco/report/jacoco.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
min-coverage-overall: ${{env.overall }} | ||
min-coverage-changed-files: ${{ env.changed }} | ||
title: JaCoCo server module code coverage report - scala ${{ env.scalaLong13 }} | ||
title: JaCoCo server module code coverage report - scala ${{ env.scalaLong }} | ||
update-comment: true | ||
- name: Get the Coverage info | ||
if: steps.jacocorun.outcome == 'success' | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# | ||
# Copyright 2021 ABSA Group Limited | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# Aliases in this file expected usage of test file naming conventions: | ||
# - "UnitTests" suffix for test files and Suites which define unit tests | ||
# - "IntegrationTests" suffix for test files and Suites which define integration tests | ||
|
||
# CPS QA types aliases | ||
# * Unit tests | ||
alias test=; testOnly *UnitTests | ||
|
||
# * Integration tests | ||
alias testIT=; testOnly *IntegrationTests | ||
|
||
# Project specific aliases | ||
alias testDB=; project database; testOnly * |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.