Smoke Tests #463
  
    
      This file contains hidden or 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: Smoke Tests | |
| on: | |
| schedule: | |
| - cron: "0 4 * * *" | |
| pull_request: | |
| paths: | |
| - "src/test/java/com/bandwidth/sdk/smoke/*" | |
| - ".github/workflows/test-smoke.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| env: | |
| BW_USERNAME: ${{ secrets.BW_USERNAME }} | |
| BW_PASSWORD: ${{ secrets.BW_PASSWORD }} | |
| BW_USERNAME_FORBIDDEN: ${{ secrets.BW_USERNAME_FORBIDDEN }} | |
| BW_PASSWORD_FORBIDDEN: ${{ secrets.BW_PASSWORD_FORBIDDEN }} | |
| USER_NUMBER: ${{ secrets.USER_NUMBER }} | |
| BASE_CALLBACK_URL: ${{ secrets.BASE_CALLBACK_URL }} | |
| MANTECA_BASE_URL: ${{ secrets.MANTECA_BASE_URL }} | |
| ATT_NUMBER: ${{ secrets.ATT_NUMBER }} | |
| T_MOBILE_NUMBER: ${{ secrets.T_MOBILE_NUMBER }} | |
| VZW_NUMBER: ${{ secrets.VZW_NUMBER }} | |
| jobs: | |
| test: | |
| name: Smoke Test | |
| runs-on: ubuntu-latest | |
| env: | |
| BW_ACCOUNT_ID: ${{ secrets.BW_ACCOUNT_ID }} | |
| BW_VOICE_APPLICATION_ID: ${{ secrets.BW_VOICE_APPLICATION_ID }} | |
| BW_MESSAGING_APPLICATION_ID: ${{ secrets.BW_MESSAGING_APPLICATION_ID }} | |
| BW_NUMBER: ${{ secrets.BW_NUMBER }} | |
| MANTECA_ACTIVE_NUMBER: ${{ secrets.MANTECA_ACTIVE_NUMBER }} | |
| MANTECA_IDLE_NUMBER: ${{ secrets.MANTECA_IDLE_NUMBER }} | |
| MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_APPLICATION_ID }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: zulu | |
| java-version: 21 | |
| - name: Build Package and Test | |
| env: | |
| JAVA_VERSION: 21 | |
| RUNNER_OS: ubuntu-latest | |
| OPERATING_SYSTEM: ubuntu-latest | |
| DISTRIBUTION: zulu | |
| run: | | |
| mvn -B package --file pom.xml -DskipTests | |
| mvn test -Psmoke-tests | |
| shell: bash | |
| test_up: | |
| name: Smoke Test UP Account | |
| runs-on: ubuntu-latest | |
| env: | |
| BW_ACCOUNT_ID: ${{ secrets.BW_UP_ACCOUNT_ID }} | |
| BW_VOICE_APPLICATION_ID: ${{ secrets.BW_UP_VOICE_APPLICATION_ID }} | |
| BW_MESSAGING_APPLICATION_ID: ${{ secrets.BW_UP_MESSAGING_APPLICATION_ID }} | |
| BW_NUMBER: ${{ secrets.BW_UP_NUMBER }} | |
| MANTECA_ACTIVE_NUMBER: ${{ secrets.MANTECA_UP_ACTIVE_NUMBER }} | |
| MANTECA_IDLE_NUMBER: ${{ secrets.MANTECA_UP_IDLE_NUMBER }} | |
| MANTECA_APPLICATION_ID: ${{ secrets.MANTECA_UP_APPLICATION_ID }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: zulu | |
| java-version: 21 | |
| - name: Build Package and Test | |
| env: | |
| JAVA_VERSION: 21 | |
| RUNNER_OS: ubuntu-latest | |
| OPERATING_SYSTEM: ubuntu-latest | |
| DISTRIBUTION: zulu | |
| run: | | |
| mvn -B package --file pom.xml -DskipTests | |
| mvn test -Psmoke-tests | |
| shell: bash | |
| notify_for_failures: | |
| name: Notify for Failures | |
| needs: [test, test_up] | |
| if: failure() | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Notify Slack of Failures | |
| uses: Bandwidth/build-notify-slack-action@v2 | |
| with: | |
| job-status: failure | |
| slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
| slack-channel: ${{ secrets.SLACK_CHANNEL }} |