]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/plugins/action-hooks.ts
Correctly terminate an ended live
[github/Chocobozzz/PeerTube.git] / server / tests / plugins / action-hooks.ts
index e28732caca079ec3367edeb6448a0695f5d6c229..36f8052c0a1744e7b1f8badb59c500a9ee4b45bb 100644 (file)
-/* tslint:disable:no-unused-expression */
+/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
 
-import * as chai from 'chai'
-import 'mocha'
+import { ServerHookName, VideoPlaylistPrivacy, VideoPrivacy } from '@shared/models'
 import {
   cleanupTests,
-  flushAndRunMultipleServers,
-  flushAndRunServer, killallServers, reRunServer,
-  ServerInfo,
-  waitUntilLog
-} from '../../../shared/extra-utils/server/servers'
-import {
-  addVideoCommentReply,
-  addVideoCommentThread, deleteVideoComment,
-  getPluginTestPath,
-  installPlugin, removeVideo,
+  createMultipleServers,
+  killallServers,
+  PeerTubeServer,
+  PluginsCommand,
   setAccessTokensToServers,
-  updateVideo,
-  uploadVideo,
-  viewVideo
-} from '../../../shared/extra-utils'
-
-const expect = chai.expect
+  setDefaultVideoChannel
+} from '@shared/server-commands'
 
 describe('Test plugin action hooks', function () {
-  let servers: ServerInfo[]
+  let servers: PeerTubeServer[]
   let videoUUID: string
   let threadId: number
 
-  function checkHook (hook: string) {
-    return waitUntilLog(servers[0], 'Run hook ' + hook)
+  function checkHook (hook: ServerHookName, strictCount = true) {
+    return servers[0].servers.waitUntilLog('Run hook ' + hook, 1, strictCount)
   }
 
   before(async function () {
-    this.timeout(30000)
+    this.timeout(120000)
 
-    servers = await flushAndRunMultipleServers(2)
+    servers = await createMultipleServers(2)
     await setAccessTokensToServers(servers)
+    await setDefaultVideoChannel(servers)
 
-    await installPlugin({
-      url: servers[0].url,
-      accessToken: servers[0].accessToken,
-      path: getPluginTestPath()
-    })
+    await servers[0].plugins.install({ path: PluginsCommand.getPluginTestPath() })
 
-    killallServers([ servers[0] ])
+    await killallServers([ servers[0] ])
 
-    await reRunServer(servers[0])
+    await servers[0].run({
+      live: {
+        enabled: true
+      }
+    })
   })
 
-  it('Should run action:application.listening', async function () {
-    await checkHook('action:application.listening')
+  describe('Application hooks', function () {
+    it('Should run action:application.listening', async function () {
+      await checkHook('action:application.listening')
+    })
   })
 
-  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
+  describe('Videos hooks', function () {
+
+    it('Should run action:api.video.uploaded', async function () {
+      const { uuid } = await servers[0].videos.upload({ attributes: { name: 'video' } })
+      videoUUID = uuid
+
+      await checkHook('action:api.video.uploaded')
+    })
+
+    it('Should run action:api.video.updated', async function () {
+      await servers[0].videos.update({ id: videoUUID, attributes: { name: 'video updated' } })
+
+      await checkHook('action:api.video.updated')
+    })
+
+    it('Should run action:api.video.viewed', async function () {
+      await servers[0].views.simulateView({ id: videoUUID })
+
+      await checkHook('action:api.video.viewed')
+    })
+
+    it('Should run action:api.video.deleted', async function () {
+      await servers[0].videos.remove({ id: videoUUID })
+
+      await checkHook('action:api.video.deleted')
+    })
 
-    await checkHook('action:api.video.uploaded')
+    after(async function () {
+      const { uuid } = await servers[0].videos.quickUpload({ name: 'video' })
+      videoUUID = uuid
+    })
   })
 
-  it('Should run action:api.video.updated', async function () {
-    await updateVideo(servers[0].url, servers[0].accessToken, videoUUID, { name: 'video updated' })
+  describe('Video channel hooks', function () {
+    const channelName = 'my_super_channel'
+
+    it('Should run action:api.video-channel.created', async function () {
+      await servers[0].channels.create({ attributes: { name: channelName } })
+
+      await checkHook('action:api.video-channel.created')
+    })
+
+    it('Should run action:api.video-channel.updated', async function () {
+      await servers[0].channels.update({ channelName, attributes: { displayName: 'my display name' } })
 
-    await checkHook('action:api.video.updated')
+      await checkHook('action:api.video-channel.updated')
+    })
+
+    it('Should run action:api.video-channel.deleted', async function () {
+      await servers[0].channels.delete({ channelName })
+
+      await checkHook('action:api.video-channel.deleted')
+    })
   })
 
-  it('Should run action:api.video.viewed', async function () {
-    await viewVideo(servers[0].url, videoUUID)
+  describe('Live hooks', function () {
 
-    await checkHook('action:api.video.viewed')
+    it('Should run action:api.live-video.created', async function () {
+      const attributes = {
+        name: 'live',
+        privacy: VideoPrivacy.PUBLIC,
+        channelId: servers[0].store.channel.id
+      }
+
+      await servers[0].live.create({ fields: attributes })
+
+      await checkHook('action:api.live-video.created')
+    })
   })
 
-  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
+  describe('Comments hooks', function () {
+    it('Should run action:api.video-thread.created', async function () {
+      const created = await servers[0].comments.createThread({ videoId: videoUUID, text: 'thread' })
+      threadId = created.id
+
+      await checkHook('action:api.video-thread.created')
+    })
+
+    it('Should run action:api.video-comment-reply.created', async function () {
+      await servers[0].comments.addReply({ videoId: videoUUID, toCommentId: threadId, text: 'reply' })
+
+      await checkHook('action:api.video-comment-reply.created')
+    })
 
-    await checkHook('action:api.video-thread.created')
+    it('Should run action:api.video-comment.deleted', async function () {
+      await servers[0].comments.delete({ videoId: videoUUID, commentId: threadId })
+
+      await checkHook('action:api.video-comment.deleted')
+    })
   })
 
-  it('Should run action:api.video-comment-reply.created', async function () {
-    await addVideoCommentReply(servers[0].url, servers[0].accessToken, videoUUID, threadId, 'reply')
+  describe('Captions hooks', function () {
+    it('Should run action:api.video-caption.created', async function () {
+      await servers[0].captions.add({ videoId: videoUUID, language: 'en', fixture: 'subtitle-good.srt' })
+
+      await checkHook('action:api.video-caption.created')
+    })
+
+    it('Should run action:api.video-caption.deleted', async function () {
+      await servers[0].captions.delete({ videoId: videoUUID, language: 'en' })
 
-    await checkHook('action:api.video-comment-reply.created')
+      await checkHook('action:api.video-caption.deleted')
+    })
   })
 
-  it('Should run action:api.video-comment.deleted', async function () {
-    await deleteVideoComment(servers[0].url, servers[0].accessToken, videoUUID, threadId)
+  describe('Users hooks', function () {
+    let userId: number
+
+    it('Should run action:api.user.registered', async function () {
+      await servers[0].users.register({ username: 'registered_user' })
+
+      await checkHook('action:api.user.registered')
+    })
 
-    await checkHook('action:api.video-comment.deleted')
+    it('Should run action:api.user.created', async function () {
+      const user = await servers[0].users.create({ username: 'created_user' })
+      userId = user.id
+
+      await checkHook('action:api.user.created')
+    })
+
+    it('Should run action:api.user.oauth2-got-token', async function () {
+      await servers[0].login.login({ user: { username: 'created_user' } })
+
+      await checkHook('action:api.user.oauth2-got-token')
+    })
+
+    it('Should run action:api.user.blocked', async function () {
+      await servers[0].users.banUser({ userId })
+
+      await checkHook('action:api.user.blocked')
+    })
+
+    it('Should run action:api.user.unblocked', async function () {
+      await servers[0].users.unbanUser({ userId })
+
+      await checkHook('action:api.user.unblocked')
+    })
+
+    it('Should run action:api.user.updated', async function () {
+      await servers[0].users.update({ userId, videoQuota: 50 })
+
+      await checkHook('action:api.user.updated')
+    })
+
+    it('Should run action:api.user.deleted', async function () {
+      await servers[0].users.remove({ userId })
+
+      await checkHook('action:api.user.deleted')
+    })
+  })
+
+  describe('Playlist hooks', function () {
+    let playlistId: number
+    let videoId: number
+
+    before(async function () {
+      {
+        const { id } = await servers[0].playlists.create({
+          attributes: {
+            displayName: 'My playlist',
+            privacy: VideoPlaylistPrivacy.PRIVATE
+          }
+        })
+        playlistId = id
+      }
+
+      {
+        const { id } = await servers[0].videos.upload({ attributes: { name: 'my super name' } })
+        videoId = id
+      }
+    })
+
+    it('Should run action:api.video-playlist-element.created', async function () {
+      await servers[0].playlists.addElement({ playlistId, attributes: { videoId } })
+
+      await checkHook('action:api.video-playlist-element.created')
+    })
   })
 
-  it('Should run action:api.video.deleted', async function () {
-    await removeVideo(servers[0].url, servers[0].accessToken, videoUUID)
+  describe('Notification hook', function () {
 
-    await checkHook('action:api.video.deleted')
+    it('Should run action:notifier.notification.created', async function () {
+      await checkHook('action:notifier.notification.created', false)
+    })
   })
 
   after(async function () {