2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2019-07-19 04:37:35 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
2019-07-19 11:30:41 -04:00
|
|
|
import {
|
2021-07-13 08:23:01 -04:00
|
|
|
cleanupTests,
|
|
|
|
flushAndRunMultipleServers,
|
|
|
|
killallServers,
|
2021-07-07 04:33:49 -04:00
|
|
|
PluginsCommand,
|
2021-07-13 08:23:01 -04:00
|
|
|
reRunServer,
|
|
|
|
ServerInfo,
|
2019-07-19 11:30:41 -04:00
|
|
|
setAccessTokensToServers,
|
2021-07-15 04:02:54 -04:00
|
|
|
setDefaultVideoChannel
|
2021-07-13 08:23:01 -04:00
|
|
|
} from '@shared/extra-utils'
|
|
|
|
import { ServerHookName, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
|
2019-07-19 04:37:35 -04:00
|
|
|
|
2019-07-19 08:36:04 -04:00
|
|
|
describe('Test plugin action hooks', function () {
|
2019-07-19 11:30:41 -04:00
|
|
|
let servers: ServerInfo[]
|
|
|
|
let videoUUID: string
|
|
|
|
let threadId: number
|
|
|
|
|
2020-11-06 07:59:50 -05:00
|
|
|
function checkHook (hook: ServerHookName) {
|
2021-07-13 03:43:59 -04:00
|
|
|
return servers[0].serversCommand.waitUntilLog('Run hook ' + hook)
|
2019-07-19 11:30:41 -04:00
|
|
|
}
|
2019-07-19 04:37:35 -04:00
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
2019-07-19 11:30:41 -04:00
|
|
|
servers = await flushAndRunMultipleServers(2)
|
|
|
|
await setAccessTokensToServers(servers)
|
2020-11-06 07:59:50 -05:00
|
|
|
await setDefaultVideoChannel(servers)
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2021-07-07 04:33:49 -04:00
|
|
|
await servers[0].pluginsCommand.install({ path: PluginsCommand.getPluginTestPath() })
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2021-07-09 09:37:43 -04:00
|
|
|
await killallServers([ servers[0] ])
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2020-11-06 07:59:50 -05:00
|
|
|
await reRunServer(servers[0], {
|
|
|
|
live: {
|
|
|
|
enabled: true
|
|
|
|
}
|
|
|
|
})
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
describe('Application hooks', function () {
|
|
|
|
it('Should run action:application.listening', async function () {
|
|
|
|
await checkHook('action:application.listening')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
})
|
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
describe('Videos hooks', function () {
|
2021-06-28 03:22:15 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
it('Should run action:api.video.uploaded', async function () {
|
2021-07-15 04:02:54 -04:00
|
|
|
const { uuid } = await servers[0].videosCommand.upload({ attributes: { name: 'video' } })
|
|
|
|
videoUUID = uuid
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.video.uploaded')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
it('Should run action:api.video.updated', async function () {
|
2021-07-15 04:02:54 -04:00
|
|
|
await servers[0].videosCommand.update({ id: videoUUID, attributes: { name: 'video updated' } })
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.video.updated')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
it('Should run action:api.video.viewed', async function () {
|
2021-07-15 04:02:54 -04:00
|
|
|
await servers[0].videosCommand.view({ id: videoUUID })
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.video.viewed')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
})
|
|
|
|
|
2020-11-06 07:59:50 -05:00
|
|
|
describe('Live hooks', function () {
|
|
|
|
|
|
|
|
it('Should run action:api.live-video.created', async function () {
|
|
|
|
const attributes = {
|
|
|
|
name: 'live',
|
|
|
|
privacy: VideoPrivacy.PUBLIC,
|
|
|
|
channelId: servers[0].videoChannel.id
|
|
|
|
}
|
|
|
|
|
2021-07-08 04:25:50 -04:00
|
|
|
await servers[0].liveCommand.create({ fields: attributes })
|
2020-11-06 07:59:50 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.live-video.created')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
describe('Comments hooks', function () {
|
|
|
|
it('Should run action:api.video-thread.created', async function () {
|
2021-07-09 08:15:11 -04:00
|
|
|
const created = await servers[0].commentsCommand.createThread({ videoId: videoUUID, text: 'thread' })
|
|
|
|
threadId = created.id
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.video-thread.created')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
it('Should run action:api.video-comment-reply.created', async function () {
|
2021-07-09 08:15:11 -04:00
|
|
|
await servers[0].commentsCommand.addReply({ videoId: videoUUID, toCommentId: threadId, text: 'reply' })
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.video-comment-reply.created')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
it('Should run action:api.video-comment.deleted', async function () {
|
2021-07-09 08:15:11 -04:00
|
|
|
await servers[0].commentsCommand.delete({ videoId: videoUUID, commentId: threadId })
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.video-comment.deleted')
|
|
|
|
})
|
2019-07-19 11:30:41 -04:00
|
|
|
})
|
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
describe('Users hooks', function () {
|
|
|
|
let userId: number
|
|
|
|
|
|
|
|
it('Should run action:api.user.registered', async function () {
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[0].usersCommand.register({ username: 'registered_user' })
|
2019-07-19 11:30:41 -04:00
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
await checkHook('action:api.user.registered')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.created', async function () {
|
2021-07-13 08:23:01 -04:00
|
|
|
const user = await servers[0].usersCommand.create({ username: 'created_user' })
|
|
|
|
userId = user.id
|
2019-12-06 09:59:12 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.user.created')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.oauth2-got-token', async function () {
|
2021-07-13 05:05:15 -04:00
|
|
|
await servers[0].loginCommand.getAccessToken('created_user', 'super_password')
|
2019-12-06 09:59:12 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.user.oauth2-got-token')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.blocked', async function () {
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[0].usersCommand.banUser({ userId })
|
2019-12-06 09:59:12 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.user.blocked')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.unblocked', async function () {
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[0].usersCommand.unbanUser({ userId })
|
2019-12-06 09:59:12 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.user.unblocked')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.updated', async function () {
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[0].usersCommand.update({ userId, videoQuota: 50 })
|
2019-12-06 09:59:12 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.user.updated')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.deleted', async function () {
|
2021-07-13 08:23:01 -04:00
|
|
|
await servers[0].usersCommand.remove({ userId })
|
2019-12-06 09:59:12 -05:00
|
|
|
|
|
|
|
await checkHook('action:api.user.deleted')
|
|
|
|
})
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
|
2021-06-28 03:22:15 -04:00
|
|
|
describe('Playlist hooks', function () {
|
|
|
|
let playlistId: number
|
|
|
|
let videoId: number
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
{
|
2021-07-08 09:54:39 -04:00
|
|
|
const { id } = await servers[0].playlistsCommand.create({
|
|
|
|
attributes: {
|
2021-06-28 03:22:15 -04:00
|
|
|
displayName: 'My playlist',
|
|
|
|
privacy: VideoPlaylistPrivacy.PRIVATE
|
|
|
|
}
|
|
|
|
})
|
2021-07-08 09:54:39 -04:00
|
|
|
playlistId = id
|
2021-06-28 03:22:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-07-15 04:02:54 -04:00
|
|
|
const { id } = await servers[0].videosCommand.upload({ attributes: { name: 'my super name' } })
|
|
|
|
videoId = id
|
2021-06-28 03:22:15 -04:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.video-playlist-element.created', async function () {
|
2021-07-08 09:54:39 -04:00
|
|
|
await servers[0].playlistsCommand.addElement({ playlistId, attributes: { videoId } })
|
2021-06-28 03:22:15 -04:00
|
|
|
|
|
|
|
await checkHook('action:api.video-playlist-element.created')
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-07-19 04:37:35 -04:00
|
|
|
after(async function () {
|
2019-07-19 11:30:41 -04:00
|
|
|
await cleanupTests(servers)
|
2019-07-19 04:37:35 -04:00
|
|
|
})
|
|
|
|
})
|