Browse Source

Fix test cleanup

pull/5340/merge
Chocobozzz 2 weeks ago
parent
commit
644391bee6
No known key found for this signature in database GPG Key ID: 583A612D890159BE
7 changed files with 12 additions and 11 deletions
  1. +1
    -1
      server/tests/api/check-params/videos.ts
  2. +2
    -2
      server/tests/api/object-storage/live.ts
  3. +2
    -2
      server/tests/api/object-storage/video-imports.ts
  4. +1
    -1
      server/tests/api/object-storage/videos.ts
  5. +2
    -2
      server/tests/api/videos/video-channel-syncs.ts
  6. +1
    -0
      shared/server-commands/server/servers-command.ts
  7. +3
    -3
      shared/server-commands/videos/streaming-playlists-command.ts

+ 1
- 1
server/tests/api/check-params/videos.ts 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



+ 2
- 2
server/tests/api/object-storage/live.ts 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)
})
})

+ 2
- 2
server/tests/api/object-storage/video-imports.ts 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 ])
})
})

+ 1
- 1
server/tests/api/object-storage/videos.ts View File

@@ -389,7 +389,7 @@ describe('Object storage for videos', function () {
})

after(async function () {
await killallServers([ server ])
await cleanupTests([ server ])
})
})



+ 2
- 2
server/tests/api/videos/video-channel-syncs.ts 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)
})
})
}


+ 1
- 0
shared/server-commands/server/servers-command.ts 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()


+ 3
- 3
shared/server-commands/videos/streaming-playlists-command.ts 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({


Loading…
Cancel
Save