Skip to content

Commit

Permalink
Migrate mobile tests to BrowserStack (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
albho authored Nov 21, 2024
1 parent 9c921ec commit 95071bc
Show file tree
Hide file tree
Showing 13 changed files with 311 additions and 189 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Android AppCenter Tests
name: Android BrowserStack Tests

on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- 'binding/android/EagleTestApp/**'
- '.github/workflows/android-appcenter.yml'
- '.github/workflows/android-browserstack.yml'
- 'resources/audio_samples/**'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- 'binding/android/EagleTestApp/**'
- '.github/workflows/android-appcenter.yml'
- '.github/workflows/android-browserstack.yml'
- 'resources/audio_samples/**'

defaults:
Expand All @@ -21,17 +21,18 @@ defaults:

jobs:
build:
name: Run Android Tests on AppCenter
name: Run Android Tests on BrowserStack
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup Node.js environment
uses: actions/setup-node@v3

- name: Install AppCenter CLI
run: npm install -g appcenter-cli
- name: Installing Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- run:
pip3 install requests

- name: set up JDK 11
uses: actions/setup-java@v3
Expand Down Expand Up @@ -61,30 +62,29 @@ jobs:
- name: Build androidTest
run: ./gradlew assembleDebugAndroidTest

- name: Run tests on AppCenter
run: appcenter test run espresso
--token ${{secrets.APPCENTERAPITOKEN}}
--app "Picovoice/Eagle-Android"
--devices "Picovoice/android-min-max"
--app-path eagle-test-app/build/outputs/apk/debug/eagle-test-app-debug.apk
--test-series "eagle-android"
--locale "en_US"
--build-dir eagle-test-app/build/outputs/apk/androidTest/debug
- name: Run tests on BrowserStack
run: python3 ../../../script/automation/browserstack.py
--type espresso
--username "${{secrets.BROWSERSTACK_USERNAME}}"
--access_key "${{secrets.BROWSERSTACK_ACCESS_KEY}}"
--project_name "Eagle-Android"
--devices "android-min-max"
--app_path "eagle-test-app/build/outputs/apk/debug/eagle-test-app-debug.apk"
--test_path "eagle-test-app/build/outputs/apk/androidTest/debug/eagle-test-app-debug-androidTest.apk"

build-integ:
name: Run Android Integration Tests on AppCenter
name: Run Android Integration Tests on BrowserStack
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Node.js LTS
uses: actions/setup-node@v3
- name: Installing Python
uses: actions/setup-python@v5
with:
node-version: lts/*

- name: Install AppCenter CLI
run: npm install -g appcenter-cli
python-version: '3.10'
- run:
pip3 install requests

- name: set up JDK 11
uses: actions/setup-java@v3
Expand Down Expand Up @@ -117,12 +117,12 @@ jobs:
- name: Build androidTest
run: ./gradlew assembleReleaseAndroidTest -DtestBuildType=integ

- name: Run tests on AppCenter
run: appcenter test run espresso
--token ${{secrets.APPCENTERAPITOKEN}}
--app "Picovoice/Eagle-Android"
--devices "Picovoice/android-min-max"
--app-path eagle-test-app/build/outputs/apk/release/eagle-test-app-release.apk
--test-series "eagle-android"
--locale "en_US"
--build-dir eagle-test-app/build/outputs/apk/androidTest/release
- name: Run tests on BrowserStack
run: python3 ../../../script/automation/browserstack.py
--type espresso
--username "${{secrets.BROWSERSTACK_USERNAME}}"
--access_key "${{secrets.BROWSERSTACK_ACCESS_KEY}}"
--project_name "Eagle-Android-Integration"
--devices "android-min-max"
--app_path "eagle-test-app/build/outputs/apk/release/eagle-test-app-release.apk"
--test_path "eagle-test-app/build/outputs/apk/androidTest/release/eagle-test-app-release-androidTest.apk"
38 changes: 18 additions & 20 deletions .github/workflows/android-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,26 @@ defaults:

jobs:
build:
name: Run Android Speed Tests on AppCenter
name: Run Android Speed Tests on BrowserStack
runs-on: ubuntu-latest

strategy:
matrix:
device: [single-android, 32bit-android]
device: [ android-perf ]
include:
- device: single-android
- device: android-perf
enrollPerformanceThresholdSec: 0.6
procPerformanceThresholdSec: 0.6
- device: 32bit-android
enrollPerformanceThresholdSec: 5.5
procPerformanceThresholdSec: 5.5

steps:
- uses: actions/checkout@v3

- name: Setup Node.js environment
uses: actions/setup-node@v3

- name: Install AppCenter CLI
run: npm install -g appcenter-cli
- name: Installing Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- run:
pip3 install requests

- name: set up JDK 11
uses: actions/setup-java@v3
Expand Down Expand Up @@ -84,12 +82,12 @@ jobs:
- name: Build androidTest
run: ./gradlew assembleDebugAndroidTest

- name: Run tests on AppCenter
run: appcenter test run espresso
--token ${{secrets.APPCENTERAPITOKEN}}
--app "Picovoice/Eagle-Android"
--devices "Picovoice/${{ matrix.device }}"
--app-path eagle-test-app/build/outputs/apk/debug/eagle-test-app-debug.apk
--test-series "eagle-android"
--locale "en_US"
--build-dir eagle-test-app/build/outputs/apk/androidTest/debug
- name: Run tests on BrowserStack
run: python3 ../../../script/automation/browserstack.py
--type espresso
--username "${{secrets.BROWSERSTACK_USERNAME}}"
--access_key "${{secrets.BROWSERSTACK_ACCESS_KEY}}"
--project_name "Eagle-Android-Performance"
--devices "${{ matrix.device }}"
--app_path "eagle-test-app/build/outputs/apk/debug/eagle-test-app-debug.apk"
--test_path "eagle-test-app/build/outputs/apk/androidTest/debug/eagle-test-app-debug-androidTest.apk"
71 changes: 0 additions & 71 deletions .github/workflows/ios-appcenter.yml

This file was deleted.

79 changes: 79 additions & 0 deletions .github/workflows/ios-browserstack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: iOS BrowserStack Tests

on:
workflow_dispatch:
push:
branches: [ main ]
paths:
- '.github/workflows/ios-browserstack.yml'
- 'binding/ios/EagleAppTest/**'
- 'resources/audio_samples/**'
pull_request:
branches: [ main, 'v[0-9]+.[0-9]+' ]
paths:
- '.github/workflows/ios-browserstack.yml'
- 'binding/ios/EagleAppTest/**'
- 'resources/audio_samples/**'

defaults:
run:
working-directory: binding/ios/EagleAppTest

jobs:
build:
name: Run iOS Tests on BrowserStack
runs-on: macos-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Installing Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- run:
pip3 install requests

- name: Install Cocoapods
run: gem install cocoapods

- name: Make build dir
run: mkdir ddp

- name: Run Cocoapods
run: pod install

- name: Inject AccessKey
run: sed -i '.bak' 's:{TESTING_ACCESS_KEY_HERE}:${{secrets.PV_VALID_ACCESS_KEY}}:'
EagleAppTestUITests/BaseTest.swift

- name: XCode Build
run: xcrun xcodebuild build-for-testing
-configuration Debug
-workspace EagleAppTest.xcworkspace
-sdk iphoneos
-scheme EagleAppTest
-derivedDataPath ddp
CODE_SIGNING_ALLOWED=NO

- name: Generating ipa
run: cd ddp/Build/Products/Debug-iphoneos/ &&
mkdir Payload &&
cp -r EagleAppTest.app Payload &&
zip --symlinks -r EagleAppTest.ipa Payload &&
rm -r Payload

- name: Zipping Tests
run: cd ddp/Build/Products/Debug-iphoneos/ &&
zip --symlinks -r EagleAppTestUITests.zip EagleAppTestUITests-Runner.app

- name: Run tests on BrowserStack
run: python3 ../../../script/automation/browserstack.py
--type xcuitest
--username "${{secrets.BROWSERSTACK_USERNAME}}"
--access_key "${{secrets.BROWSERSTACK_ACCESS_KEY}}"
--project_name "Eagle-iOS"
--devices "ios-min-max"
--app_path "ddp/Build/Products/Debug-iphoneos/EagleAppTest.ipa"
--test_path "ddp/Build/Products/Debug-iphoneos/EagleAppTestUITests.zip"
3 changes: 0 additions & 3 deletions .github/workflows/ios-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
- name: Install Cocoapods
run: gem install cocoapods

- name: Install AppCenter CLI
run: npm install -g appcenter-cli

- name: Make build dir
run: mkdir ddp

Expand Down
Loading

0 comments on commit 95071bc

Please sign in to comment.