Files
meteor/tools/tests/compiler-plugins.js
2015-07-21 17:29:22 -07:00

316 lines
12 KiB
JavaScript

var _ = require('underscore');
var selftest = require('../selftest.js');
var files = require('../files.js');
import { getUrl } from '../http-helpers.js';
import { sleepMs } from '../utils.js';
var Sandbox = selftest.Sandbox;
var MONGO_LISTENING =
{ stdout: " [initandlisten] waiting for connections on port" };
function startRun(sandbox) {
var run = sandbox.run();
run.match("myapp");
run.match("proxy");
run.tellMongo(MONGO_LISTENING);
run.match("MongoDB");
return run;
};
// Tests the actual cache logic used by coffeescript.
selftest.define("compiler plugin caching - coffee", function () {
var s = new Sandbox({ fakeMongo: true });
s.createApp("myapp", "caching-coffee");
s.cd("myapp");
// Ask them to print out when they build a file (instead of using it from the
// cache) as well as when they load cache from disk.
s.set('METEOR_COFFEESCRIPT_CACHE_DEBUG', 't');
var run = startRun(s);
// First program built (server or web.browser) compiles everything.
run.match('CACHE(coffeescript): Ran (#1) on: ' + JSON.stringify(
['/f1.coffee', '/f2.coffee', '/f3.coffee', '/packages/local-pack/p.coffee']
));
// Second program doesn't need to compile anything because compilation works
// the same on both programs.
run.match("CACHE(coffeescript): Ran (#2) on: []");
// App prints this:
run.match("Coffeescript X is 2 Y is 1 FromPackage is 4");
s.write("f2.coffee", "share.Y = 'Y is 3'\n");
// Only recompiles f2.
run.match('CACHE(coffeescript): Ran (#3) on: ["/f2.coffee"]');
// And other program doesn't even need to do f2.
run.match("CACHE(coffeescript): Ran (#4) on: []");
// Program prints this:
run.match("Coffeescript X is 2 Y is 3 FromPackage is 4");
// Force a rebuild of the local package without actually changing the
// coffeescript file in it. This should not require us to coffee.compile
// anything (for either program).
s.append("packages/local-pack/package.js", "\n// foo\n");
run.match("CACHE(coffeescript): Ran (#5) on: []");
run.match("CACHE(coffeescript): Ran (#6) on: []");
run.match("Coffeescript X is 2 Y is 3 FromPackage is 4");
// But writing to the actual source file in the local package should
// recompile.
s.write("packages/local-pack/p.coffee", "FromPackage = 'FromPackage is 5'");
run.match('CACHE(coffeescript): Ran (#7) on: ["/packages/local-pack/p.coffee"]');
run.match('CACHE(coffeescript): Ran (#8) on: []');
run.match("Coffeescript X is 2 Y is 3 FromPackage is 5");
// We never should have loaded cache from disk, since we only made
// each compiler once and there were no cache files at this point.
run.forbid('CACHE(coffeescript): Loaded');
// Kill the run. Change one coffee file and re-run.
run.stop();
s.write("f2.coffee", "share.Y = 'Y is edited'\n");
run = startRun(s);
// This time there's a cache to load!
run.match('CACHE(coffeescript): Loaded /packages/local-pack/p.coffee');
run.match('CACHE(coffeescript): Loaded /f1.coffee');
run.match('CACHE(coffeescript): Loaded /f3.coffee');
// And we only need to re-compiler the changed file, even though we restarted.
run.match('CACHE(coffeescript): Ran (#1) on: ["/f2.coffee"]');
run.match('CACHE(coffeescript): Ran (#2) on: []');
run.match('Coffeescript X is 2 Y is edited FromPackage is 5');
run.stop();
});
// Tests the actual cache logic used by less.
selftest.define("compiler plugin caching - less", function () {
var s = new Sandbox({ fakeMongo: true });
s.createApp("myapp", "caching-less");
s.cd("myapp");
// Ask them to print out when they build a file (instead of using it from the
// cache) as well as when they load cache from disk.
s.set("METEOR_LESS_CACHE_DEBUG", "t");
var run = startRun(s);
// First program built (web.browser) compiles everything.
run.match('CACHE(less): Ran (#1) on: ' + JSON.stringify(
["/subdir/nested-root.less", "/top.less"]));
// There is no less.render execution in the server program, because it has
// archMatching:'web'. We'll see this more clearly when the next call later
// is "#2" --- we didn't miss a call!
// App prints this:
run.match("Hello world");
// Check that the CSS is what we expect.
var checkCSS = selftest.markStack(function (borderStyleMap) {
var builtBrowserProgramDir = files.pathJoin(
s.cwd, '.meteor', 'local', 'build', 'programs', 'web.browser');
var cssFile = _.find(
files.readdir(
files.pathJoin(s.cwd, '.meteor/local/build/programs/web.browser')),
function (path) {
return path.match(/\.css$/);
}
);
selftest.expectTrue(cssFile);
var actual = s.read(
files.pathJoin('.meteor/local/build/programs/web.browser', cssFile));
actual = actual.replace(/\s+/g, ' '); // simplify whitespace
var expected = _.map(borderStyleMap, function (style, className) {
return '.' + className + " { border-style: " + style + "; }";
}).join(' ');
selftest.expectEqual(actual, expected);
});
var expectedBorderStyles = {
el0: "dashed", el1: "dotted", el2: "solid", el3: "groove", el4: "ridge"};
checkCSS(expectedBorderStyles);
// Force a rebuild of the local package without actually changing the
// less file in it. This should not require us to less.render
// anything.
s.append("packages/local-pack/package.js", "\n// foo\n");
run.match('CACHE(less): Ran (#2) on: []');
run.match("Hello world");
// Writing to a single less file only re-renders the root that depends on it.
s.write('packages/local-pack/p.less', '@el4-style: inset;\n');
expectedBorderStyles.el4 = 'inset';
run.match('CACHE(less): Ran (#3) on: ["/top.less"]');
run.match("Client modified -- refreshing");
checkCSS(expectedBorderStyles);
// This works for changing a root too.
s.write('subdir/nested-root.less', '.el0 { border-style: double; }\n');
expectedBorderStyles.el0 = 'double';
run.match('CACHE(less): Ran (#4) on: ["/subdir/nested-root.less"]');
run.match("Client modified -- refreshing");
checkCSS(expectedBorderStyles);
// Adding a new root works too.
s.write('yet-another-root.less', '.el6 { border-style: solid; }\n');
expectedBorderStyles.el6 = 'solid';
run.match('CACHE(less): Ran (#5) on: ["/yet-another-root.less"]');
run.match("Client modified -- refreshing");
checkCSS(expectedBorderStyles);
// We never should have loaded cache from disk, since we only made
// each compiler once and there were no cache files at this point.
run.forbid('CACHE(less): Loaded');
// Kill the run. Change one file and re-run.
run.stop();
s.write('packages/local-pack/p.less', '@el4-style: double;\n');
expectedBorderStyles.el4 = 'double';
run = startRun(s);
// This time there's a cache to load! Note that for MultiFileCachingCompiler
// we load all the cache entries, even for the not-up-to-date file top.less,
// because we only key off of filename, not off of cache key.
run.match('CACHE(less): Loaded {}/subdir/nested-root.less');
run.match('CACHE(less): Loaded {}/top.less');
run.match('CACHE(less): Loaded {}/yet-another-root.less');
run.match('CACHE(less): Ran (#1) on: ["/top.less"]');
run.match('Hello world');
checkCSS(expectedBorderStyles);
s.write('bad-import.less', '@import "/foo/bad.less";\n');
run.match('Errors prevented startup');
run.match('bad-import.less:1: Unknown import: /foo/bad.less');
run.match('Waiting for file change');
run.stop();
});
// Tests that rebuilding a compiler plugin re-instantiates the source processor,
// but other changes don't.
selftest.define("compiler plugin caching - local plugin", function () {
var s = new Sandbox({ fakeMongo: true });
s.createApp("myapp", "local-compiler-plugin");
s.cd("myapp");
var run = startRun(s);
// The compiler gets used the first time...
run.match("PrintmeCompiler invocation 1");
// ... and the program runs the generated code.
run.match("PMC: Print out bar");
run.match("PMC: Print out foo");
s.write("quux.printme", "And print out quux");
// PrintmeCompiler gets reused.
run.match("PrintmeCompiler invocation 2");
// And the right output prints out
run.match("PMC: Print out bar");
run.match("PMC: Print out foo");
run.match("PMC: And print out quux");
// Restart meteor; see that the disk cache gets used.
run.stop();
run = startRun(s);
// Disk cache gets us up to 3.
run.match("PrintmeCompiler invocation 3");
// And the right output prints out
run.match("PMC: Print out bar");
run.match("PMC: Print out foo");
run.match("PMC: And print out quux");
// Edit the compiler itself.
s.write('packages/local-plugin/plugin.js',
s.read('packages/local-plugin/plugin.js').replace(/PMC/, 'pmc'));
// New PrintmeCompiler object, and empty disk cache dir.
run.match("PrintmeCompiler invocation 1");
// And the right output prints out (lower case now)
run.match("pmc: Print out bar");
run.match("pmc: Print out foo");
run.match("pmc: And print out quux");
run.stop();
});
// Test error on duplicate compiler plugins.
selftest.define("compiler plugins - duplicate extension", () => {
const s = new Sandbox({ fakeMongo: true });
s.createApp("myapp", "duplicate-compiler-extensions");
s.cd("myapp");
let run = startRun(s);
run.match('Errors prevented startup');
run.match('conflict: two packages');
run.match('trying to handle *.myext');
// Fix it by changing one extension.
s.write('packages/local-plugin/plugin.js',
s.read('packages/local-plugin/plugin.js').replace('myext', 'xext'));
run.match('Modified -- restarting');
run.stop();
});
// Test error when a source file no longer has an active plugin.
selftest.define("compiler plugins - inactive source", () => {
const s = new Sandbox({ fakeMongo: true });
// This app depends on the published package 'glasser:uses-sourcish', and
// contains a local package 'local-plugin'.
//
// glasser:uses-sourcish depends on local-plugin and contains a file
// 'foo.sourcish'. When glasser:uses-sourcish@0.0.1 was published, a local
// copy of 'local-plugin' had a plugin which called registerCompiler for the
// extension '*.sourcish', and so 'foo.sourcish' is in the published isopack
// as a source file. However, the copy of 'local-plugin' currently in the test
// app contains no plugins. So we hit this weird error.
s.createApp('myapp', 'uses-published-package-with-inactive-source');
s.cd('myapp');
let run = startRun(s);
run.match('Errors prevented startup');
run.match('no plugin found for foo.sourcish in glasser:use-sourcish');
run.match('none is now');
run.stop();
});
// Test error when the registerCompiler callback throws.
selftest.define("compiler plugins - compiler throws", () => {
const s = new Sandbox({ fakeMongo: true });
s.createApp('myapp', 'compiler-plugin-throws-on-instantiate');
s.cd('myapp');
const run = s.run('add', 'local-plugin');
run.matchErr('Errors while adding packages');
run.matchErr(
'While running registerCompiler callback in package local-plugin');
// XXX This is wrong! The path on disk is packages/local-plugin/plugin.js, but
// at some point we switched to the servePath which is based on the *plugin*'s
// "package" name.
run.matchErr('packages/compilePrintme/plugin.js:5:1: Error in my ' +
'registerCompiler callback!');
run.expectExit(1);
});
// Test that compiler plugins can add static assets. Also tests `filenames`
// option to registerCompiler.
selftest.define("compiler plugins - compiler addAsset", () => {
const s = new Sandbox({ fakeMongo: true });
s.createApp('myapp', 'compiler-plugin-add-asset');
s.cd('myapp');
const run = startRun(s);
// Test server-side asset.
run.match("extension is null"); // test getExtension -> null
run.match("Asset says Print out foo");
// Test client-side asset.
const body = getUrl('http://localhost:3000/foo.printme');
selftest.expectEqual(body, 'Print out foo\n');
run.stop();
});