]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/server/services.ts
fix missing title attribute on <iframe> tag suggested for embedding (#3901)
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / services.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import * as chai from 'chai'
5 import { Video, VideoPlaylistPrivacy } from '@shared/models'
6 import {
7 addVideoInPlaylist,
8 createVideoPlaylist,
9 getOEmbed,
10 getVideosList,
11 ServerInfo,
12 setAccessTokensToServers,
13 setDefaultVideoChannel,
14 uploadVideo
15 } from '../../../../shared/extra-utils'
16 import { cleanupTests, flushAndRunServer } from '../../../../shared/extra-utils/server/servers'
17
18 const expect = chai.expect
19
20 describe('Test services', function () {
21 let server: ServerInfo = null
22 let playlistUUID: string
23 let playlistDisplayName: string
24 let video: Video
25
26 before(async function () {
27 this.timeout(30000)
28
29 server = await flushAndRunServer(1)
30
31 await setAccessTokensToServers([ server ])
32 await setDefaultVideoChannel([ server ])
33
34 {
35 const videoAttributes = {
36 name: 'my super name'
37 }
38 await uploadVideo(server.url, server.accessToken, videoAttributes)
39
40 const res = await getVideosList(server.url)
41 video = res.body.data[0]
42 }
43
44 {
45 const res = await createVideoPlaylist({
46 url: server.url,
47 token: server.accessToken,
48 playlistAttrs: {
49 displayName: 'The Life and Times of Scrooge McDuck',
50 privacy: VideoPlaylistPrivacy.PUBLIC,
51 videoChannelId: server.videoChannel.id
52 }
53 })
54
55 playlistUUID = res.body.videoPlaylist.uuid
56 playlistDisplayName = 'The Life and Times of Scrooge McDuck'
57
58 await addVideoInPlaylist({
59 url: server.url,
60 token: server.accessToken,
61 playlistId: res.body.videoPlaylist.id,
62 elementAttrs: {
63 videoId: video.id
64 }
65 })
66 }
67 })
68
69 it('Should have a valid oEmbed video response', async function () {
70 const oembedUrl = 'http://localhost:' + server.port + '/videos/watch/' + video.uuid
71
72 const res = await getOEmbed(server.url, oembedUrl)
73 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
74 `title="${video.name}" src="http://localhost:${server.port}/videos/embed/${video.uuid}" ` +
75 'frameborder="0" allowfullscreen></iframe>'
76 const expectedThumbnailUrl = 'http://localhost:' + server.port + video.previewPath
77
78 expect(res.body.html).to.equal(expectedHtml)
79 expect(res.body.title).to.equal(video.name)
80 expect(res.body.author_name).to.equal(server.videoChannel.displayName)
81 expect(res.body.width).to.equal(560)
82 expect(res.body.height).to.equal(315)
83 expect(res.body.thumbnail_url).to.equal(expectedThumbnailUrl)
84 expect(res.body.thumbnail_width).to.equal(850)
85 expect(res.body.thumbnail_height).to.equal(480)
86 })
87
88 it('Should have a valid playlist oEmbed response', async function () {
89 const oembedUrl = 'http://localhost:' + server.port + '/videos/watch/playlist/' + playlistUUID
90
91 const res = await getOEmbed(server.url, oembedUrl)
92 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
93 `title="${playlistDisplayName}" src="http://localhost:${server.port}/video-playlists/embed/${playlistUUID}" ` +
94 'frameborder="0" allowfullscreen></iframe>'
95
96 expect(res.body.html).to.equal(expectedHtml)
97 expect(res.body.title).to.equal('The Life and Times of Scrooge McDuck')
98 expect(res.body.author_name).to.equal(server.videoChannel.displayName)
99 expect(res.body.width).to.equal(560)
100 expect(res.body.height).to.equal(315)
101 expect(res.body.thumbnail_url).exist
102 expect(res.body.thumbnail_width).to.equal(223)
103 expect(res.body.thumbnail_height).to.equal(122)
104 })
105
106 it('Should have a valid oEmbed response with small max height query', async function () {
107 const oembedUrl = 'http://localhost:' + server.port + '/videos/watch/' + video.uuid
108 const format = 'json'
109 const maxHeight = 50
110 const maxWidth = 50
111
112 const res = await getOEmbed(server.url, oembedUrl, format, maxHeight, maxWidth)
113 const expectedHtml = '<iframe width="50" height="50" sandbox="allow-same-origin allow-scripts" ' +
114 `title="${video.name}" src="http://localhost:${server.port}/videos/embed/${video.uuid}" ` +
115 'frameborder="0" allowfullscreen></iframe>'
116
117 expect(res.body.html).to.equal(expectedHtml)
118 expect(res.body.title).to.equal(video.name)
119 expect(res.body.author_name).to.equal(server.videoChannel.displayName)
120 expect(res.body.height).to.equal(50)
121 expect(res.body.width).to.equal(50)
122 expect(res.body).to.not.have.property('thumbnail_url')
123 expect(res.body).to.not.have.property('thumbnail_width')
124 expect(res.body).to.not.have.property('thumbnail_height')
125 })
126
127 after(async function () {
128 await cleanupTests([ server ])
129 })
130 })