StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
4 years ago
|
var test = require('tape');
|
||
|
var concat = require('concat-stream');
|
||
|
var quote = require('quote-stream');
|
||
|
var staticModule = require('../');
|
||
|
var fs = require('fs');
|
||
|
var path = require('path');
|
||
|
|
||
|
test('variable modules', function (t) {
|
||
|
t.plan(2);
|
||
|
|
||
|
var expected = [ 'beep boop!' ];
|
||
|
var sm = staticModule({
|
||
|
fs: {
|
||
|
readFileSync: function (file, enc) {
|
||
|
return fs.createReadStream(file).pipe(quote());
|
||
|
}
|
||
|
}
|
||
|
}, {
|
||
|
vars: { __dirname: path.join(__dirname, 'vars') },
|
||
|
varModules: { path: require('path') }
|
||
|
});
|
||
|
|
||
|
readStream('source.js').pipe(sm).pipe(concat(function (body) {
|
||
|
t.equal(
|
||
|
body.toString('utf8'),
|
||
|
'\nvar path = require(\'path\');'
|
||
|
+ '\nvar html = "beep boop";\nvar x = \'!\';'
|
||
|
+ '\nconsole.log(html + x);\n'
|
||
|
);
|
||
|
Function(['console','require'],body)({ log: log },require);
|
||
|
function log (msg) { t.equal(msg, expected.shift()) }
|
||
|
}));
|
||
|
});
|
||
|
|
||
|
function readStream (file) {
|
||
|
return fs.createReadStream(path.join(__dirname, 'varmod', file));
|
||
|
}
|