-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathmodal.shared.e2e-spec.ts
156 lines (123 loc) · 5.37 KB
/
modal.shared.e2e-spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import { AppiumDriver, createDriver } from "nativescript-dev-appium";
import { Screen } from "./screens/screen"
import { assertComponent, goBack, navigateToSecondComponent } from "./screens/shared-screen";
const homeComponent = "Home Component";
const roots = ["setFrameRootView", "setTabRootView"];
describe("modal-shared:", () => {
let driver: AppiumDriver;
let screen: Screen;
before(async () => {
driver = await createDriver();
screen = new Screen(driver);
});
roots.forEach(root => {
describe("Shared modal from home component and back", () => {
before(async () => {
await screen[root]();
});
beforeEach(async function () {
});
afterEach(async function () {
if (this.currentTest.state === "failed") {
await driver.logTestArtifacts(this.currentTest.title);
await driver.resetApp();
await screen[root]();
}
});
it("should find home component", async () => {
await assertComponent(driver, homeComponent);
});
it("should open/close shared modal from home component", async () => {
await screen.loadSharedModal(true);
await screen.closeModal();
});
it("should open/close shared modal from home component again", async () => {
await screen.loadSharedModal(true);
await screen.closeModal();
});
it("should open/close shared modal with presentation style from home component", async () => {
await screen.loadSharedModalWithPresentationStyle(true);
await screen.closeModal();
});
it("should find home component again", async () => {
await screen.loadedHome();
});
it("should navigate to second component", async () => {
await navigateToSecondComponent(driver);
});
it("should find second component", async () => {
await assertComponent(driver, "second component");
});
it("should open/close shared modal from second component", async () => {
await screen.loadSharedModal(true);
await screen.closeModal();
});
it("should find second component again", async () => {
await assertComponent(driver, "second component");
});
it("should navigate back to home component", async () => {
await goBack(driver);
await assertComponent(driver, homeComponent);
});
});
});
describe("modal-shared-different-component:", () => {
let driver: AppiumDriver;
let screen: Screen;
before(async () => {
driver = await createDriver();
screen = new Screen(driver);
});
roots.forEach(root => {
describe("Shared modal from different components", () => {
before(async () => {
driver = await createDriver();
await driver.resetApp();
});
after(async () => {
await driver.quit();
console.log("Quit driver!");
});
afterEach(async function () {
if (this.currentTest.state === "failed") {
await driver.logTestArtifacts(this.currentTest.title);
}
});
it("should find home component", async () => {
await screen.loadedHome();
});
it("should open/close shared modal from home component", async () => {
await screen.loadSharedModal(true);
await screen.closeModal();
});
it("should find home component again", async () => {
await screen.loadedHome();
});
it("should navigate to second component", async () => {
await navigateToSecondComponent(driver);
});
it("should find second component", async () => {
await assertComponent(driver, "second component");
});
it("should open/close shared modal from second component", async () => {
await screen.loadSharedModal(true);
await screen.closeModal();
});
it("should find second component again", async () => {
await assertComponent(driver, "second component");
});
it("should navigate back to home component", async () => {
await goBack(driver);
await screen.loadedHome();
});
it("should open/close shared modal from home component after manipulations with second", async () => {
await screen.loadSharedModal(true);
await screen.closeModal();
});
it("should find home component again", async () => {
await screen.loadedHome();
});
});
});
});
});