-
Notifications
You must be signed in to change notification settings - Fork 809
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: added headers first sync tests
- Loading branch information
1 parent
a45770d
commit abc8bc2
Showing
2 changed files
with
71 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
'use strict'; | ||
|
||
const FullNode = require('../lib/node/fullnode'); | ||
const NeutrinoNode = require('../lib/node/neutrino'); | ||
const {forValue} = require('./util/common'); | ||
const assert = require('bsert'); | ||
describe('neutrino', function () { | ||
this.timeout(10000); | ||
|
||
const node1 = new NeutrinoNode({ | ||
network: 'regtest', | ||
memory: true, | ||
port: 10000, | ||
httpPort: 20000, | ||
neutrino: true, | ||
only: '127.0.0.1' | ||
}); | ||
|
||
const node2 = new FullNode({ | ||
network: 'regtest', | ||
memory: true, | ||
listen: true, | ||
indexFilter: true, | ||
bip157: true | ||
}); | ||
|
||
async function mineBlocks(n) { | ||
while (n) { | ||
const block = await node2.miner.mineBlock(); | ||
await node2.chain.add(block); | ||
n--; | ||
} | ||
await forValue(node1.chain, 'height', node2.chain.height); | ||
} | ||
|
||
before(async function () { | ||
const waitForConnection = new Promise((resolve, reject) => { | ||
node1.pool.once('peer open', async (peer) => { | ||
resolve(peer); | ||
}); | ||
}); | ||
|
||
await node1.open(); | ||
await node2.open(); | ||
await node1.connect(); | ||
await node2.connect(); | ||
node1.startSync(); | ||
node2.startSync(); | ||
await mineBlocks(200); | ||
await waitForConnection; | ||
}); | ||
|
||
after(async () => { | ||
await node1.close(); | ||
await node2.close(); | ||
}); | ||
|
||
describe('getheaders', () => { | ||
it('should getheaders', async () => { | ||
await mineBlocks(10); | ||
assert.equal(node1.chain.height, node2.chain.height); | ||
}); | ||
}); | ||
}); |