forked from electron/fiddle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.ts
119 lines (106 loc) · 2.95 KB
/
utils.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
import { toJS } from 'mobx';
const platform = process.platform;
export function overridePlatform(value: NodeJS.Platform) {
Object.defineProperty(process, 'platform', {
value,
writable: true,
});
}
export function resetPlatform() {
Object.defineProperty(process, 'platform', {
value: platform,
writable: true,
});
}
const arch = process.arch;
export function overrideArch(value: string) {
Object.defineProperty(process, 'arch', {
value,
writable: true,
});
}
export function resetArch() {
Object.defineProperty(process, 'arch', {
value: arch,
writable: true,
});
}
export function flushPromises() {
return new Promise((resolve) => setImmediate(resolve));
}
export function mockFetchOnce(text: string) {
(window.fetch as jest.Mock).mockImplementationOnce(() => {
return Promise.resolve({
text: jest.fn().mockResolvedValue(text),
json: jest.fn().mockResolvedValue(JSON.parse(text)),
});
});
}
export class FetchMock {
private readonly urls: Map<string, string> = new Map();
public add(url: string, content: string) {
this.urls.set(url, content);
}
constructor() {
window.fetch = jest.fn().mockImplementation((url: string) => {
const content = this.urls.get(url);
if (!content) {
console.trace('Unhandled mock URL:', url);
return {
ok: false,
};
}
return Promise.resolve({
text: jest.fn().mockImplementation(() => Promise.resolve(content)),
json: jest
.fn()
.mockImplementation(() => Promise.resolve(JSON.parse(content))),
ok: true,
});
});
}
}
// return an object containing props in 'a' that are different from in 'b'
export function objectDifference<Type>(a: Type, b: Type): Type {
const serialize = (input: any) => JSON.stringify(toJS(input));
const o = {};
for (const entry of Object.entries(a)) {
const key = entry[0];
const val = toJS(entry[1]);
if (serialize(val) == serialize(b[key])) continue;
o[key] = key === 'editorMosaic' ? objectDifference(val, b[key]) : toJS(val);
}
return o as Type;
}
/**
* Waits up to `timeout` msec for a test to pass.
*
* @return a promise that returns the test result on success, or rejects on timeout
* @param {() => any} test - function to test
* @param {Object} options
* @param {Number} [options.interval=100] - polling frequency, in msec
* @param {Number} [options.timeout=2000] - timeout interval, in msec
*/
export async function waitFor(
test: () => any,
options = {
interval: 100,
timeout: 2000,
},
): Promise<any> {
const { interval, timeout } = options;
let elapsed = 0;
return new Promise<void>((resolve, reject) => {
(function check() {
const result = test();
if (result) {
return resolve(result);
}
elapsed += interval;
if (elapsed >= timeout) {
return reject(`Timed out: ${timeout}ms`);
}
setTimeout(check, interval);
})();
});
}