Skip to content

Commit

Permalink
fix RuntimeTemplate
Browse files Browse the repository at this point in the history
  • Loading branch information
vankop committed Nov 29, 2021
1 parent f1e9221 commit c106e43
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 1 deletion.
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 */
});
});
});

0 comments on commit c106e43

Please sign in to comment.