forked from SheetJS/js-word
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
39 lines (36 loc) · 1.45 KB
/
test.js
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
/* vim: set ts=2: */
var XLS;
var fs = require('fs'), assert = require('assert');
describe('source', function() { it('should load', function() { XLS = require('./'); }); });
var files = (fs.existsSync('tests.lst') ? fs.readFileSync('tests.lst', 'utf-8').split("\n") : fs.readdirSync('test_files')).filter(function(x){return x.substr(-4)==".xls";});
function parsetest(x, wb) {
describe(x + ' should have all bits', function() {
var sname = './test_files/' + x + '.sheetnames';
it('should have all sheets', function() {
wb.SheetNames.forEach(function(y) { assert(wb.Sheets[y], 'bad sheet ' + y); });
});
it('should have the right sheet names', fs.existsSync(sname) ? function() {
var file = fs.readFileSync(sname, 'utf-8');
var names = wb.SheetNames.join("\n") + "\n";
assert.equal(file, names);
} : null);
});
describe(x + ' should generate correct output', function() {
wb.SheetNames.forEach(function(ws, i) {
var name = ('./test_files/' + x + '.' + i + '.csv');
it('#' + i + ' (' + ws + ')', fs.existsSync(name) ? function() {
var file = fs.readFileSync(name, 'utf-8');
var csv = XLS.utils.make_csv(wb.Sheets[ws]);
assert.equal(file.replace(/"/g,""), csv.replace(/"/g,""), "CSV badness");
} : null);
});
});
}
describe('should parse test files', function() {
files.forEach(function(x) {
it(x, x.substr(-8) == ".pending" ? null : function() {
var wb = XLS.readFile('./test_files/' + x);
parsetest(x, wb);
});
});
});