-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Client: Add tests to verify shutdown (#1641)
* Add tests to verify client shutdown * Add libp2p test * Address feedback * most libp2p into separate file
- Loading branch information
Showing
2 changed files
with
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import { ChildProcessWithoutNullStreams, spawn } from 'child_process' | ||
import tape from 'tape' | ||
|
||
const end = (child: ChildProcessWithoutNullStreams, hasEnded: boolean, st: tape.Test) => { | ||
if (hasEnded) return | ||
hasEnded = true | ||
child.stdout.removeAllListeners() | ||
child.stderr.removeAllListeners() | ||
const res = child.kill('SIGINT') | ||
st.ok(res, 'client shut down successfully') | ||
st.end() | ||
} | ||
|
||
tape('[CLI] rpc', (t) => { | ||
t.test('libp2p should start up', (st) => { | ||
const file = require.resolve('../../dist/bin/cli.js') | ||
const child = spawn(process.execPath, [ | ||
file, | ||
...[ | ||
'--transports=libp2p', | ||
'--dev', | ||
'--lightserv=true', | ||
'--multiaddrs=/ip4/127.0.0.1/tcp/50505/', | ||
], | ||
]) | ||
let child2: ChildProcessWithoutNullStreams | ||
const hasEnded = false | ||
|
||
child.stdout.on('data', async (data) => { | ||
const message = data.toString() | ||
|
||
if (message.includes('transport=libp2p')) { | ||
st.pass('libp2p server started') | ||
const bootnodeAddressArray = message.split(' ') | ||
const bootnodeAddressIndex = bootnodeAddressArray.findIndex((chunk: string) => | ||
chunk.startsWith('url=') | ||
) | ||
const bootNodeAddress = bootnodeAddressArray[bootnodeAddressIndex].split('=')[1] | ||
child2 = spawn(process.execPath, [ | ||
file, | ||
...[ | ||
'--transports=libp2p', | ||
`--bootnodes=${bootNodeAddress}`, | ||
'--datadir=data2', | ||
'--mine=false', | ||
'--dev', | ||
'--multiaddrs=/ip4/0.0.0.0/tcp/50506', | ||
'--syncmode=light', | ||
'--loglevel=debug', | ||
], | ||
]) | ||
child2.stdout.on('data', async (data) => { | ||
const message = data.toString() | ||
if (message.includes('Peer added')) { | ||
st.pass('connected to peer over libp2p') | ||
child2.kill('SIGINT') | ||
child2.stdout.removeAllListeners() | ||
end(child, false, st) | ||
} | ||
}) | ||
} | ||
}) | ||
|
||
child.stderr.on('data', (data) => { | ||
const message = data.toString() | ||
st.fail(`stderr: ${message}`) | ||
end(child, hasEnded, st) | ||
}) | ||
|
||
child.on('close', (code) => { | ||
if (code && code > 0) { | ||
st.fail(`child process exited with code ${code}`) | ||
end(child, hasEnded, st) | ||
} | ||
}) | ||
}) | ||
}) |
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