Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix RuntimeTemplate #14861

Merged
merged 1 commit into from Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/RuntimeTemplate.js
Expand Up @@ -200,7 +200,7 @@ class RuntimeTemplate {

// when the first two args are expression, we need to prepend "" + to force string
// concatenation instead of number addition.
return typeof args[0] !== "string" && args[1] !== "string"
return typeof args[0] !== "string" && typeof args[1] !== "string"
? `"" + ${str}`
: str;
}
Expand Down
78 changes: 78 additions & 0 deletions test/RuntimeTemplate.unittest.js
@@ -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 */
});
});
});