index.test.js
1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'use strict';
var fs = require('fs');
var assert = require('assert');
var lineJSON = require('line-json');
var strip = require('../');
var dir = __dirname + '/cases/';
fs.readdirSync(dir).forEach(function (testCase) {
if (/\.input\.json$/.test(testCase)) {
test(testCase, function () {
var stem = testCase.replace(/\.input\.json$/, '.');
function test (name, options) {
var input = fs.readFileSync(dir + testCase, 'utf8');
input = lineJSON.parse(input);
var result = strip(input, options);
expect(result).toMatchSnapshot();
}
test('unbuffered');
test('buffered', { stripBuffered: true, stripUnbuffered: false });
test('both', { stripBuffered: true });
});
}
});
var edir = __dirname + '/errors/';
fs.readdirSync(edir).forEach(function (testCase) {
if (/\.input\.json$/.test(testCase)) {
test(testCase, function () {
var stem = testCase.replace(/\.input\.json$/, '.');
var input = fs.readFileSync(edir + testCase, 'utf8');
input = lineJSON.parse(input);
try {
strip(input);
throw new Error('Expected ' + testCase + ' to throw an exception.');
} catch (ex) {
if (!ex || !ex.code || ex.code.indexOf('PUG:') !== 0) throw ex;
expect({
msg: ex.msg,
code: ex.code,
line: ex.line
}).toMatchSnapshot();
}
});
}
});