Skip to content
This repository was archived by the owner on Dec 21, 2022. It is now read-only.

Commit 830fb63

Browse files
committed
test(): fix setup
1 parent be9f281 commit 830fb63

6 files changed

+57
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ detox/apps
1414
detox/*.log
1515
**/results
1616
mendixProject
17+
**/tests/diffs
1718
**/screenshot
1819
**/screenshot-results
1920
**/tests/testProject

detox/detox.config.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const ANDROID_SDK_VERSION = 31;
1+
const ANDROID_SDK_VERSION = "31";
22
const ANDROID_DEVICE_TYPE = "pixel";
3-
const IOS_SDK_VERSION = 15;
4-
const IOS_DEVICE_TYPE = "iPhone 13 Pro Max";
3+
const IOS_SDK_VERSION = "15.2";
4+
const IOS_DEVICE_TYPE = "iPhone 13";
55

66
module.exports = {
77
ANDROID_SDK_VERSION,
@@ -27,13 +27,15 @@ module.exports = {
2727
device: {
2828
type: IOS_DEVICE_TYPE,
2929
os: `iOS ${IOS_SDK_VERSION}`
30+
// name: `NATIVE_${IOS_DEVICE_TYPE}_${IOS_SDK_VERSION}`
3031
}
3132
},
3233
android: {
3334
type: "android.emulator",
3435
device: {
3536
avdName: `NATIVE_${ANDROID_DEVICE_TYPE}_${ANDROID_SDK_VERSION}`
3637
}
38+
// bootArgs: "-skin 1080x1920"
3739
}
3840
},
3941
configurations: {

detox/jest.detox.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
reporters: ["detox/runners/jest/streamlineReporter"],
44
rootDir: process.cwd(),
55
setupFilesAfterEnv: [`${__dirname}/jest.detox.startup.js`],
6-
testMatch: ["<rootDir>/**/e2e/*.spec.{js,jsx,ts,tsx}"],
6+
testMatch: ["<rootDir>/e2e/specs/**/*.spec.{js,jsx,ts,tsx}"],
77
testPathIgnorePatterns: ["<rootDir>/dist", "<rootDir>/node_modules"],
88
testEnvironment: "node",
99
verbose: true,

detox/jest.detox.startup.js

+43-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ const specReporter = require("detox/runners/jest/specReporter");
44
const config = require("./detox.config");
55
const { toMatchImageSnapshot } = require("jest-image-snapshot");
66
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");
79

810
jest.setTimeout(300000);
911
jasmine.getEnv().addReporter(adapter);
@@ -13,13 +15,24 @@ expect.extend({
1315
toMatchImageSnapshot(screenshot, options = {}) {
1416
const { currentTestName } = this;
1517
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);
1829

1930
return toMatchImageSnapshot.call(this, screenshot, {
2031
customDiffConfig: { threshold: 0.15 },
2132
customDiffDir,
2233
customSnapshotsDir,
34+
failureThreshold: 10,
35+
failureThresholdType: "pixel",
2336
customSnapshotIdentifier: ({ counter }) => `${currentTestName} ${counter}`,
2437
...options
2538
});
@@ -39,6 +52,7 @@ beforeAll(async () => {
3952
// JS actions
4053
permissions: { faceid: "YES", location: "inuse", camera: "YES", photos: "YES", notifications: "YES" }
4154
});
55+
await setDemoMode();
4256

4357
if (device.getPlatform() === "ios") {
4458
await prepDeveloperApp("localhost", 8080);
@@ -69,3 +83,30 @@ async function prepDeveloperApp(url, port) {
6983
await element(by.id("text_input_runtime_url")).tapReturnKey();
7084
await device.setURLBlacklist([]);
7185
}
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+
}

detox/scripts/setup-ios.js

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const { rmSync } = require("fs");
33
const { promisify } = require("util");
44
const { join } = require("path");
55
const { downloadFile, execCommand } = require("./helpers");
6+
// const { IOS_DEVICE_TYPE, IOS_SDK_VERSION } = require("../detox.config");
67

78
main().catch(e => {
89
console.error(e);
@@ -30,5 +31,10 @@ async function main() {
3031
console.log("Installing simutils...");
3132
execCommand("brew tap wix/brew && brew install applesimutils");
3233

34+
// console.log("Creating iOS simulator...");
35+
// const name = `NATIVE_${IOS_DEVICE_TYPE}_${IOS_SDK_VERSION}`;
36+
// execCommand(`xcrun simctl delete '${name}'`, `Invalid device: ${name}`);
37+
// execCommand(`xcrun simctl create '${name}' '${IOS_DEVICE_TYPE}' 'iOS${IOS_SDK_VERSION}'`);
38+
3339
console.log("Done!");
3440
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
"@types/jest-image-snapshot": "^4.3.1",
6161
"@types/mime": "^2.0.3",
6262
"@types/node": "^14.14.6",
63-
"@types/shelljs": "^0.8.9",
6463
"@types/react": "~17.0.1",
6564
"@types/react-dom": "~17.0.1",
6665
"@types/react-native": "~0.63.30",
6766
"@types/react-native-vector-icons": "^6.4.6",
6867
"@types/react-test-renderer": "~17.0.1",
68+
"@types/shelljs": "^0.8.9",
6969
"@types/xml2js": "^0.4.5",
7070
"cross-env": "^7.0.2",
7171
"deepmerge": "^4.2.2",

0 commit comments

Comments
 (0)