forked from ChainSafe/dappeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userData.spec.ts
178 lines (148 loc) · 4.73 KB
/
userData.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
import fs from "fs";
import { expect } from "chai";
import {
DEFAULT_FLASK_USERDATA,
DEFAULT_METAMASK_USERDATA,
launch,
setupBootstrappedMetaMask,
setupMetaMask,
} from "../src";
import { getTemporaryUserDataDir } from "../src/setup/utils/getTemporaryUserDataDir";
import {
LOCAL_PREFUNDED_MNEMONIC,
PASSWORD,
SHORT_ACCOUNT_ADDRESS,
TestContext,
} from "./constant";
import { isUserDataTest, pause } from "./utils/utils";
describe("userData", function () {
this.timeout(120000);
const automation =
(process.env.AUTOMATION as "puppeteer" | "playwright") ?? "puppeteer";
const metaMaskOptions = {
seed: LOCAL_PREFUNDED_MNEMONIC,
password: PASSWORD,
};
beforeEach(function (this: TestContext) {
if (!isUserDataTest()) {
this.skip();
}
});
function isEmpty(dir: string): boolean {
return fs.readdirSync(dir).length === 0;
}
describe("MetaMask", function () {
let userDataDir: string;
before(function () {
userDataDir = getTemporaryUserDataDir();
});
after(function () {
fs.rmSync(userDataDir, { recursive: true, force: true });
});
it("should successfully store user data", async function (this: TestContext) {
const browser = await launch({ automation });
await setupMetaMask(browser, metaMaskOptions);
// give some pause to store state into files
await pause(5);
const isSuccess = browser.storeUserData(userDataDir);
await browser.close();
expect(isSuccess).to.be.true;
expect(isEmpty(userDataDir)).to.be.false;
});
it("should successfully launch from custom user folder", async function (this: TestContext) {
const browser = await launch({
automation,
userDataDir,
});
const metaMask = await setupBootstrappedMetaMask(
browser,
metaMaskOptions.password
);
const shortAddress = await metaMask.page.evaluate(() =>
document
.querySelector(".selected-account__address")
.innerHTML.substring(0, 12)
);
await browser.close();
expect(shortAddress).to.be.eq(SHORT_ACCOUNT_ADDRESS);
});
});
describe("Flask", function () {
let userDataDir: string;
before(function () {
userDataDir = getTemporaryUserDataDir();
});
after(function () {
fs.rmSync(userDataDir, { recursive: true, force: true });
});
it("should successfully store user data", async function (this: TestContext) {
const browser = await launch({
automation,
metaMaskFlask: true,
});
await setupMetaMask(browser, metaMaskOptions);
// give some pause to store state into files
await pause(5);
const isSuccess = browser.storeUserData(userDataDir);
await browser.close();
expect(isSuccess).to.be.true;
expect(isEmpty(userDataDir)).to.be.false;
});
it("should successfully launch from custom user folder", async function (this: TestContext) {
const browser = await launch({
automation,
metaMaskFlask: true,
userDataDir,
});
const metaMask = await setupBootstrappedMetaMask(
browser,
metaMaskOptions.password
);
const shortAddress = await metaMask.page.evaluate(() =>
document
.querySelector(".selected-account__address")
.innerHTML.substring(0, 12)
);
await browser.close();
expect(shortAddress).to.be.eq(SHORT_ACCOUNT_ADDRESS);
});
});
describe("Predefined", function () {
it("should successfully launch project's default MetaMask", async function (this: TestContext) {
const browser = await launch({
automation,
metaMaskFlask: false,
userDataDir: DEFAULT_METAMASK_USERDATA,
});
const metaMask = await setupBootstrappedMetaMask(
browser,
metaMaskOptions.password
);
const shortAddress = await metaMask.page.evaluate(() =>
document
.querySelector(".selected-account__address")
.innerHTML.substring(0, 12)
);
await browser.close();
expect(shortAddress).to.be.eq(SHORT_ACCOUNT_ADDRESS);
});
it("should successfully launch project's default Flask", async function (this: TestContext) {
const browser = await launch({
automation,
metaMaskFlask: true,
userDataDir: DEFAULT_FLASK_USERDATA,
});
const metaMask = await setupBootstrappedMetaMask(
browser,
metaMaskOptions.password
);
const shortAddress = await metaMask.page.evaluate(() =>
document
.querySelector(".selected-account__address")
.innerHTML.substring(0, 12)
);
await browser.close();
expect(shortAddress).to.be.eq(SHORT_ACCOUNT_ADDRESS);
});
});
});