Fix test cleanup

pull/5817/head
Chocobozzz 2023-05-10 13:57:06 +02:00
parent 7590f7a868
commit 644391bee6
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
7 changed files with 12 additions and 11 deletions

View File

@ -437,7 +437,7 @@ describe('Test videos API validator', function () {
})
it('Should succeed with the correct parameters', async function () {
this.timeout(10000)
this.timeout(30000)
const fields = baseCorrectParams

View File

@ -5,10 +5,10 @@ import { expectStartWith, MockObjectStorageProxy, SQLCommand, testLiveVideoResol
import { areMockObjectStorageTestsDisabled } from '@shared/core-utils'
import { HttpStatusCode, LiveVideoCreate, VideoPrivacy } from '@shared/models'
import {
cleanupTests,
createMultipleServers,
doubleFollow,
findExternalSavedVideo,
killallServers,
makeRawRequest,
ObjectStorageCommand,
PeerTubeServer,
@ -290,6 +290,6 @@ describe('Object storage for lives', function () {
after(async function () {
await sqlCommandServer1.cleanup()
await killallServers(servers)
await cleanupTests(servers)
})
})

View File

@ -5,8 +5,8 @@ import { expectStartWith, FIXTURE_URLS } from '@server/tests/shared'
import { areMockObjectStorageTestsDisabled } from '@shared/core-utils'
import { HttpStatusCode, VideoPrivacy } from '@shared/models'
import {
cleanupTests,
createSingleServer,
killallServers,
makeRawRequest,
ObjectStorageCommand,
PeerTubeServer,
@ -103,6 +103,6 @@ describe('Object storage for video import', function () {
})
after(async function () {
await killallServers([ server ])
await cleanupTests([ server ])
})
})

View File

@ -389,7 +389,7 @@ describe('Object storage for videos', function () {
})
after(async function () {
await killallServers([ server ])
await cleanupTests([ server ])
})
})

View File

@ -5,9 +5,9 @@ import { FIXTURE_URLS, SQLCommand } from '@server/tests/shared'
import { areHttpImportTestsDisabled } from '@shared/core-utils'
import { VideoChannelSyncState, VideoInclude, VideoPrivacy } from '@shared/models'
import {
cleanupTests,
createMultipleServers,
getServerImportConfig,
killallServers,
PeerTubeServer,
setAccessTokensToServers,
setDefaultAccountAvatar,
@ -309,7 +309,7 @@ describe('Test channel synchronizations', function () {
await sqlCommand.cleanup()
}
await killallServers(servers)
await cleanupTests(servers)
})
})
}

View File

@ -44,6 +44,7 @@ export class ServersCommand extends AbstractCommand {
await copy(origin, join('artifacts', destname))
}
console.log(this.server.parallel)
if (this.server.parallel) {
const promise = saveGithubLogsIfNeeded()

View File

@ -14,7 +14,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
withRetry?: boolean // default false
currentRetry?: number
}): Promise<string> {
const { videoFileToken, reinjectVideoFileToken, withRetry, currentRetry = 1 } = options
const { videoFileToken, reinjectVideoFileToken, withRetry = false, currentRetry = 1 } = options
try {
const result = await unwrapTextOrDecode(this.getRawRequest({
@ -51,7 +51,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
withRetry?: boolean // default false
currentRetry?: number
}) {
const { withRetry, currentRetry = 1 } = options
const { withRetry = false, currentRetry = 1 } = options
try {
const result = await unwrapBody<Buffer>(this.getRawRequest({
@ -85,7 +85,7 @@ export class StreamingPlaylistsCommand extends AbstractCommand {
withRetry?: boolean // default false
currentRetry?: number
}) {
const { withRetry, currentRetry = 1 } = options
const { withRetry = false, currentRetry = 1 } = options
try {
const result = await unwrapBodyOrDecodeToJSON<{ [ id: string ]: string }>(this.getRawRequest({