Skip to content

Migrate IT tests

Migrate IT tests #17

Workflow file for this run

name: test-all
on:
push:
branches-ignore:
- 'dependabot/**' #avoid duplicates: only run the PR, not the commit
- 'gh-pages' #github pages do not trigger all tests
tags-ignore:
- 'v*' #avoid rerun existing commit on release
pull_request:
branches:
- 'main'
env:
TEST_POSTGRES_PWD: ${RANDOM}${RANDOM}${RANDOM}
#sqlserver must comply with password requirements (upper, lower, digit, symbol)
TEST_SQLSERVER_PWD: ${RANDOM}Ax.${RANDOM}${RANDOM}
TEST_ORACLE_PWD: ${RANDOM}${RANDOM}${RANDOM}
TEST_SQLITE_PWD: ""
TEST_H2_PWD: ""
jobs:
test-java:
runs-on: ubuntu-latest
#if: ${{ false }} # disable for now
strategy:
matrix:
scope: [UT, IT]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
# Run the tests UT, IT and those that require database server
- name: Test and aggregate surefire report - ${{ matrix.scope }}
if: ${{ matrix.scope == 'UT' }}
run: >
mvn test surefire-report:report -Daggregate=true
-Dtest=!TestPostgres*,!TestSqlserver*,!TestOracle*,!ITTest*
-Dsurefire.failIfNoSpecifiedTests=false
-Dmaven.test.failure.ignore=true -U --no-transfer-progress
# it requires first running the test outside of maven, then a test case compares results
- name: Test execution - ${{ matrix.scope }}
if: ${{ matrix.scope == 'IT' }}
run: cd it && ant test-all
- name: Test results compraison - ${{ matrix.scope }}
if: ${{ matrix.scope == 'IT' }}
run: >
mvn verify surefire-report:report -Daggregate=true -pl qacover-core -am
-Dtest=ITTest* -DskipTests=true
-Dsurefire.failIfNoSpecifiedTests=false
-Dmaven.test.failure.ignore=true -U --no-transfer-progress
# Reporting
- name: Additional aggregated junit report
if: always()
uses: javiertuya/junit-report-action@v1.1.0
with:
surefire-files: "**/target/surefire-reports/TEST-*.xml"
report-dir: target/site
report-title: "Test Report: ${{ matrix.scope }} - Branch: ${{ github.ref_name }}"
- name: Generate report checks
if: always()
uses: mikepenz/action-junit-report@v3.8.0
with:
check_name: "test-result-${{ matrix.scope }}"
report_paths: "**/surefire-reports/TEST-*.xml"
fail_on_failure: 'true'
- if: always()
name: Set unique jacoco.xml file names for each scope
#if not sonarqube will overwrite al jacoco files generated for the same module but different scopes
run: |
for file in */target/site/jacoco/jacoco.xml ; do mv $file ${file//jacoco.xml/jacoco-${{ matrix.scope }}.xml} ; done
ls -la */target/site/jacoco/*.xml
- name: Publish test report files
if: always()
uses: actions/upload-artifact@v3
with:
name: "test-report-files-${{ matrix.scope }}"
path: |
target/site
**/target/site/jacoco/jacoco*.xml
**/target/surefire-reports
**/target/failsafe-reports
**/target/*.html
**/target/*.log
sonarqube:
needs: [test-java]
#if: ${{ false }} # disable for now
#This job fails when comming from a dependabot PR (can't read the sonarqube token for security reasons).
#Links to discussions and workaround at: https://github.com/giis-uniovi/samples-giis-template/issues/4
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: javiertuya/sonarqube-action@v1.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
restore-artifact-name1: "test-report-files-UT"
restore-artifact-name2: "test-report-files-IT"
publish-java-snapshot:
#if: ${{ false }} # disable for now
#avoid publishing PRs and dependabot branches
if: ${{ github.event_name != 'pull_request' && !contains('/head/refs/dependabot/', github.ref) }}
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: javiertuya/branch-snapshots-action@v1.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
java-version: '8'
mvn-deploy-args: '-P publish-github -DskipTests=true -DskipITs=true -Dmaven.test.failure.ignore=false -Dsurefire.failIfNoSpecifiedTests=false -U --no-transfer-progress'
delete-old-snapshots: true
min-snapshots-to-keep: 8
always-keep-regex: "\\d*\\.\\d*\\.\\d*-main-SNAPSHOT$"