-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd06096
commit bd5893b
Showing
4 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
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 |
This file contains 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
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' |
This file contains 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
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'} |