| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You 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. |
| # |
| |
| on: |
| workflow_dispatch: |
| pull_request: |
| push: |
| branches: |
| - dev |
| - '[0-9]+.[0-9]+.[0-9]+-prepare' |
| - '[0-9]+.[0-9]+.[0-9]+-release' |
| |
| name: API-Test |
| |
| concurrency: |
| group: api-test-${{ github.event.pull_request.number || github.ref }} |
| cancel-in-progress: true |
| |
| |
| jobs: |
| paths-filter: |
| name: API-Test-Path-Filter |
| runs-on: ubuntu-latest |
| outputs: |
| not-ignore: ${{ steps.filter.outputs.not-ignore }} |
| steps: |
| - uses: actions/checkout@v6 |
| with: |
| submodules: true |
| - uses: ./.github/actions/paths-filter |
| id: filter |
| with: |
| filters: | |
| not-ignore: |
| - '!(docs/**)' |
| build: |
| name: API-Test-Build |
| needs: paths-filter |
| if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }} |
| runs-on: ubuntu-latest |
| timeout-minutes: 20 |
| steps: |
| - run: df -h |
| - name: "node-cleanup" |
| run: | |
| sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL |
| sudo docker image prune --all --force |
| sudo docker builder prune -a |
| - run: df -h |
| - uses: actions/checkout@v6 |
| with: |
| submodules: true |
| - name: Sanity Check |
| uses: ./.github/actions/sanity-check |
| with: |
| token: ${{ secrets.GITHUB_TOKEN }} |
| - name: Cache local Maven repository |
| uses: actions/cache@v5 |
| with: |
| path: ~/.m2/repository |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-api-test |
| restore-keys: ${{ runner.os }}-maven- |
| - name: Build Image |
| run: | |
| ./mvnw -B clean install \ |
| -Dmaven.test.skip=true \ |
| -Dspotless.skip=true \ |
| -Pdocker,staging \ |
| -Ddocker.tag=ci \ |
| -Danalyze.skip=true |
| - name: Export Docker Images |
| run: | |
| docker save apache/dolphinscheduler-standalone-server:ci -o /tmp/standalone-image.tar \ |
| && du -sh /tmp/standalone-image.tar |
| - uses: actions/upload-artifact@v6 |
| name: Upload Docker Images |
| with: |
| name: standalone-image-api-test |
| path: /tmp/standalone-image.tar |
| retention-days: 1 |
| api-test: |
| name: ${{ matrix.case.name }} |
| needs: build |
| runs-on: ubuntu-latest |
| timeout-minutes: 30 |
| strategy: |
| matrix: |
| case: |
| - name: TenantAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.TenantAPITest |
| - name: WorkerGroupAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.WorkerGroupAPITest |
| - name: ProjectAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.ProjectAPITest |
| - name: WorkflowDefinitionAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.WorkflowDefinitionAPITest |
| - name: SchedulerAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.SchedulerAPITest |
| - name: ExecutorAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.ExecutorAPITest |
| - name: WorkflowInstanceAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.WorkflowInstanceAPITest |
| - name: LdapLoginAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.LdapLoginAPITest |
| - name: GrpcTaskAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.GrpcTaskAPITest |
| - name: OidcLoginAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.OidcLoginAPITest |
| - name: DependentTaskAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.tasks.DependentTaskAPITest |
| - name: EmrServerlessTaskAPITest |
| class: org.apache.dolphinscheduler.api.test.cases.tasks.EmrServerlessTaskAPITest |
| env: |
| RECORDING_PATH: /tmp/recording-${{ matrix.case.name }} |
| steps: |
| - uses: actions/checkout@v6 |
| with: |
| submodules: true |
| - name: Set up JDK 11 |
| uses: actions/setup-java@v5 |
| with: |
| java-version: 11 |
| distribution: 'adopt' |
| - name: Collect Workflow Metrics |
| uses: ./.github/actions/actions-workflow-metrics |
| - name: Cache local Maven repository |
| uses: actions/cache@v5 |
| with: |
| path: ~/.m2/repository |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-api-test |
| restore-keys: ${{ runner.os }}-maven- |
| - uses: actions/download-artifact@v8 |
| name: Download Docker Images |
| with: |
| name: standalone-image-api-test |
| path: /tmp |
| - name: Load Docker Images |
| run: | |
| docker load -i /tmp/standalone-image.tar |
| - name: df -h |
| run: df -h |
| - name: Run Test |
| run: | |
| ./mvnw -B -f dolphinscheduler-api-test/pom.xml -am \ |
| -DfailIfNoTests=false \ |
| -Dspotless.skip=true \ |
| -Dtest=${{ matrix.case.class }} test |
| - uses: actions/upload-artifact@v6 |
| if: always() |
| name: Upload Recording |
| with: |
| name: recording-${{ matrix.case.name }} |
| path: ${{ env.RECORDING_PATH }} |
| retention-days: 1 |
| result: |
| name: API-Test-Result |
| runs-on: ubuntu-latest |
| timeout-minutes: 30 |
| needs: [ api-test, paths-filter ] |
| if: always() |
| steps: |
| - name: Status |
| run: | |
| if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then |
| echo "Skip API Test!" |
| exit 0 |
| fi |
| if [[ ${{ needs.api-test.result }} != 'success' ]]; then |
| echo "API test Failed!" |
| exit -1 |
| fi |