195 lines
8.0 KiB
JavaScript
195 lines
8.0 KiB
JavaScript
var Uglify = require('../../');
|
|
var assert = require("assert");
|
|
var readFileSync = require("fs").readFileSync;
|
|
|
|
describe("minify", function() {
|
|
it("Should test basic sanity of minify with default options", function() {
|
|
var js = 'function foo(bar) { if (bar) return 3; else return 7; var u = not_called(); }';
|
|
var result = Uglify.minify(js, {fromString: true});
|
|
assert.strictEqual(result.code, 'function foo(n){return n?3:7}');
|
|
});
|
|
|
|
describe("keep_quoted_props", function() {
|
|
it("Should preserve quotes in object literals", function() {
|
|
var js = 'var foo = {"x": 1, y: 2, \'z\': 3};';
|
|
var result = Uglify.minify(js, {
|
|
fromString: true, output: {
|
|
keep_quoted_props: true
|
|
}});
|
|
assert.strictEqual(result.code, 'var foo={"x":1,y:2,"z":3};');
|
|
});
|
|
|
|
it("Should preserve quote styles when quote_style is 3", function() {
|
|
var js = 'var foo = {"x": 1, y: 2, \'z\': 3};';
|
|
var result = Uglify.minify(js, {
|
|
fromString: true, output: {
|
|
keep_quoted_props: true,
|
|
quote_style: 3
|
|
}});
|
|
assert.strictEqual(result.code, 'var foo={"x":1,y:2,\'z\':3};');
|
|
});
|
|
|
|
it("Should not preserve quotes in object literals when disabled", function() {
|
|
var js = 'var foo = {"x": 1, y: 2, \'z\': 3};';
|
|
var result = Uglify.minify(js, {
|
|
fromString: true, output: {
|
|
keep_quoted_props: false,
|
|
quote_style: 3
|
|
}});
|
|
assert.strictEqual(result.code, 'var foo={x:1,y:2,z:3};');
|
|
});
|
|
});
|
|
|
|
describe("mangleProperties", function() {
|
|
it("Shouldn't mangle quoted properties", function() {
|
|
var js = 'a["foo"] = "bar"; a.color = "red"; x = {"bar": 10};';
|
|
var result = Uglify.minify(js, {
|
|
fromString: true,
|
|
compress: {
|
|
properties: false
|
|
},
|
|
mangleProperties: {
|
|
ignore_quoted: true
|
|
},
|
|
output: {
|
|
keep_quoted_props: true,
|
|
quote_style: 3
|
|
}
|
|
});
|
|
assert.strictEqual(result.code,
|
|
'a["foo"]="bar",a.a="red",x={"bar":10};');
|
|
});
|
|
});
|
|
|
|
describe("inSourceMap", function() {
|
|
it("Should read the given string filename correctly when sourceMapIncludeSources is enabled (#1236)", function() {
|
|
var result = Uglify.minify('./test/input/issue-1236/simple.js', {
|
|
outSourceMap: "simple.min.js.map",
|
|
inSourceMap: "./test/input/issue-1236/simple.js.map",
|
|
sourceMapIncludeSources: true
|
|
});
|
|
|
|
var map = JSON.parse(result.map);
|
|
|
|
assert.equal(map.file, 'simple.min.js');
|
|
assert.equal(map.sourcesContent.length, 1);
|
|
assert.equal(map.sourcesContent[0],
|
|
'let foo = x => "foo " + x;\nconsole.log(foo("bar"));');
|
|
});
|
|
it("Should process inline source map", function() {
|
|
var code = Uglify.minify("./test/input/issue-520/input.js", {
|
|
inSourceMap: "inline",
|
|
sourceMapInline: true
|
|
}).code + "\n";
|
|
assert.strictEqual(code, readFileSync("test/input/issue-520/output.js", "utf8"));
|
|
});
|
|
it("Should warn for missing inline source map", function() {
|
|
var warn_function = Uglify.AST_Node.warn_function;
|
|
var warnings = [];
|
|
Uglify.AST_Node.warn_function = function(txt) {
|
|
warnings.push(txt);
|
|
};
|
|
try {
|
|
var result = Uglify.minify("./test/input/issue-1323/sample.js", {
|
|
inSourceMap: "inline",
|
|
mangle: false,
|
|
});
|
|
assert.strictEqual(result.code, "var bar=function(){function foo(bar){return bar}return foo}();");
|
|
assert.strictEqual(warnings.length, 1);
|
|
assert.strictEqual(warnings[0], "inline source map not found");
|
|
} finally {
|
|
Uglify.AST_Node.warn_function = warn_function;
|
|
}
|
|
});
|
|
it("Should fail with multiple input and inline source map", function() {
|
|
assert.throws(function() {
|
|
Uglify.minify([
|
|
"./test/input/issue-520/input.js",
|
|
"./test/input/issue-520/output.js"
|
|
], {
|
|
inSourceMap: "inline",
|
|
sourceMapInline: true
|
|
});
|
|
});
|
|
});
|
|
it("Should fail with SpiderMonkey and inline source map", function() {
|
|
assert.throws(function() {
|
|
Uglify.minify("./test/input/issue-520/input.js", {
|
|
inSourceMap: "inline",
|
|
sourceMapInline: true,
|
|
spidermonkey: true
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("sourceMapInline", function() {
|
|
it("should append source map to output js when sourceMapInline is enabled", function() {
|
|
var result = Uglify.minify('var a = function(foo) { return foo; };', {
|
|
fromString: true,
|
|
sourceMapInline: true
|
|
});
|
|
var code = result.code;
|
|
assert.strictEqual(code, "var a=function(n){return n};\n" +
|
|
"//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIj8iXSwibmFtZXMiOlsiYSIsImZvbyJdLCJtYXBwaW5ncyI6IkFBQUEsR0FBSUEsR0FBSSxTQUFTQyxHQUFPLE1BQU9BIn0=");
|
|
});
|
|
it("should not append source map to output js when sourceMapInline is not enabled", function() {
|
|
var result = Uglify.minify('var a = function(foo) { return foo; };', {
|
|
fromString: true
|
|
});
|
|
var code = result.code;
|
|
assert.strictEqual(code, "var a=function(n){return n};");
|
|
});
|
|
});
|
|
|
|
describe("#__PURE__", function() {
|
|
it("should drop #__PURE__ hint after use", function() {
|
|
var result = Uglify.minify('//@__PURE__ comment1 #__PURE__ comment2\n foo(), bar();', {
|
|
fromString: true,
|
|
output: {
|
|
comments: "all",
|
|
beautify: false,
|
|
}
|
|
});
|
|
var code = result.code;
|
|
assert.strictEqual(code, "// comment1 comment2\nbar();");
|
|
});
|
|
it("should not drop #__PURE__ hint if function is retained", function() {
|
|
var result = Uglify.minify("var a = /*#__PURE__*/(function(){ foo(); })();", {
|
|
fromString: true,
|
|
output: {
|
|
comments: "all",
|
|
beautify: false,
|
|
}
|
|
});
|
|
var code = result.code;
|
|
assert.strictEqual(code, "var a=/*#__PURE__*/function(){foo()}();");
|
|
})
|
|
});
|
|
|
|
describe("JS_Parse_Error", function() {
|
|
it("should throw syntax error", function() {
|
|
assert.throws(function() {
|
|
Uglify.minify("function f(a{}", { fromString: true });
|
|
}, function(err) {
|
|
assert.ok(err instanceof Error);
|
|
assert.strictEqual(err.stack.split(/\n/)[0], "SyntaxError: Unexpected token punc «{», expected punc «,»");
|
|
assert.strictEqual(err.filename, 0);
|
|
assert.strictEqual(err.line, 1);
|
|
assert.strictEqual(err.col, 12);
|
|
return true;
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("Compressor", function() {
|
|
it("should be backward compatible with ast.transform(compressor)", function() {
|
|
var ast = Uglify.parse("function f(a){for(var i=0;i<a;i++)console.log(i)}");
|
|
ast.figure_out_scope();
|
|
ast = ast.transform(Uglify.Compressor());
|
|
assert.strictEqual(ast.print_to_string(), "function f(a){for(var i=0;i<a;i++)console.log(i)}");
|
|
});
|
|
})
|
|
|
|
});
|