-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14861 from webpack/fix-runtime-template
fix RuntimeTemplate
- Loading branch information
Showing
2 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
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
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,78 @@ | ||
"use strict"; | ||
|
||
const RuntimeTemplate = require("../lib/RuntimeTemplate"); | ||
const RequestShortener = require("../lib/RequestShortener"); | ||
|
||
describe("RuntimeTemplate.concatenation", () => { | ||
it("no args", () => { | ||
const runtimeTemplate = new RuntimeTemplate( | ||
undefined, | ||
{ environment: { templateLiteral: false } }, | ||
new RequestShortener(__dirname) | ||
); | ||
expect(runtimeTemplate.concatenation()).toBe('""'); | ||
}); | ||
|
||
it("1 arg", () => { | ||
const runtimeTemplate = new RuntimeTemplate( | ||
undefined, | ||
{ environment: { templateLiteral: false } }, | ||
new RequestShortener(__dirname) | ||
); | ||
expect(runtimeTemplate.concatenation({ expr: 1 })).toBe('"" + 1'); | ||
expect(runtimeTemplate.concatenation("str")).toBe('"str"'); | ||
}); | ||
|
||
it("es5", () => { | ||
const runtimeTemplate = new RuntimeTemplate( | ||
undefined, | ||
{ environment: { templateLiteral: false } }, | ||
new RequestShortener(__dirname) | ||
); | ||
|
||
expect( | ||
runtimeTemplate.concatenation({ expr: "__webpack__.p" }, "str/a") | ||
).toBe('__webpack__.p + "str/a"'); | ||
expect( | ||
runtimeTemplate.concatenation( | ||
{ expr: "__webpack__.p" }, | ||
{ expr: "str.a" }, | ||
"str" | ||
) | ||
).toBe('"" + __webpack__.p + str.a + "str"'); | ||
expect(runtimeTemplate.concatenation("a", "b", { expr: 1 })).toBe( | ||
'"a" + "b" + 1' | ||
); | ||
expect(runtimeTemplate.concatenation("a", { expr: 1 }, "b")).toBe( | ||
'"a" + 1 + "b"' | ||
); | ||
}); | ||
|
||
describe("es6", () => { | ||
const runtimeTemplate = new RuntimeTemplate( | ||
undefined, | ||
{ environment: { templateLiteral: true } }, | ||
new RequestShortener(__dirname) | ||
); | ||
|
||
it("should prefer shorten variant #1", () => { | ||
expect(runtimeTemplate.concatenation({ expr: 1 }, "a", { expr: 2 })).toBe( | ||
'1 + "a" + 2' | ||
); | ||
}); | ||
|
||
it("should prefer shorten variant #2", () => { | ||
expect( | ||
runtimeTemplate.concatenation({ expr: 1 }, "a", { expr: 2 }, "b") | ||
).toBe('1 + "a" + 2 + "b"'); | ||
}); | ||
|
||
it("should prefer shorten variant #3", () => { | ||
/* eslint-disable no-template-curly-in-string */ | ||
expect(runtimeTemplate.concatenation("a", { expr: 1 }, "b")).toBe( | ||
"`a${1}b`" | ||
); | ||
/* eslint-enable */ | ||
}); | ||
}); | ||
}); |