2019-07-19 04:37:35 -04:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
|
|
|
import * as chai from 'chai'
|
|
|
|
import 'mocha'
|
2019-07-19 11:30:41 -04:00
|
|
|
import {
|
|
|
|
cleanupTests,
|
|
|
|
flushAndRunMultipleServers,
|
2019-12-06 09:59:12 -05:00
|
|
|
killallServers,
|
|
|
|
reRunServer,
|
2019-07-19 11:30:41 -04:00
|
|
|
ServerInfo,
|
|
|
|
waitUntilLog
|
|
|
|
} from '../../../shared/extra-utils/server/servers'
|
|
|
|
import {
|
|
|
|
addVideoCommentReply,
|
2019-12-06 09:59:12 -05:00
|
|
|
addVideoCommentThread,
|
|
|
|
blockUser,
|
|
|
|
createUser,
|
|
|
|
deleteVideoComment,
|
2019-07-19 11:30:41 -04:00
|
|
|
getPluginTestPath,
|
2019-12-06 09:59:12 -05:00
|
|
|
installPlugin, login,
|
|
|
|
registerUser, removeUser,
|
2019-07-19 11:30:41 -04:00
|
|
|
setAccessTokensToServers,
|
2019-12-06 09:59:12 -05:00
|
|
|
unblockUser, updateUser,
|
2019-07-19 11:30:41 -04:00
|
|
|
updateVideo,
|
|
|
|
uploadVideo,
|
2019-12-06 09:59:12 -05:00
|
|
|
viewVideo,
|
|
|
|
userLogin
|
2019-07-19 11:30:41 -04:00
|
|
|
} from '../../../shared/extra-utils'
|
2019-07-19 04:37:35 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
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
|
|
|
|
|
|
|
|
function checkHook (hook: string) {
|
|
|
|
return waitUntilLog(servers[0], 'Run hook ' + hook)
|
|
|
|
}
|
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)
|
|
|
|
|
|
|
|
await installPlugin({
|
|
|
|
url: servers[0].url,
|
|
|
|
accessToken: servers[0].accessToken,
|
|
|
|
path: getPluginTestPath()
|
|
|
|
})
|
|
|
|
|
2019-07-22 05:18:22 -04:00
|
|
|
killallServers([ servers[0] ])
|
2019-07-19 11:30:41 -04:00
|
|
|
|
|
|
|
await reRunServer(servers[0])
|
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 () {
|
|
|
|
it('Should run action:api.video.uploaded', async function () {
|
|
|
|
const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' })
|
|
|
|
videoUUID = res.body.video.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 () {
|
|
|
|
await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, { 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 () {
|
|
|
|
await viewVideo(servers[0].url, 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
|
|
|
})
|
|
|
|
|
2019-12-06 09:59:12 -05:00
|
|
|
describe('Comments hooks', function () {
|
|
|
|
it('Should run action:api.video-thread.created', async function () {
|
|
|
|
const res = await addVideoCommentThread(servers[0].url, servers[0].accessToken, videoUUID, 'thread')
|
|
|
|
threadId = res.body.comment.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 () {
|
|
|
|
await addVideoCommentReply(servers[0].url, servers[0].accessToken, videoUUID, threadId, '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 () {
|
|
|
|
await deleteVideoComment(servers[0].url, servers[0].accessToken, videoUUID, 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 () {
|
|
|
|
await registerUser(servers[0].url, 'registered_user', 'super_password')
|
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 () {
|
|
|
|
const res = await createUser({
|
|
|
|
url: servers[0].url,
|
|
|
|
accessToken: servers[0].accessToken,
|
|
|
|
username: 'created_user',
|
|
|
|
password: 'super_password'
|
|
|
|
})
|
|
|
|
userId = res.body.user.id
|
|
|
|
|
|
|
|
await checkHook('action:api.user.created')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.oauth2-got-token', async function () {
|
|
|
|
await userLogin(servers[0], { username: 'created_user', password: 'super_password' })
|
|
|
|
|
|
|
|
await checkHook('action:api.user.oauth2-got-token')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.blocked', async function () {
|
|
|
|
await blockUser(servers[0].url, userId, servers[0].accessToken)
|
|
|
|
|
|
|
|
await checkHook('action:api.user.blocked')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.unblocked', async function () {
|
|
|
|
await unblockUser(servers[0].url, userId, servers[0].accessToken)
|
|
|
|
|
|
|
|
await checkHook('action:api.user.unblocked')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.updated', async function () {
|
|
|
|
await updateUser({ url: servers[0].url, accessToken: servers[0].accessToken, userId, videoQuota: 50 })
|
|
|
|
|
|
|
|
await checkHook('action:api.user.updated')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should run action:api.user.deleted', async function () {
|
|
|
|
await removeUser(servers[0].url, userId, servers[0].accessToken)
|
|
|
|
|
|
|
|
await checkHook('action:api.user.deleted')
|
|
|
|
})
|
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
|
|
|
})
|
|
|
|
})
|