forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocations.js
More file actions
146 lines (121 loc) · 3.89 KB
/
Copy pathlocations.js
File metadata and controls
146 lines (121 loc) · 3.89 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
/* 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/>. */
jest.mock("devtools-utils/src/network-request");
const {
getOriginalLocation,
getGeneratedLocation,
clearSourceMaps
} = require("../source-map");
const { setupBundleFixture } = require("./helpers");
describe("getOriginalLocation", async () => {
beforeEach(() => {
clearSourceMaps();
});
test("maps a generated location", async () => {
await setupBundleFixture("bundle");
const location = {
sourceId: "bundle.js",
line: 49
};
const originalLocation = await getOriginalLocation(location);
expect(originalLocation).toEqual({
column: 0,
line: 3,
sourceId: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a",
sourceUrl: "webpack:///entry.js"
});
});
test("does not map an original location", async () => {
const location = {
column: 0,
line: 3,
sourceId: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a",
sourceUrl: "webpack:///entry.js"
};
const originalLocation = await getOriginalLocation(location);
expect(originalLocation).toEqual(originalLocation);
});
});
describe("getGeneratedLocation", async () => {
beforeEach(() => {
clearSourceMaps();
});
test("maps an original location", async () => {
await setupBundleFixture("bundle");
const location = {
column: 0,
line: 3,
sourceId: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a"
};
const source = {
url: "webpack:///entry.js",
id: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a"
};
const generatedLocation = await getGeneratedLocation(location, source);
expect(generatedLocation).toEqual({
sourceId: "bundle.js",
line: 49,
column: 0
});
});
test("location mapping is symmetric", async () => {
// we expect symmetric mappings, which means that if
// we map a generated location to an original location,
// and then map it back, we should get the original generated value.
// e.g. G[8, 0] -> O[5, 4] -> G[8, 0]
await setupBundleFixture("if.out");
const genLoc1 = {
sourceId: "if.out.js",
column: 0,
line: 8
};
const ifSource = {
url: "if.js",
id: "if.out.js/originalSource-5ad3141023dae912c5f8833c7e03beeb"
};
const oLoc = await getOriginalLocation(genLoc1);
const genLoc2 = await getGeneratedLocation(oLoc, ifSource);
expect(genLoc2).toEqual({
sourceId: "if.out.js",
column: 0,
line: 8
});
});
test("undefined column is handled like 0 column", async () => {
// we expect that an undefined column will be handled like a
// location w/ column 0. e.g. G[8, u] -> O[5, 4] -> G[8, 0]
await setupBundleFixture("if.out");
const genLoc1 = {
sourceId: "if.out.js",
column: undefined,
line: 8
};
const ifSource = {
url: "if.js",
id: "if.out.js/originalSource-5ad3141023dae912c5f8833c7e03beeb"
};
const oLoc = await getOriginalLocation(genLoc1);
const genLoc2 = await getGeneratedLocation(oLoc, ifSource);
// console.log(formatLocations([genLoc1, oLoc, genLoc2]));
expect(genLoc2).toEqual({
sourceId: "if.out.js",
column: 0,
line: 8
});
});
test("does not map an original location", async () => {
const location = {
column: 0,
line: 3,
sourceId: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a",
sourceUrl: "webpack:///entry.js"
};
const source = {
url: "webpack:///entry.js",
id: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a"
};
const generatedLocation = await getGeneratedLocation(location, source);
expect(generatedLocation).toEqual(generatedLocation);
});
});