Fix redundancy test
This commit is contained in:
parent
65b21c961c
commit
fd28a0fc88
1 changed files with 8 additions and 12 deletions
|
@ -419,7 +419,7 @@ describe('Test videos redundancy', function () {
|
||||||
|
|
||||||
killallServers([ servers[0] ])
|
killallServers([ servers[0] ])
|
||||||
|
|
||||||
await wait(10000)
|
await wait(15000)
|
||||||
|
|
||||||
await checkNotContains([ servers[1], servers[2] ], 'http%3A%2F%2Flocalhost%3A9001')
|
await checkNotContains([ servers[1], servers[2] ], 'http%3A%2F%2Flocalhost%3A9001')
|
||||||
})
|
})
|
||||||
|
@ -452,26 +452,22 @@ describe('Test videos redundancy', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should cache video 2 webseed on the first video', async function () {
|
it('Should cache video 2 webseed on the first video', async function () {
|
||||||
this.timeout(50000)
|
this.timeout(120000)
|
||||||
|
|
||||||
await waitJobs(servers)
|
await waitJobs(servers)
|
||||||
|
|
||||||
await wait(7000)
|
let checked = false
|
||||||
|
|
||||||
try {
|
while (checked === false) {
|
||||||
await check1WebSeed(strategy, video1Server2UUID)
|
await wait(1000)
|
||||||
await check2Webseeds(strategy, video2Server2UUID)
|
|
||||||
} catch {
|
|
||||||
await wait(3000)
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await check1WebSeed(strategy, video1Server2UUID)
|
await check1WebSeed(strategy, video1Server2UUID)
|
||||||
await check2Webseeds(strategy, video2Server2UUID)
|
await check2Webseeds(strategy, video2Server2UUID)
|
||||||
} catch {
|
|
||||||
await wait(5000)
|
|
||||||
|
|
||||||
await check1WebSeed(strategy, video1Server2UUID)
|
checked = true
|
||||||
await check2Webseeds(strategy, video2Server2UUID)
|
} catch {
|
||||||
|
checked = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue