179 lines
5.7 KiB
JavaScript
179 lines
5.7 KiB
JavaScript
/* eslint-env mocha */
|
|
/* eslint prefer-arrow-callback: "off" */
|
|
|
|
'use strict';
|
|
|
|
const assert = require('./util/assert');
|
|
const fs = require('../lib/utils/fs');
|
|
const GCSFilter = require('../lib/utils/gcs');
|
|
const random = require('../lib/crypto/random');
|
|
const Block = require('../lib/primitives/block');
|
|
const Outpoint = require('../lib/primitives/outpoint');
|
|
const Address = require('../lib/primitives/address');
|
|
|
|
const raw = fs.readFileSync(`${__dirname}/data/block928927.raw`);
|
|
const block = Block.fromRaw(raw);
|
|
|
|
const key = random.randomBytes(16);
|
|
const P = 20;
|
|
|
|
const contents1 = [
|
|
Buffer.from('Alex', 'ascii'),
|
|
Buffer.from('Bob', 'ascii'),
|
|
Buffer.from('Charlie', 'ascii'),
|
|
Buffer.from('Dick', 'ascii'),
|
|
Buffer.from('Ed', 'ascii'),
|
|
Buffer.from('Frank', 'ascii'),
|
|
Buffer.from('George', 'ascii'),
|
|
Buffer.from('Harry', 'ascii'),
|
|
Buffer.from('Ilya', 'ascii'),
|
|
Buffer.from('John', 'ascii'),
|
|
Buffer.from('Kevin', 'ascii'),
|
|
Buffer.from('Larry', 'ascii'),
|
|
Buffer.from('Michael', 'ascii'),
|
|
Buffer.from('Nate', 'ascii'),
|
|
Buffer.from('Owen', 'ascii'),
|
|
Buffer.from('Paul', 'ascii'),
|
|
Buffer.from('Quentin', 'ascii')
|
|
];
|
|
|
|
const contents2 = [
|
|
Buffer.from('Alice', 'ascii'),
|
|
Buffer.from('Betty', 'ascii'),
|
|
Buffer.from('Charmaine', 'ascii'),
|
|
Buffer.from('Donna', 'ascii'),
|
|
Buffer.from('Edith', 'ascii'),
|
|
Buffer.from('Faina', 'ascii'),
|
|
Buffer.from('Georgia', 'ascii'),
|
|
Buffer.from('Hannah', 'ascii'),
|
|
Buffer.from('Ilsbeth', 'ascii'),
|
|
Buffer.from('Jennifer', 'ascii'),
|
|
Buffer.from('Kayla', 'ascii'),
|
|
Buffer.from('Lena', 'ascii'),
|
|
Buffer.from('Michelle', 'ascii'),
|
|
Buffer.from('Natalie', 'ascii'),
|
|
Buffer.from('Ophelia', 'ascii'),
|
|
Buffer.from('Peggy', 'ascii'),
|
|
Buffer.from('Queenie', 'ascii')
|
|
];
|
|
|
|
const op1 = new Outpoint(
|
|
'4cba1d1753ed19dbeafffb1a6c805d20e4af00b194a8f85353163cef83319c2c',
|
|
4);
|
|
|
|
const op2 = new Outpoint(
|
|
'b7c3c4bce1a23baef2da05f9b7e4bff813449ec7e80f980ec7e4cacfadcd3314',
|
|
3);
|
|
|
|
const op3 = new Outpoint(
|
|
'4cba1d1753ed19dbeafffb1a6c805d20e4af00b194a8f85353163cef83319c2c',
|
|
400);
|
|
|
|
const op4 = new Outpoint(
|
|
'b7c3c4bce1a23baef2da05f9b7e4bff813449ec7e80f980ec7e4cacfadcd3314',
|
|
300);
|
|
|
|
const addr1 = new Address('bc1qmyrddmxglk49ye2wd29wefaavw7es8k5d555lx');
|
|
const addr2 = new Address('bc1q4645ycu0l9pnvxaxnhemushv0w4cd9flkqh95j');
|
|
|
|
let filter1 = null;
|
|
let filter2 = null;
|
|
let filter3 = null;
|
|
let filter4 = null;
|
|
let filter5 = null;
|
|
|
|
describe('GCS', function() {
|
|
it('should test GCS filter build', () => {
|
|
filter1 = GCSFilter.fromItems(P, key, contents1);
|
|
assert(filter1);
|
|
});
|
|
|
|
it('should test GCS filter copy', () => {
|
|
filter2 = GCSFilter.fromBytes(filter1.n, P, filter1.toBytes());
|
|
assert(filter2);
|
|
filter3 = GCSFilter.fromNBytes(P, filter1.toNBytes());
|
|
assert(filter3);
|
|
filter4 = GCSFilter.fromPBytes(filter1.n, filter1.toPBytes());
|
|
assert(filter4);
|
|
filter5 = GCSFilter.fromNPBytes(filter1.toNPBytes());
|
|
assert(filter5);
|
|
});
|
|
|
|
it('should test GCS filter metadata', () => {
|
|
assert.strictEqual(filter1.p, P);
|
|
assert.strictEqual(filter1.n, contents1.length);
|
|
assert.strictEqual(filter1.p, filter2.p);
|
|
assert.strictEqual(filter1.n, filter2.n);
|
|
assert.bufferEqual(filter1.data, filter2.data);
|
|
assert.strictEqual(filter1.p, filter3.p);
|
|
assert.strictEqual(filter1.n, filter3.n);
|
|
assert.bufferEqual(filter1.data, filter3.data);
|
|
assert.strictEqual(filter1.p, filter4.p);
|
|
assert.strictEqual(filter1.n, filter4.n);
|
|
assert.bufferEqual(filter1.data, filter4.data);
|
|
assert.strictEqual(filter1.p, filter5.p);
|
|
assert.strictEqual(filter1.n, filter5.n);
|
|
assert.bufferEqual(filter1.data, filter5.data);
|
|
});
|
|
|
|
it('should test GCS filter match', () => {
|
|
let match = filter1.match(key, Buffer.from('Nate'));
|
|
assert(match);
|
|
match = filter2.match(key, Buffer.from('Nate'));
|
|
assert(match);
|
|
match = filter1.match(key, Buffer.from('Quentin'));
|
|
assert(match);
|
|
match = filter2.match(key, Buffer.from('Quentin'));
|
|
assert(match);
|
|
|
|
match = filter1.match(key, Buffer.from('Nates'));
|
|
assert(!match);
|
|
match = filter2.match(key, Buffer.from('Nates'));
|
|
assert(!match);
|
|
match = filter1.match(key, Buffer.from('Quentins'));
|
|
assert(!match);
|
|
match = filter2.match(key, Buffer.from('Quentins'));
|
|
assert(!match);
|
|
});
|
|
|
|
it('should test GCS filter matchAny', () => {
|
|
let match = filter1.matchAny(key, contents2);
|
|
assert(!match);
|
|
match = filter2.matchAny(key, contents2);
|
|
assert(!match);
|
|
|
|
const contents = contents2.slice();
|
|
contents.push(Buffer.from('Nate'));
|
|
|
|
match = filter1.matchAny(key, contents);
|
|
assert(match);
|
|
match = filter2.matchAny(key, contents);
|
|
assert(match);
|
|
});
|
|
|
|
it('should test GCS filter fromBlock', () => {
|
|
const key = block.hash().slice(0, 16);
|
|
const filter = GCSFilter.fromBlock(block);
|
|
assert(filter.match(key, op1.toRaw()));
|
|
assert(filter.match(key, op2.toRaw()));
|
|
assert(!filter.match(key, op3.toRaw()));
|
|
assert(!filter.match(key, op4.toRaw()));
|
|
assert(filter.match(key, addr1.hash));
|
|
assert(filter.match(key, addr2.hash));
|
|
assert(filter.matchAny(key, [op1.toRaw(), addr1.hash]));
|
|
assert(filter.matchAny(key, [op1.toRaw(), op3.toRaw()]));
|
|
assert(!filter.matchAny(key, [op3.toRaw(), op4.toRaw()]));
|
|
});
|
|
|
|
it('should test GCS filter fromExtended', () => {
|
|
const key = block.hash().slice(0, 16);
|
|
const filter = GCSFilter.fromExtended(block);
|
|
assert(!filter.match(key, op1.toRaw()));
|
|
assert(filter.match(key, block.txs[0].hash()));
|
|
assert(filter.match(key, block.txs[1].hash()));
|
|
assert(filter.matchAny(key, [block.txs[0].hash(), block.txs[1].hash()]));
|
|
assert(filter.matchAny(key, [op1.toRaw(), block.txs[1].hash()]));
|
|
assert(!filter.matchAny(key, [op1.toRaw(), op2.toRaw()]));
|
|
});
|
|
});
|