4622309dc2
test case uses "nodeify" to convert the calls to TidyHtml back into nodeback because it integrates better with the test framework
70 lines
2 KiB
JavaScript
70 lines
2 KiB
JavaScript
var assert = require('assert')
|
|
os = require('os'),
|
|
fs = require('fs'),
|
|
path = require('path'),
|
|
TidyHtml = null,
|
|
Settings = null;
|
|
|
|
var npm = require("../../../../src/node_modules/npm/lib/npm.js");
|
|
var nodeify = require('../../../../src/node_modules/nodeify');
|
|
|
|
describe('tidyHtml', function() {
|
|
before(function(done) {
|
|
npm.load({}, function(err) {
|
|
assert.ok(!err);
|
|
TidyHtml = require('../../../../src/node/utils/TidyHtml');
|
|
Settings = require('../../../../src/node/utils/Settings');
|
|
return done()
|
|
});
|
|
});
|
|
|
|
function tidy(file, callback) {
|
|
return nodeify(TidyHtml.tidy(file), callback);
|
|
}
|
|
|
|
it('Tidies HTML', function(done) {
|
|
// If the user hasn't configured Tidy, we skip this tests as it's required for this test
|
|
if (!Settings.tidyHtml) {
|
|
this.skip();
|
|
}
|
|
|
|
// Try to tidy up a bad HTML file
|
|
const tmpDir = os.tmpdir();
|
|
|
|
var tmpFile = path.join(tmpDir, 'tmp_' + (Math.floor(Math.random() * 1000000)) + '.html')
|
|
fs.writeFileSync(tmpFile, '<html><body><p>a paragraph</p><li>List without outer UL</li>trailing closing p</p></body></html>');
|
|
tidy(tmpFile, function(err){
|
|
assert.ok(!err);
|
|
|
|
// Read the file again
|
|
var cleanedHtml = fs.readFileSync(tmpFile).toString();
|
|
|
|
var expectedHtml = [
|
|
'<title></title>',
|
|
'</head>',
|
|
'<body>',
|
|
'<p>a paragraph</p>',
|
|
'<ul>',
|
|
'<li>List without outer UL</li>',
|
|
'<li style="list-style: none">trailing closing p</li>',
|
|
'</ul>',
|
|
'</body>',
|
|
'</html>',
|
|
].join('\n');
|
|
assert.notStrictEqual(cleanedHtml.indexOf(expectedHtml), -1);
|
|
return done();
|
|
});
|
|
});
|
|
|
|
it('can deal with errors', function(done) {
|
|
// If the user hasn't configured Tidy, we skip this tests as it's required for this test
|
|
if (!Settings.tidyHtml) {
|
|
this.skip();
|
|
}
|
|
|
|
tidy('/some/none/existing/file.html', function(err) {
|
|
assert.ok(err);
|
|
return done();
|
|
});
|
|
});
|
|
});
|