You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TEST_DEVICE_OUTPUTS_DIR="${TEST_DEVICE_OUTPUTS_DIR:-/sdcard/Download/test-outputs/attachments}"# Must match the path where e2e tests output their attachments
6
+
REPORT_DIR="${REPORT_DIR:-}"
7
+
8
+
while [[ "$#"-gt 0 ]];do
9
+
case$1in
10
+
--test-type)
11
+
if [[ -n"${2-}"&&"$2"=~ ^(app|mockapi|e2e)$ ]];then
12
+
TEST_TYPE="$2"
13
+
else
14
+
echo"Error: Bad or missing test type. Must be one of: app, mockapi, e2e"
15
+
exit 1
16
+
fi
17
+
shift 2
18
+
;;
19
+
*)
20
+
echo"Unknown argument: $1"
21
+
exit 1
22
+
;;
23
+
esac
24
+
done
25
+
26
+
if [[ -z$TEST_DEVICE_OUTPUTS_DIR ]];then
27
+
echo""
28
+
echo"Error: The variable TEST_DEVICE_OUTPUTS_DIR must be set."
29
+
exit 1
30
+
fi
31
+
32
+
if [[ -z$REPORT_DIR||!-d$REPORT_DIR ]];then
33
+
echo""
34
+
echo"Error: The variable REPORT_DIR must be set and the directory must exist."
35
+
exit 1
36
+
fi
37
+
38
+
echo"Collecting produced test attachments and logs..."
TEST_DEVICE_OUTPUTS_DIR="${TEST_DEVICE_OUTPUTS_DIR:-/sdcard/Download/test-outputs/attachments}"# Must match the path where e2e tests output their attachments
21
36
REPORT_DIR="${REPORT_DIR:-}"
22
37
23
38
while [[ "$#"-gt 0 ]];do
@@ -72,6 +87,7 @@ if [[ -z ${BILLING_FLAVOR-} ]]; then
Copy file name to clipboardexpand all lines: android/test/common/src/main/kotlin/net/mullvad/mullvadvpn/test/common/misc/CaptureScreenRecordingsExtension.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,6 @@ class CaptureScreenRecordingsExtension : BeforeEachCallback, AfterEachCallback {
Copy file name to clipboardexpand all lines: android/test/common/src/main/kotlin/net/mullvad/mullvadvpn/test/common/rule/CaptureScreenshotOnFailedTestRule.kt
Test artefacts are stored on the test device in `/sdcard/Download/test-attachments`. In CI this directory is cleared in between each test run, but note that when running tests locally the directory isn't cleared but already existing files are overwritten.
61
+
Test artefacts are stored on the test device in `/sdcard/Download/test-outputs`. In CI this directory is cleared in between each test run, but note that when running tests locally the directory isn't cleared but already existing files are overwritten.
0 commit comments