From 5e3d29ab218f2e7fcfb59f64777d901625dc5a49 Mon Sep 17 00:00:00 2001 From: lutangar Date: Fri, 17 Dec 2021 16:41:01 +0100 Subject: Add video caption created and deleted hooks --- server/tests/plugins/action-hooks.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'server/tests/plugins/action-hooks.ts') diff --git a/server/tests/plugins/action-hooks.ts b/server/tests/plugins/action-hooks.ts index 686926c17..8788a9644 100644 --- a/server/tests/plugins/action-hooks.ts +++ b/server/tests/plugins/action-hooks.ts @@ -103,6 +103,20 @@ describe('Test plugin action hooks', function () { }) }) + 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-caption.deleted') + }) + }) + describe('Users hooks', function () { let userId: number -- cgit v1.2.3