@@ -4,6 +4,8 @@ const specReporter = require("detox/runners/jest/specReporter");
4
4
const config = require ( "./detox.config" ) ;
5
5
const { toMatchImageSnapshot } = require ( "jest-image-snapshot" ) ;
6
6
const { join, resolve } = require ( "path" ) ;
7
+ const { execSync } = require ( "child_process" ) ;
8
+ const { ANDROID_DEVICE_TYPE , ANDROID_SDK_VERSION , IOS_SDK_VERSION , IOS_DEVICE_TYPE } = require ( "./detox.config" ) ;
7
9
8
10
jest . setTimeout ( 300000 ) ;
9
11
jasmine . getEnv ( ) . addReporter ( adapter ) ;
@@ -13,13 +15,24 @@ expect.extend({
13
15
toMatchImageSnapshot ( screenshot , options = { } ) {
14
16
const { currentTestName } = this ;
15
17
const platform = device . getPlatform ( ) ;
16
- const customSnapshotsDir = join ( resolve ( "./" ) , "image-snapshots" , platform , device . name ) ;
17
- const customDiffDir = join ( resolve ( "./" ) , "image-snapshots/results" , platform , device . name ) ;
18
+ let type ;
19
+ let sdk ;
20
+ if ( platform === "ios" ) {
21
+ type = IOS_DEVICE_TYPE ;
22
+ sdk = IOS_SDK_VERSION ;
23
+ } else {
24
+ type = ANDROID_DEVICE_TYPE ;
25
+ sdk = ANDROID_SDK_VERSION ;
26
+ }
27
+ const customSnapshotsDir = join ( resolve ( "./" ) , "e2e" , "images" , platform , sdk , type ) ;
28
+ const customDiffDir = join ( resolve ( "./" ) , "e2e" , "diffs" , platform , sdk , type ) ;
18
29
19
30
return toMatchImageSnapshot . call ( this , screenshot , {
20
31
customDiffConfig : { threshold : 0.15 } ,
21
32
customDiffDir,
22
33
customSnapshotsDir,
34
+ failureThreshold : 10 ,
35
+ failureThresholdType : "pixel" ,
23
36
customSnapshotIdentifier : ( { counter } ) => `${ currentTestName } ${ counter } ` ,
24
37
...options
25
38
} ) ;
@@ -39,6 +52,7 @@ beforeAll(async () => {
39
52
// JS actions
40
53
permissions : { faceid : "YES" , location : "inuse" , camera : "YES" , photos : "YES" , notifications : "YES" }
41
54
} ) ;
55
+ await setDemoMode ( ) ;
42
56
43
57
if ( device . getPlatform ( ) === "ios" ) {
44
58
await prepDeveloperApp ( "localhost" , 8080 ) ;
@@ -69,3 +83,30 @@ async function prepDeveloperApp(url, port) {
69
83
await element ( by . id ( "text_input_runtime_url" ) ) . tapReturnKey ( ) ;
70
84
await device . setURLBlacklist ( [ ] ) ;
71
85
}
86
+
87
+ async function setDemoMode ( ) {
88
+ if ( device . getPlatform ( ) === "ios" ) {
89
+ const type = device . name . substring ( device . name . indexOf ( "(" ) + 1 , device . name . lastIndexOf ( ")" ) ) ;
90
+ execSync (
91
+ `xcrun simctl status_bar "${ type } " override --time "12:00" --batteryState charged --batteryLevel 100 --wifiBars 3 --cellularMode active --cellularBars 4`
92
+ ) ;
93
+ } else {
94
+ const id = device . id ;
95
+ // enter demo mode
96
+ execSync ( `adb -s ${ id } shell settings put global sysui_demo_allowed 1` ) ;
97
+ // display time 12:00
98
+ execSync ( `adb -s ${ id } shell am broadcast -a com.android.systemui.demo -e command clock -e hhmm 1200` ) ;
99
+ // Display full mobile data with 4g type and no wifi
100
+ execSync (
101
+ `adb -s ${ id } shell am broadcast -a com.android.systemui.demo -e command network -e mobile show -e level 4 -e datatype 4g -e wifi false`
102
+ ) ;
103
+ // Hide notifications
104
+ execSync (
105
+ `adb -s ${ id } shell am broadcast -a com.android.systemui.demo -e command notifications -e visible false`
106
+ ) ;
107
+ // Show full battery but not in charging state
108
+ execSync (
109
+ `adb -s ${ id } shell am broadcast -a com.android.systemui.demo -e command battery -e plugged false -e level 100`
110
+ ) ;
111
+ }
112
+ }
0 commit comments