fix(test): close with timeout (#54)

* fix(test): allow time for the listener to finish

* chore: pre push instead of pre commit

chore: clean up git ignore and add docs to list
This commit is contained in:
Jacob Heun 2019-09-16 15:58:25 +02:00 committed by GitHub
parent d143f79ceb
commit 583f02d47a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 47 deletions

30
.gitignore vendored
View File

@ -1,36 +1,8 @@
**/node_modules/
**/*.log
test/repo-tests*
package-lock.json
# Logs
logs
*.log
coverage
# Runtime data
pids
*.pid
*.seed
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# node-waf configuration
.lock-wscript
build
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
lib
docs
dist

View File

@ -22,7 +22,7 @@
"coverage": "exit(0)",
"coverage-publish": "exit(0)"
},
"pre-commit": [
"pre-push": [
"lint"
],
"keywords": [

View File

@ -50,10 +50,6 @@ module.exports = (common) => {
it('close listener with connections, through timeout', async () => {
const upgradeSpy = sinon.spy(upgrader, 'upgradeInbound')
let finish
const done = new Promise((resolve) => {
finish = resolve
})
const listener = transport.createListener((conn) => {
expect(upgradeSpy.returned(conn)).to.equal(true)
@ -64,21 +60,23 @@ module.exports = (common) => {
await listener.listen(addrs[0])
// Create two connections to the listener
const socket1 = await transport.dial(addrs[0])
await transport.dial(addrs[0])
const [socket1] = await Promise.all([
transport.dial(addrs[0]),
transport.dial(addrs[0])
])
pipe(
[Buffer.from('Some data that is never handled')],
socket1
).then(() => {
finish()
})
// Give the listener a chance to finish its upgrade
await new Promise(resolve => setTimeout(resolve, 0))
// Closer the listener (will take a couple of seconds to time out)
await listener.close()
// Pipe should have completed
await done
// Wait for the data send and close to finish
await Promise.all([
pipe(
[Buffer.from('Some data that is never handled')],
socket1
),
// Closer the listener (will take a couple of seconds to time out)
listener.close()
])
// 2 dials = 2 connections upgraded
expect(upgradeSpy.callCount).to.equal(2)