SheetJS
e1c9c5e5cd
- normalized crc iteration logic - added browser demo - added command line tool crc32 - fixed unicode baseline script (node 6 changed default array printing) - fixed performance tests (benchmark module changed behavior) - updated travis versions for test - miscellaneous adjustments to tooling
67 lines
2.4 KiB
JavaScript
67 lines
2.4 KiB
JavaScript
/* vim: set ts=2: */
|
|
var X;
|
|
if(typeof require !== 'undefined') {
|
|
assert = require('assert');
|
|
describe('source',function(){it('should load',function(){X=require('./');});});
|
|
bits = require('./misc/bits.js');
|
|
crc32table = require('./misc/table.js');
|
|
fs = require("fs");
|
|
} else { X = CRC32; }
|
|
|
|
function readlines(f) { return fs.readFileSync(f, "ascii").split("\n"); }
|
|
|
|
describe('crc32 table', function() {
|
|
it('should match fixed table', function() {
|
|
var overflow = 0;
|
|
for(var i = 0; i != crc32table.length; ++i) {
|
|
assert.equal(crc32table[i]|0, X.table[i]);
|
|
if(crc32table[i] !== X.table[i]) ++overflow;
|
|
}
|
|
assert.equal(overflow, 128);
|
|
});
|
|
});
|
|
|
|
describe('crc32 bits', function() {
|
|
bits.forEach(function(i) {
|
|
var msg = i[0], l = i[0].length, L = i[1]|0;
|
|
if(l > 20) msg = i[0].substr(0,5) + "...(" + l + ")..." + i[0].substr(-5);
|
|
it(msg, function() {
|
|
if(i[2] === 1) assert.equal(X.bstr(i[0]), L);
|
|
assert.equal(X.str(i[0]), i[1]|0);
|
|
if(typeof Buffer !== 'undefined') assert.equal(X.buf(new Buffer(i[0])), L);
|
|
});
|
|
});
|
|
});
|
|
if(typeof require !== 'undefined') describe("unicode", function() {
|
|
if(!fs.existsSync("./test_files/uccat.txt")) return;
|
|
var uccat = readlines("./test_files/uccat.txt");
|
|
uccat.forEach(function(cat) {
|
|
it("Category " + cat, function() {
|
|
if(!fs.existsSync("./test_files/baseline." + cat + ".txt")) return;
|
|
var corpus = readlines("./test_files/baseline." + cat + ".txt");
|
|
var uctable = require("./test_files/uctable." + cat + ".js");
|
|
for(var ucidx = 0; ucidx < uctable.length; ++ucidx) {
|
|
var c = uctable[ucidx];
|
|
/* since the baselines are passed via utf8, discard invalid codes */
|
|
if(c.charCodeAt(0) >= 0xD800 && c.charCodeAt(0) < 0xE000) continue;
|
|
var cc = corpus[ucidx], dd = X.str(c);
|
|
assert.equal(dd, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + dd);
|
|
var ee = X.buf(new Buffer(c, "utf8"));
|
|
assert.equal(ee, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + ee);
|
|
if(typeof Buffer !== 'undefined') {
|
|
var ff = X.bstr(String.fromCharCode.apply(null, new Buffer(c, "utf8")));
|
|
assert.equal(ff, cc, ":" + ucidx + ":" + c + ":" + cc + ":" + ff);
|
|
}
|
|
};
|
|
});
|
|
});
|
|
});
|
|
if(typeof require !== 'undefined') describe("corpora", function() {
|
|
require("./test_files/corpus.json").forEach(function(text) {
|
|
if(!fs.existsSync(text[1])) return;
|
|
it("should match '" + text[0] + "' (" + text[2] + ")", function() {
|
|
assert.equal(text[2], X.buf(fs.readFileSync(text[1])));
|
|
});
|
|
});
|
|
});
|