summaryrefslogtreecommitdiffstats
path: root/devtools/client/shared/source-map-loader/test/browser/browser_locations.js
blob: 4d43df5902911f1ed9c621c5f93c005864a2ef02 (plain)
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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Covert getOriginalLocation and getGeneratedLocation functions.

add_task(async function testGetOriginalLocation() {
  await fetchFixtureSourceMap("bundle");

  const generatedLocation = {
    sourceId: "bundle.js",
    line: 49,
  };

  const originalLocation = await gSourceMapLoader.getOriginalLocation(
    generatedLocation
  );
  Assert.deepEqual(
    originalLocation,
    {
      column: 0,
      line: 3,
      sourceId: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a",
      sourceUrl: "webpack:///entry.js",
    },
    "Mapped a generated location"
  );

  const originalLocation2 = await gSourceMapLoader.getOriginalLocation(
    originalLocation
  );
  Assert.deepEqual(originalLocation2, null, "No mapped location");

  gSourceMapLoader.clearSourceMaps();
  const originalLocation3 = await gSourceMapLoader.getOriginalLocation(
    generatedLocation
  );
  Assert.deepEqual(
    originalLocation3,
    null,
    "after clearing the source maps, the same generated location no longer maps"
  );
});

add_task(async function testGetGeneratedLocation() {
  await fetchFixtureSourceMap("bundle");

  const originalLocation = {
    column: 0,
    line: 3,
    sourceId: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a",
  };

  const source = {
    url: "webpack:///entry.js",
    id: "bundle.js/originalSource-fe2c41d3535b76c158e39ba4f3ff826a",
  };

  const generatedLocation = await gSourceMapLoader.getGeneratedLocation(
    originalLocation,
    source
  );
  Assert.deepEqual(
    generatedLocation,
    {
      sourceId: "bundle.js",
      line: 49,
      column: 0,
    },
    "Map an original location"
  );

  {
    gSourceMapLoader.clearSourceMaps();

    const secondGeneratedLocation = await gSourceMapLoader.getGeneratedLocation(
      originalLocation,
      source
    );
    Assert.deepEqual(
      secondGeneratedLocation,
      null,
      "after clearing source maps, the same location no longer maps to an original location"
    );
  }

  {
    // 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 fetchFixtureSourceMap("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 gSourceMapLoader.getOriginalLocation(genLoc1);
    const genLoc2 = await gSourceMapLoader.getGeneratedLocation(oLoc, ifSource);

    Assert.deepEqual(genLoc2, genLoc1, "location mapping is symmetric");
  }

  {
    // 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 fetchFixtureSourceMap("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 gSourceMapLoader.getOriginalLocation(genLoc1);
    const genLoc2 = await gSourceMapLoader.getGeneratedLocation(oLoc, ifSource);

    Assert.deepEqual(
      genLoc2,
      {
        sourceId: "if.out.js",
        column: 0,
        line: 8,
      },
      "undefined column is handled like 0 column"
    );
  }
});