-
-
Notifications
You must be signed in to change notification settings - Fork 620
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
86 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
packages/rspack/tests/configCases/builtin-swc-loader/source-map/a.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
let foo: string = "f1"; | ||
let bar: string = "b1"; | ||
let baz: string = "b2"; | ||
const boo = <string>"abc"; |
51 changes: 51 additions & 0 deletions
51
packages/rspack/tests/configCases/builtin-swc-loader/source-map/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
require("./a"); | ||
|
||
it("should generate correct sourceMap", async () => { | ||
const path = require("path"); | ||
const fs = require("fs"); | ||
const source = fs.readFileSync(__filename + ".map", "utf-8"); | ||
const map = JSON.parse(source); | ||
const sourceContent = fs.readFileSync( | ||
path.resolve(__dirname, "../a.ts"), | ||
"utf-8" | ||
); | ||
expect(map.sources).toContain("./a.ts"); | ||
expect(map.sourcesContent[1]).toEqual(sourceContent); | ||
|
||
checkStub("fo" + "o", sourceContent); | ||
checkStub("ba" + "r", sourceContent); | ||
checkStub("ba" + "z", sourceContent); | ||
checkStub(wrap("f" + 1), sourceContent); | ||
checkStub(wrap("b" + 1), sourceContent); | ||
checkStub(wrap("b" + 2), sourceContent); | ||
checkStub(wrap("ab" + "c"), sourceContent); | ||
}); | ||
|
||
const wrap = v => `"${v}"`; | ||
const checkStub = async (stub, sourceContent) => { | ||
const fs = require("fs"); | ||
const { SourceMapConsumer } = require("source-map"); | ||
|
||
const source = fs.readFileSync(__filename + ".map", "utf-8"); | ||
const map = JSON.parse(source); | ||
const consumer = await new SourceMapConsumer(map); | ||
const generated = fs.readFileSync(__filename, "utf-8"); | ||
const { line, column } = consumer.originalPositionFor( | ||
positionFor(generated, stub) | ||
); | ||
const { line: originalLine, column: originalColumn } = positionFor( | ||
sourceContent, | ||
stub | ||
); | ||
expect(line).toBe(originalLine); | ||
expect(column).toBe(originalColumn); | ||
}; | ||
|
||
const positionFor = (content, text) => { | ||
let lines = content.split(/\r?\n/); | ||
for (let i = 0; i < lines.length; i++) { | ||
const column = lines[i].indexOf(text); | ||
if (column >= 0) return { line: i + 1, column }; | ||
} | ||
return null; | ||
}; |
30 changes: 30 additions & 0 deletions
30
packages/rspack/tests/configCases/builtin-swc-loader/source-map/webpack.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
module.exports = { | ||
devtool: "source-map", | ||
externals: ["source-map"], | ||
externalsType: "commonjs", | ||
module: { | ||
rules: [ | ||
{ | ||
test: /\.ts$/, | ||
use: [ | ||
{ | ||
loader: "builtin:swc-loader", | ||
options: { | ||
jsc: { | ||
parser: { | ||
syntax: "typescript" | ||
} | ||
} | ||
} | ||
} | ||
], | ||
type: "javascript/auto" | ||
} | ||
] | ||
}, | ||
experiments: { | ||
rspackFuture: { | ||
disableTransformByDefault: true | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters