mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-15 20:50:42 +00:00
### Description - Changes running the E2E iOS tests from running in App Center to running in BrowserStack - Steps for running locally can be found in the OneNote ### Motivation and Context - Follow-up of #22117 - App Center (the previous platform for running E2E mobile tests) is getting deprecated in 2025 ### Misc info Additional build steps were required to get the necessary testing artifacts for BrowserStack. App Center consumed an entire folder, while BrowserStack requests the following: 1. a ZIP file of all the tests 2. an IPA file of the test app #### Flow Here is a rough outline of what is happening in the pipeline: 1. The build_and_assemble_apple_pods.py script builds the relevant frameworks (currently, this means packages for iOS and Mac) 4. The test_apple_packages.py script installs the necessary cocoapods for later steps 5. XCode task to build for testing builds the iOS target for the test app 6. Now that the test app and the tests have been built, we can zip them, creating the tests .zip file 7. To create the IPA file, we need to create a .plist XML file which is generated by the generate_plist.py script. - Attempts to use the Xcode@5 task to automatically generate the plist file failed. - Also, building for testing generates some plist files -- these cannot be used to export an IPA file. 8. We run the Xcode task to build an .xcarchive file, which is required for creating an IPA file. 9. We use xcodebuild in a script step to build an IPA file with the xcarchive and plist files from the last two steps. 10. Finally, we can run the tests using the BrowserStack script. --------- Co-authored-by: Scott McKay <skottmckay@gmail.com> Co-authored-by: Edward Chen <18449977+edgchen1@users.noreply.github.com>
160 lines
5.2 KiB
Python
160 lines
5.2 KiB
Python
import argparse
|
|
import os
|
|
import sys
|
|
import time
|
|
from pathlib import Path
|
|
|
|
import requests
|
|
|
|
script_description = """
|
|
After building ONNXRuntime for Android or iOS, use this script to upload the app and test files to BrowserStack then
|
|
run the tests on the specified devices.
|
|
|
|
Find the Android test app in the repo here (as of rel-1.19.2):
|
|
java/src/test/android
|
|
"""
|
|
|
|
|
|
def response_to_json(response):
|
|
response.raise_for_status()
|
|
response_json = response.json()
|
|
print(response_json)
|
|
print("-" * 30)
|
|
return response_json
|
|
|
|
|
|
def upload_apk_parse_json(post_url, apk_path, id, token):
|
|
with open(apk_path, "rb") as apk_file:
|
|
response = requests.post(post_url, files={"file": apk_file}, auth=(id, token), timeout=180)
|
|
return response_to_json(response)
|
|
|
|
|
|
def browserstack_build_request(devices, app_url, test_suite_url, test_platform, id, token):
|
|
headers = {}
|
|
|
|
json_data = {
|
|
"devices": devices,
|
|
"app": app_url,
|
|
"testSuite": test_suite_url,
|
|
}
|
|
|
|
build_response = requests.post(
|
|
f"https://api-cloud.browserstack.com/app-automate/{test_platform}/v2/build",
|
|
headers=headers,
|
|
json=json_data,
|
|
auth=(id, token),
|
|
timeout=180,
|
|
)
|
|
|
|
return response_to_json(build_response)
|
|
|
|
|
|
def build_query_loop(build_id, test_platform, id, token):
|
|
"""Called after a build is initiated on Browserstack. Repeatedly queries the REST endpoint to check for the
|
|
status of the tests in 30 second intervals.
|
|
"""
|
|
tests_status = "running"
|
|
|
|
while tests_status == "running":
|
|
time.sleep(30)
|
|
|
|
test_response = requests.get(
|
|
f"https://api-cloud.browserstack.com/app-automate/{test_platform}/v2/builds/{build_id}",
|
|
auth=(id, token),
|
|
timeout=30,
|
|
)
|
|
|
|
test_response_json = response_to_json(test_response)
|
|
tests_status = test_response_json["status"]
|
|
|
|
return tests_status
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# handle cli args
|
|
parser = argparse.ArgumentParser(script_description)
|
|
|
|
parser.add_argument(
|
|
"--test_platform", type=str, help="Testing platform", choices=["espresso", "xcuitest"], required=True
|
|
)
|
|
parser.add_argument(
|
|
"--app_path",
|
|
type=Path,
|
|
help=(
|
|
"Path to the app file. "
|
|
"For Android, typically, the app file (the APK) is in "
|
|
"{build_output_dir}/android_test/android/app/build/outputs/apk/debug/app-debug.apk"
|
|
". For iOS, you will have to build an IPA file from the test app, which is built from the .xcarchive path"
|
|
),
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
"--test_path",
|
|
type=Path,
|
|
help=(
|
|
"Path to the test suite file. "
|
|
"Typically, the test APK is in "
|
|
"{build_output_dir}/android_test/android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk"
|
|
". For iOS, you will have to create a .zip of the tests. After manually building the tests, the tests that you need to zip will be in {{Xcode DerivedData Folder Path}}/Build/Products"
|
|
),
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
"--devices",
|
|
type=str,
|
|
nargs="+",
|
|
help="List of devices to run the tests on. For more info, "
|
|
"see https://www.browserstack.com/docs/app-automate/espresso/specify-devices (Android) or https://www.browserstack.com/docs/app-automate/xcuitest/specify-devices (iOS)",
|
|
required=True,
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
try:
|
|
browserstack_id = os.environ["BROWSERSTACK_ID"]
|
|
browserstack_token = os.environ["BROWSERSTACK_TOKEN"]
|
|
except KeyError:
|
|
print("Please set the environment variables BROWSERSTACK_ID and BROWSERSTACK_TOKEN")
|
|
print(
|
|
"These values will be found at https://app-automate.browserstack.com/dashboard/v2 & clicking 'ACCESS KEY'"
|
|
)
|
|
sys.exit(1)
|
|
|
|
# Upload the app and test suites
|
|
upload_app_json = upload_apk_parse_json(
|
|
f"https://api-cloud.browserstack.com/app-automate/{args.test_platform}/v2/app",
|
|
args.app_path,
|
|
browserstack_id,
|
|
browserstack_token,
|
|
)
|
|
upload_test_json = upload_apk_parse_json(
|
|
f"https://api-cloud.browserstack.com/app-automate/{args.test_platform}/v2/test-suite",
|
|
args.test_path,
|
|
browserstack_id,
|
|
browserstack_token,
|
|
)
|
|
|
|
# Initiate build (send request to run the tests)
|
|
build_response_json = browserstack_build_request(
|
|
args.devices,
|
|
upload_app_json["app_url"],
|
|
upload_test_json["test_suite_url"],
|
|
args.test_platform,
|
|
browserstack_id,
|
|
browserstack_token,
|
|
)
|
|
|
|
# Get build status until the tests are no longer running
|
|
tests_status = build_query_loop(
|
|
build_response_json["build_id"], args.test_platform, browserstack_id, browserstack_token
|
|
)
|
|
|
|
test_suite_details_url = (
|
|
f"https://app-automate.browserstack.com/dashboard/v2/builds/{build_response_json['build_id']}"
|
|
)
|
|
|
|
print("=" * 30)
|
|
print("Test suite details: ", test_suite_details_url)
|
|
print("=" * 30)
|
|
if tests_status != "passed":
|
|
raise Exception(f"Tests failed. Go to {test_suite_details_url} for more details.")
|