mirror of
https://github.com/webtorrent/bittorrent-tracker.git
synced 2024-12-13 10:56:25 +00:00
Revert "Re-enabled wrtc server tests, using SIGKILL to ensure Electron daemon gets killed"
This reverts commit 7369b6b900
.
This commit is contained in:
parent
ba9b5b0eab
commit
b5687c6a3b
@ -1,12 +1,12 @@
|
||||
var Client = require('../')
|
||||
var common = require('./common')
|
||||
var test = require('tape')
|
||||
var wrtc = require('electron-webrtc')()
|
||||
// var wrtc = require('electron-webrtc')()
|
||||
|
||||
var wrtcReady = false
|
||||
wrtc.electronDaemon.once('ready', function () {
|
||||
wrtcReady = true
|
||||
})
|
||||
// var wrtcReady = false
|
||||
// wrtc.electronDaemon.once('ready', function () {
|
||||
// wrtcReady = true
|
||||
// })
|
||||
|
||||
var infoHash = '4cb67059ed6bd08362da625b3ae77f6f4a075705'
|
||||
var peerId = new Buffer('01234567890123456789')
|
||||
@ -31,7 +31,7 @@ function serverTest (t, serverType, serverFamily) {
|
||||
infoHash: infoHash,
|
||||
length: torrentLength,
|
||||
announce: [ announceUrl ]
|
||||
}, { wrtc: wrtc })
|
||||
}/*, { wrtc: wrtc }*/)
|
||||
|
||||
client1.start()
|
||||
|
||||
@ -87,7 +87,7 @@ function serverTest (t, serverType, serverFamily) {
|
||||
infoHash: infoHash,
|
||||
length: torrentLength,
|
||||
announce: [ announceUrl ]
|
||||
}, { wrtc: wrtc })
|
||||
}/*, { wrtc: wrtc }*/)
|
||||
|
||||
client2.start()
|
||||
|
||||
@ -113,7 +113,7 @@ function serverTest (t, serverType, serverFamily) {
|
||||
|
||||
client1.destroy()
|
||||
server.close()
|
||||
if (serverType === 'ws') wrtc.close('SIGKILL')
|
||||
// if (serverType === 'ws') wrtc.close()
|
||||
})
|
||||
})
|
||||
})
|
||||
@ -124,16 +124,16 @@ function serverTest (t, serverType, serverFamily) {
|
||||
})
|
||||
}
|
||||
|
||||
test('websocket server', function (t) {
|
||||
if (wrtcReady) {
|
||||
runTest()
|
||||
} else {
|
||||
wrtc.electronDaemon.once('ready', runTest)
|
||||
}
|
||||
function runTest () {
|
||||
serverTest(t, 'ws', 'inet')
|
||||
}
|
||||
})
|
||||
// test('websocket server', function (t) {
|
||||
// if (wrtcReady) {
|
||||
// runTest()
|
||||
// } else {
|
||||
// wrtc.electronDaemon.once('ready', runTest)
|
||||
// }
|
||||
// function runTest () {
|
||||
// serverTest(t, 'ws', 'inet')
|
||||
// }
|
||||
// })
|
||||
|
||||
test('http ipv4 server', function (t) {
|
||||
serverTest(t, 'http', 'inet')
|
||||
|
Loading…
Reference in New Issue
Block a user