0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
parent 139e6a915e
commit 7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions

23
web/node_modules/buffer-xor/test/fixtures.json generated vendored Normal file
View file

@ -0,0 +1,23 @@
[
{
"a": "000f",
"b": "f0ff",
"expected": "f0f0"
},
{
"a": "000f0f",
"b": "f0ff",
"mutated": "f0f00f",
"expected": "f0f0"
},
{
"a": "000f",
"b": "f0ffff",
"expected": "f0f0"
},
{
"a": "000000",
"b": "000000",
"expected": "000000"
}
]

38
web/node_modules/buffer-xor/test/index.js generated vendored Normal file
View file

@ -0,0 +1,38 @@
/* global describe, it */
var assert = require('assert')
var xor = require('../')
var xorInplace = require('../inplace')
var fixtures = require('./fixtures')
describe('xor', function () {
fixtures.forEach(function (f) {
it('returns ' + f.expected + ' for ' + f.a + '/' + f.b, function () {
var a = new Buffer(f.a, 'hex')
var b = new Buffer(f.b, 'hex')
var actual = xor(a, b)
assert.equal(actual.toString('hex'), f.expected)
// a/b unchanged
assert.equal(a.toString('hex'), f.a)
assert.equal(b.toString('hex'), f.b)
})
})
})
describe('xor/inplace', function () {
fixtures.forEach(function (f) {
it('returns ' + f.expected + ' for ' + f.a + '/' + f.b, function () {
var a = new Buffer(f.a, 'hex')
var b = new Buffer(f.b, 'hex')
var actual = xorInplace(a, b)
assert.equal(actual.toString('hex'), f.expected)
// a mutated, b unchanged
assert.equal(a.toString('hex'), f.mutated || f.expected)
assert.equal(b.toString('hex'), f.b)
})
})
})