]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/server/services.ts
69d030dbb8d4a585adb7af0a871464e909c4153d
[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 { cleanupTests, createSingleServer, PeerTubeServer, setAccessTokensToServers, setDefaultVideoChannel } from '@shared/extra-utils'
6 import { Video, VideoPlaylistPrivacy } from '@shared/models'
7
8 const expect = chai.expect
9
10 describe('Test services', function () {
11 let server: PeerTubeServer = null
12 let playlistUUID: string
13 let playlistDisplayName: string
14 let video: Video
15
16 before(async function () {
17 this.timeout(30000)
18
19 server = await createSingleServer(1)
20
21 await setAccessTokensToServers([ server ])
22 await setDefaultVideoChannel([ server ])
23
24 {
25 const attributes = { name: 'my super name' }
26 await server.videos.upload({ attributes })
27
28 const { data } = await server.videos.list()
29 video = data[0]
30 }
31
32 {
33 const created = await server.playlists.create({
34 attributes: {
35 displayName: 'The Life and Times of Scrooge McDuck',
36 privacy: VideoPlaylistPrivacy.PUBLIC,
37 videoChannelId: server.store.channel.id
38 }
39 })
40
41 playlistUUID = created.uuid
42 playlistDisplayName = 'The Life and Times of Scrooge McDuck'
43
44 await server.playlists.addElement({
45 playlistId: created.id,
46 attributes: {
47 videoId: video.id
48 }
49 })
50 }
51 })
52
53 it('Should have a valid oEmbed video response', async function () {
54 for (const basePath of [ '/videos/watch/', '/w/' ]) {
55 const oembedUrl = 'http://localhost:' + server.port + basePath + video.uuid
56
57 const res = await server.services.getOEmbed({ oembedUrl })
58 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
59 `title="${video.name}" src="http://localhost:${server.port}/videos/embed/${video.uuid}" ` +
60 'frameborder="0" allowfullscreen></iframe>'
61 const expectedThumbnailUrl = 'http://localhost:' + server.port + video.previewPath
62
63 expect(res.body.html).to.equal(expectedHtml)
64 expect(res.body.title).to.equal(video.name)
65 expect(res.body.author_name).to.equal(server.store.channel.displayName)
66 expect(res.body.width).to.equal(560)
67 expect(res.body.height).to.equal(315)
68 expect(res.body.thumbnail_url).to.equal(expectedThumbnailUrl)
69 expect(res.body.thumbnail_width).to.equal(850)
70 expect(res.body.thumbnail_height).to.equal(480)
71 }
72 })
73
74 it('Should have a valid playlist oEmbed response', async function () {
75 for (const basePath of [ '/videos/watch/playlist/', '/w/p/' ]) {
76 const oembedUrl = 'http://localhost:' + server.port + basePath + playlistUUID
77
78 const res = await server.services.getOEmbed({ oembedUrl })
79 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
80 `title="${playlistDisplayName}" src="http://localhost:${server.port}/video-playlists/embed/${playlistUUID}" ` +
81 'frameborder="0" allowfullscreen></iframe>'
82
83 expect(res.body.html).to.equal(expectedHtml)
84 expect(res.body.title).to.equal('The Life and Times of Scrooge McDuck')
85 expect(res.body.author_name).to.equal(server.store.channel.displayName)
86 expect(res.body.width).to.equal(560)
87 expect(res.body.height).to.equal(315)
88 expect(res.body.thumbnail_url).exist
89 expect(res.body.thumbnail_width).to.equal(280)
90 expect(res.body.thumbnail_height).to.equal(157)
91 }
92 })
93
94 it('Should have a valid oEmbed response with small max height query', async function () {
95 for (const basePath of [ '/videos/watch/', '/w/' ]) {
96 const oembedUrl = 'http://localhost:' + server.port + basePath + video.uuid
97 const format = 'json'
98 const maxHeight = 50
99 const maxWidth = 50
100
101 const res = await server.services.getOEmbed({ oembedUrl, format, maxHeight, maxWidth })
102 const expectedHtml = '<iframe width="50" height="50" sandbox="allow-same-origin allow-scripts" ' +
103 `title="${video.name}" src="http://localhost:${server.port}/videos/embed/${video.uuid}" ` +
104 'frameborder="0" allowfullscreen></iframe>'
105
106 expect(res.body.html).to.equal(expectedHtml)
107 expect(res.body.title).to.equal(video.name)
108 expect(res.body.author_name).to.equal(server.store.channel.displayName)
109 expect(res.body.height).to.equal(50)
110 expect(res.body.width).to.equal(50)
111 expect(res.body).to.not.have.property('thumbnail_url')
112 expect(res.body).to.not.have.property('thumbnail_width')
113 expect(res.body).to.not.have.property('thumbnail_height')
114 }
115 })
116
117 after(async function () {
118 await cleanupTests([ server ])
119 })
120 })