mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
'use strict';
|
|
require('./util/patch-module');
|
|
|
|
var chai = require('chai');
|
|
chai.config.includeStack = true;
|
|
var path = require('path');
|
|
var compiler = require('../compiler');
|
|
var autotest = require('./autotest');
|
|
var fs = require('fs');
|
|
|
|
require('marko/node-require').install();
|
|
|
|
describe('inline', function() {
|
|
var autoTestDir = path.join(__dirname, 'autotests/inline');
|
|
|
|
autotest.scanDir(autoTestDir, function run(dir, helpers, done) {
|
|
var indexPath = path.join(dir, 'index.js');
|
|
var inlineCompiler = compiler.createInlineCompiler(indexPath);
|
|
|
|
var compilerOptions = { writeVersionComment: false };
|
|
var src = fs.readFileSync(indexPath, { encoding: 'utf8' });
|
|
|
|
src = src.replace(/marko`([^`]*)`/g, function(match, templateSrc) {
|
|
var compiled = inlineCompiler.compile(templateSrc, compilerOptions);
|
|
return compiled.code;
|
|
});
|
|
|
|
var staticCode = inlineCompiler.staticCode;
|
|
|
|
if (staticCode) {
|
|
src = staticCode + '\n\n' + src;
|
|
}
|
|
|
|
var outputFile = path.join(dir, 'index.generated.js');
|
|
fs.writeFileSync(outputFile, src, { encoding: 'utf8' });
|
|
|
|
var func = require(outputFile);
|
|
|
|
function handleOutput(result) {
|
|
helpers.compare(result.toString(), '.html');
|
|
done();
|
|
}
|
|
|
|
if (func.length === 1) {
|
|
func((err, result) => {
|
|
if (err) {
|
|
return done(err);
|
|
}
|
|
|
|
handleOutput(result);
|
|
});
|
|
} else {
|
|
let result = func();
|
|
handleOutput(result);
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|