File: filterSourceMappingUrl.test.js

package info (click to toggle)
node-source-map-loader 4.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,500 kB
  • sloc: javascript: 2,040; makefile: 7
file content (100 lines) | stat: -rw-r--r-- 3,377 bytes parent folder | download
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
import {
  compile,
  getCodeFromBundle,
  getCompiler,
  getErrors,
  normalizeMap,
  getWarnings,
} from "./helpers";

describe("filterSourceMappingUrl option", () => {
  it("should work", async () => {
    expect.assertions(6);

    const testId = "external-source-map.js";
    const compiler = getCompiler(testId, {
      filterSourceMappingUrl: (sourceMappingURL, resourcePath) => {
        expect(sourceMappingURL).toBeDefined();
        expect(resourcePath).toBeDefined();

        return true;
      },
    });
    const stats = await compile(compiler);
    const codeFromBundle = getCodeFromBundle(stats, compiler);

    expect(codeFromBundle.code).toMatchSnapshot("code");
    expect(normalizeMap(codeFromBundle.map)).toMatchSnapshot("map");
    expect(getWarnings(stats)).toMatchSnapshot("warnings");
    expect(getErrors(stats)).toMatchSnapshot("errors");
  });

  it("should work with true value", async () => {
    const testId = "external-source-map.js";
    const compiler = getCompiler(testId, {
      filterSourceMappingUrl: () => true,
    });
    const stats = await compile(compiler);
    const codeFromBundle = getCodeFromBundle(stats, compiler);

    expect(codeFromBundle.code).toMatchSnapshot("code");
    expect(normalizeMap(codeFromBundle.map)).toMatchSnapshot("map");
    expect(getWarnings(stats)).toMatchSnapshot("warnings");
    expect(getErrors(stats)).toMatchSnapshot("errors");
  });

  it('should work with "skip" value', async () => {
    const testId = "http-source-map.js";
    const compiler = getCompiler(testId, {
      filterSourceMappingUrl: () => "skip",
    });
    const stats = await compile(compiler);
    const codeFromBundle = getCodeFromBundle(stats, compiler);

    expect(codeFromBundle.map).toBeUndefined();
    expect(codeFromBundle.code).toMatchSnapshot("code");
    expect(getWarnings(stats)).toMatchSnapshot("warnings");
    expect(getErrors(stats)).toMatchSnapshot("errors");
  });

  it('should work with "remove" value', async () => {
    const testId = "http-source-map.js";
    const compiler = getCompiler(testId, {
      filterSourceMappingUrl: () => "remove",
    });
    const stats = await compile(compiler);
    const codeFromBundle = getCodeFromBundle(stats, compiler);

    expect(codeFromBundle.map).toBeUndefined();
    expect(codeFromBundle.code).toMatchSnapshot("code");
    expect(getWarnings(stats)).toMatchSnapshot("warnings");
    expect(getErrors(stats)).toMatchSnapshot("errors");
  });

  it("should work with false value", async () => {
    const testId = "http-source-map.js";
    const compiler = getCompiler(testId, {
      filterSourceMappingUrl: () => false,
    });
    const stats = await compile(compiler);
    const codeFromBundle = getCodeFromBundle(stats, compiler);

    expect(codeFromBundle.map).toBeUndefined();
    expect(codeFromBundle.code).toMatchSnapshot("code");
    expect(getWarnings(stats)).toMatchSnapshot("warnings");
    expect(getErrors(stats)).toMatchSnapshot("errors");
  });

  it("should emit error", async () => {
    const testId = "external-source-map.js";
    const compiler = getCompiler(testId, {
      filterSourceMappingUrl: () => {
        throw new Error("error");
      },
    });
    const stats = await compile(compiler);

    expect(getWarnings(stats)).toMatchSnapshot("warnings");
    expect(getErrors(stats)).toMatchSnapshot("errors");
  });
});