forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditor.spec.js
More file actions
332 lines (283 loc) · 9.1 KB
/
Copy pathEditor.spec.js
File metadata and controls
332 lines (283 loc) · 9.1 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
// @flow
import React from "react";
import { shallow } from "enzyme";
import Editor from "../index";
import type { Source, SourceWithContent } from "../../../types";
import { getDocument } from "../../../utils/editor/source-documents";
import * as asyncValue from "../../../utils/async-value";
function generateDefaults(overrides) {
return {
toggleBreakpoint: jest.fn(),
updateViewport: jest.fn(),
toggleDisabledBreakpoint: jest.fn(),
...overrides
};
}
function createMockEditor() {
return {
codeMirror: {
doc: {},
getOption: jest.fn(),
setOption: jest.fn(),
scrollTo: jest.fn(),
charCoords: ({ line, ch }) => ({ top: line, left: ch }),
getScrollerElement: () => ({ offsetWidth: 0, offsetHeight: 0 }),
getScrollInfo: () => ({
top: 0,
left: 0,
clientWidth: 0,
clientHeight: 0
}),
defaultCharWidth: () => 0,
defaultTextHeight: () => 0,
display: { gutters: { querySelector: jest.fn() } }
},
setText: jest.fn(),
on: jest.fn(),
off: jest.fn(),
createDocument: () => {
let val;
return {
getLine: line => "",
getValue: () => val,
setValue: newVal => (val = newVal)
};
},
replaceDocument: jest.fn(),
setMode: jest.fn()
};
}
function createMockSourceWithContent(
overrides: $Shape<
Source & {
loadedState: "loaded" | "loading" | "unloaded",
text: string,
contentType: ?string,
error: string,
isWasm: boolean
}
>
): SourceWithContent {
const {
loadedState = "loaded",
text = "the text",
contentType = undefined,
error = undefined,
...otherOverrides
} = overrides;
const source: Source = ({
id: "foo",
url: "foo",
...otherOverrides
}: any);
let content = null;
if (loadedState === "loaded") {
if (typeof text !== "string") {
throw new Error("Cannot create a non-text source");
}
content = error
? asyncValue.rejected(error)
: asyncValue.fulfilled({
type: "text",
value: text,
contentType: contentType || undefined
});
}
return {
source,
content
};
}
function render(overrides = {}) {
const props = generateDefaults(overrides);
const mockEditor = createMockEditor();
// $FlowIgnore
const component = shallow(<Editor.WrappedComponent {...props} />, {
context: {
shortcuts: { on: jest.fn() }
},
disableLifecycleMethods: true
});
return { component, props, mockEditor };
}
describe("Editor", () => {
describe("When empty", () => {
it("should render", async () => {
const { component } = render();
expect(component).toMatchSnapshot();
});
});
describe("When loading initial source", () => {
it("should show a loading message", async () => {
const { component, mockEditor } = render();
await component.setState({ editor: mockEditor });
component.setProps({
selectedSourceWithContent: {
source: { loadedState: "loading" },
content: null
}
});
expect(mockEditor.replaceDocument.mock.calls[0][0].getValue()).toBe(
"Loading…"
);
expect(mockEditor.codeMirror.scrollTo.mock.calls).toEqual([]);
});
});
describe("When loaded", () => {
it("should show text", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
loadedState: "loaded"
}),
selectedLocation: { sourceId: "foo", line: 3, column: 1 }
});
expect(mockEditor.setText.mock.calls).toEqual([["the text"]]);
expect(mockEditor.codeMirror.scrollTo.mock.calls).toEqual([[1, 2]]);
});
});
describe("When error", () => {
it("should show error text", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
loadedState: "loaded",
text: undefined,
error: "error text"
}),
selectedLocation: { sourceId: "bad-foo", line: 3, column: 1 }
});
expect(mockEditor.setText.mock.calls).toEqual([
["Error loading this URI: error text"]
]);
});
it("should show wasm error", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
loadedState: "loaded",
isWasm: true,
text: undefined,
error: "blah WebAssembly binary source is not available blah"
}),
selectedLocation: { sourceId: "bad-foo", line: 3, column: 1 }
});
expect(mockEditor.setText.mock.calls).toEqual([
["Please refresh to debug this module"]
]);
});
});
describe("When navigating to a loading source", () => {
it("should show loading message and not scroll", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
loadedState: "loaded"
}),
selectedLocation: { sourceId: "foo", line: 3, column: 1 }
});
// navigate to a new source that is still loading
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
id: "bar",
loadedState: "loading"
}),
selectedLocation: { sourceId: "bar", line: 1, column: 1 }
});
expect(mockEditor.replaceDocument.mock.calls[1][0].getValue()).toBe(
"Loading…"
);
expect(mockEditor.setText.mock.calls).toEqual([["the text"]]);
expect(mockEditor.codeMirror.scrollTo.mock.calls).toEqual([[1, 2]]);
});
it("should set the mode when symbols load", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
const selectedSourceWithContent = createMockSourceWithContent({
loadedState: "loaded",
contentType: "javascript"
});
await component.setProps({ ...props, selectedSourceWithContent });
const symbols = { hasJsx: true };
await component.setProps({
...props,
selectedSourceWithContent,
symbols
});
expect(mockEditor.setMode.mock.calls).toEqual([
[{ name: "javascript" }],
[{ name: "jsx" }]
]);
});
it("should not re-set the mode when the location changes", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
const selectedSourceWithContent = createMockSourceWithContent({
loadedState: "loaded",
contentType: "javascript"
});
await component.setProps({ ...props, selectedSourceWithContent });
// symbols are parsed
const symbols = { hasJsx: true };
await component.setProps({
...props,
selectedSourceWithContent,
symbols
});
// selectedLocation changes e.g. pausing/stepping
mockEditor.codeMirror.doc = getDocument(
selectedSourceWithContent.source.id
);
mockEditor.codeMirror.getOption = () => ({ name: "jsx" });
const selectedLocation = { sourceId: "foo", line: 4, column: 1 };
await component.setProps({
...props,
selectedSourceWithContent,
symbols,
selectedLocation
});
expect(mockEditor.setMode.mock.calls).toEqual([
[{ name: "javascript" }],
[{ name: "jsx" }]
]);
});
});
describe("When navigating to a loaded source", () => {
it("should show text and then scroll", async () => {
const { component, mockEditor, props } = render({});
await component.setState({ editor: mockEditor });
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
loadedState: "loading"
}),
selectedLocation: { sourceId: "foo", line: 1, column: 1 }
});
// navigate to a new source that is still loading
await component.setProps({
...props,
selectedSourceWithContent: createMockSourceWithContent({
loadedState: "loaded"
}),
selectedLocation: { sourceId: "foo", line: 1, column: 1 }
});
expect(mockEditor.replaceDocument.mock.calls[0][0].getValue()).toBe(
"Loading…"
);
expect(mockEditor.setText.mock.calls).toEqual([["the text"]]);
expect(mockEditor.codeMirror.scrollTo.mock.calls).toEqual([[1, 0]]);
});
});
});