aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/api')
-rw-r--r--server/tests/api/videos/video-imports.ts58
1 files changed, 31 insertions, 27 deletions
diff --git a/server/tests/api/videos/video-imports.ts b/server/tests/api/videos/video-imports.ts
index 1e97cc6ca..8e179b825 100644
--- a/server/tests/api/videos/video-imports.ts
+++ b/server/tests/api/videos/video-imports.ts
@@ -62,11 +62,14 @@ describe('Test video imports', function () {
62 62
63 expect(videoTorrent.name).to.contain('你好 世界 720p.mp4') 63 expect(videoTorrent.name).to.contain('你好 世界 720p.mp4')
64 expect(videoMagnet.name).to.contain('super peertube2 video') 64 expect(videoMagnet.name).to.contain('super peertube2 video')
65
66 const resCaptions = await listVideoCaptions(url, idHttp)
67 expect(resCaptions.body.total).to.equal(2)
65 } 68 }
66 69
67 async function checkVideoServer2 (url: string, id: number | string) { 70 async function checkVideoServer2 (url: string, id: number | string) {
68 const res = await getVideo(url, id) 71 const res = await getVideo(url, id)
69 const video = res.body 72 const video: VideoDetails = res.body
70 73
71 expect(video.name).to.equal('my super name') 74 expect(video.name).to.equal('my super name')
72 expect(video.category.label).to.equal('Entertainment') 75 expect(video.category.label).to.equal('Entertainment')
@@ -77,6 +80,9 @@ describe('Test video imports', function () {
77 expect(video.tags).to.deep.equal([ 'supertag1', 'supertag2' ]) 80 expect(video.tags).to.deep.equal([ 'supertag1', 'supertag2' ])
78 81
79 expect(video.files).to.have.lengthOf(1) 82 expect(video.files).to.have.lengthOf(1)
83
84 const resCaptions = await listVideoCaptions(url, id)
85 expect(resCaptions.body.total).to.equal(2)
80 } 86 }
81 87
82 before(async function () { 88 before(async function () {
@@ -114,44 +120,42 @@ describe('Test video imports', function () {
114 expect(res.body.video.name).to.equal('small video - youtube') 120 expect(res.body.video.name).to.equal('small video - youtube')
115 121
116 const resCaptions = await listVideoCaptions(servers[0].url, res.body.video.id) 122 const resCaptions = await listVideoCaptions(servers[0].url, res.body.video.id)
117 const videoCaptions: VideoCaption[] = resCaptions.body 123 const videoCaptions: VideoCaption[] = resCaptions.body.data
118 expect(videoCaptions).to.have.lengthOf(2) 124 expect(videoCaptions).to.have.lengthOf(2)
119 125
120 const enCaption = videoCaptions.filter(caption => caption.language.label === 'en')[0] 126 const enCaption = videoCaptions.find(caption => caption.language.id === 'en')
121 expect(enCaption).to.not(undefined) 127 expect(enCaption).to.exist
122 expect(enCaption.language.label).to.equal('en') 128 expect(enCaption.language.label).to.equal('English')
123 expect(enCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-en.vtt`) 129 expect(enCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-en.vtt`)
124 await testCaptionFile(servers[0].url, enCaption.captionPath, `WEBVTT 130 await testCaptionFile(servers[0].url, enCaption.captionPath, `WEBVTT
131Kind: captions
132Language: en
125 133
126 1 13400:00:01.600 --> 00:00:04.200
127 00:00:01.600 --> 00:00:04.200 135English (US)
128 English (US)
129 136
130 2 13700:00:05.900 --> 00:00:07.999
131 00:00:05.900 --> 00:00:07.999 138This is a subtitle in American English
132 This is a subtitle in American English
133 139
134 3 14000:00:10.000 --> 00:00:14.000
135 00:00:10.000 --> 00:00:14.000 141Adding subtitles is very easy to do`)
136 Adding subtitles is very easy to do`)
137 142
138 const frCaption = videoCaptions.filter(caption => caption.language.label === 'fr')[0] 143 const frCaption = videoCaptions.find(caption => caption.language.id === 'fr')
139 expect(frCaption).to.not(undefined) 144 expect(frCaption).to.exist
140 expect(frCaption.language.label).to.equal('fr') 145 expect(frCaption.language.label).to.equal('French')
141 expect(frCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-en.vtt`) 146 expect(frCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-fr.vtt`)
142 await testCaptionFile(servers[0].url, frCaption.captionPath, `WEBVTT 147 await testCaptionFile(servers[0].url, frCaption.captionPath, `WEBVTT
148Kind: captions
149Language: fr
143 150
144 1 15100:00:01.600 --> 00:00:04.200
145 00:00:01,600 --> 00:00:04.200 152Français (FR)
146 Français (FR)
147 153
148 2 15400:00:05.900 --> 00:00:07.999
149 00:00:05,900 --> 00:00:07.999 155C'est un sous-titre français
150 C'est un sous-titre français
151 156
152 3 15700:00:10.000 --> 00:00:14.000
153 00:00:10,000 --> 00:00:14.000 158Ajouter un sous-titre est vraiment facile`)
154 Ajouter un sous-titre est vraiment facile`)
155 } 159 }
156 160
157 { 161 {