Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2E test for Web #2195

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,53 @@ jobs:
path: build/Products
retention-days: 1

test-web:
name: Test on Web
runs-on: ubuntu-latest
needs: build

steps:
- name: Clone repository (only needed for the e2e directory)
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11

- name: Set up Chrome
uses: browser-actions/setup-chrome@v1

- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: maestro-cli-jdk11-run_id${{ github.run_id }}

- name: Add Maestro CLI executable to PATH
run: |
unzip maestro.zip -d maestro_extracted
echo "$PWD/maestro_extracted/maestro/bin" >> $GITHUB_PATH

- name: Check if Maestro CLI executable starts up
run: |
maestro --help
maestro --version

- name: Run tests
working-directory: ${{ github.workspace }}/e2e
timeout-minutes: 20
run: ./run_tests_web

- name: Upload ~/.maestro artifacts
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: maestro-root-dir-android
path: ~/.maestro
retention-days: 7
include-hidden-files: true

test-android:
name: Test on Android
runs-on: ubuntu-latest
Expand Down
75 changes: 75 additions & 0 deletions e2e/run_tests_web
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
#!/usr/bin/env sh
set -eu

# Runs all tests in the web directory.

command -v maestro >/dev/null 2>&1 || { echo "maestro is required" && exit 1; }

[ "$(basename "$PWD")" = "e2e" ] || { echo "must be run from e2e directory" && exit 1; }

ALL_PASS=true

_h1() {
printf "=>\n=> %s\n=>\n" "$1"
}

_h2() {
printf "==> [%s] %s\n" "$1" "$2"
}

_h3() {
printf "==> [%s] [%s] => %s\n" "$1" "$2" "$3"
}

platform="web"
exclude_tags="ai"

mkfifo pipe
trap 'rm -f pipe' EXIT

# Run passing tests
for workspace_dir in ./web/*; do
WORKSPACE_PASS=true
app_name="$(basename "$workspace_dir")"
_h1 "run tests for \"$app_name\" on platform \"$platform\""

###
### Run passing tests
###
_h2 "$app_name" "run passing tests"

while IFS= read -r line; do
_h3 "$app_name" "passing" "$line"
done < pipe &

maestro --verbose --platform "$platform" test --include-tags passing --exclude-tags "$exclude_tags" "$workspace_dir" 1>pipe 2>&1 || WORKSPACE_PASS=false

if [ "$WORKSPACE_PASS" = "false" ]; then
_h2 "$app_name" "FAIL! Expected all pass, but at least some failed instead"
ALL_PASS=false
fi

###
### Run failing tests
###
WORKSPACE_PASS=true # Reset for failing flows
_h2 "$app_name" "run failing tests"

while IFS= read -r line; do
_h3 "$app_name" "failing" "$line"
done < pipe &

maestro --verbose --platform "$platform" test --include-tags failing --exclude-tags "$exclude_tags" "$workspace_dir" 1>pipe 2>&1 && WORKSPACE_PASS=false

if [ "$WORKSPACE_PASS" = "false" ]; then
_h2 "$app_name" "FAIL! Expected all to fail, but at least some passed instead"
ALL_PASS=false
fi
done

if [ "$ALL_PASS" = "false" ]; then
_h1 "FAILURE: some tests failed!"
exit 1
else
_h1 "SUCCESS: all tests passed!"
fi
6 changes: 6 additions & 0 deletions e2e/web/wikipedia/failing.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
url: https://en.wikipedia.org
tags:
- failing
---
- launchApp
- assertVisible: 'ZZ_ Non-existent text'
16 changes: 16 additions & 0 deletions e2e/web/wikipedia/tour.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
url: https://en.wikipedia.org
tags:
- passing
---
- launchApp
- tapOn:
leftOf:
text: 'Donate'
index: 2
- inputText: 'Maestro'
- assertVisible: 'Title of respect given to a master musician'
- pressKey: 'Enter'
- assertVisible: 'https://en.wikipedia.org/wiki/Maestro'
- copyTextFrom:
id: 'firstHeading'
- assertTrue: ${maestro.copiedText == 'Maestro'}
Loading