]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/server/services.ts
Fix missing delete cascade video -> channel
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / services.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
d8755eed 2
8b0d42ee 3import 'mocha'
6fad8e51 4import * as chai from 'chai'
6302d599 5import { Video, VideoPlaylistPrivacy } from '@shared/models'
6fad8e51 6import {
6302d599
C
7 addVideoInPlaylist,
8 createVideoPlaylist,
6fad8e51
C
9 getOEmbed,
10 getVideosList,
11 ServerInfo,
12 setAccessTokensToServers,
13 setDefaultVideoChannel,
6302d599 14 uploadVideo
6fad8e51 15} from '../../../../shared/extra-utils'
7c3b7976 16import { cleanupTests, flushAndRunServer } from '../../../../shared/extra-utils/server/servers'
d8755eed 17
8b0d42ee
C
18const expect = chai.expect
19
d8755eed
C
20describe('Test services', function () {
21 let server: ServerInfo = null
6fad8e51 22 let playlistUUID: string
4097c6d6 23 let playlistDisplayName: string
6302d599 24 let video: Video
d8755eed
C
25
26 before(async function () {
e212f887 27 this.timeout(30000)
d8755eed 28
210feb6c 29 server = await flushAndRunServer(1)
d8755eed
C
30
31 await setAccessTokensToServers([ server ])
6fad8e51 32 await setDefaultVideoChannel([ server ])
d8755eed 33
6fad8e51
C
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)
6302d599 41 video = res.body.data[0]
d8755eed 42 }
8b0d42ee 43
6fad8e51
C
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
4097c6d6 56 playlistDisplayName = 'The Life and Times of Scrooge McDuck'
6fad8e51
C
57
58 await addVideoInPlaylist({
59 url: server.url,
60 token: server.accessToken,
61 playlistId: res.body.videoPlaylist.id,
62 elementAttrs: {
6302d599 63 videoId: video.id
6fad8e51
C
64 }
65 })
66 }
d8755eed
C
67 })
68
6fad8e51 69 it('Should have a valid oEmbed video response', async function () {
a1eda903
C
70 for (const basePath of [ '/videos/watch/', '/w/' ]) {
71 const oembedUrl = 'http://localhost:' + server.port + basePath + video.uuid
72
73 const res = await getOEmbed(server.url, oembedUrl)
74 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
75 `title="${video.name}" src="http://localhost:${server.port}/videos/embed/${video.uuid}" ` +
76 'frameborder="0" allowfullscreen></iframe>'
77 const expectedThumbnailUrl = 'http://localhost:' + server.port + video.previewPath
78
79 expect(res.body.html).to.equal(expectedHtml)
80 expect(res.body.title).to.equal(video.name)
81 expect(res.body.author_name).to.equal(server.videoChannel.displayName)
82 expect(res.body.width).to.equal(560)
83 expect(res.body.height).to.equal(315)
84 expect(res.body.thumbnail_url).to.equal(expectedThumbnailUrl)
85 expect(res.body.thumbnail_width).to.equal(850)
86 expect(res.body.thumbnail_height).to.equal(480)
87 }
d8755eed
C
88 })
89
6fad8e51 90 it('Should have a valid playlist oEmbed response', async function () {
a1eda903
C
91 for (const basePath of [ '/videos/watch/playlist/', '/w/p/' ]) {
92 const oembedUrl = 'http://localhost:' + server.port + basePath + playlistUUID
93
94 const res = await getOEmbed(server.url, oembedUrl)
95 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
96 `title="${playlistDisplayName}" src="http://localhost:${server.port}/video-playlists/embed/${playlistUUID}" ` +
97 'frameborder="0" allowfullscreen></iframe>'
98
99 expect(res.body.html).to.equal(expectedHtml)
100 expect(res.body.title).to.equal('The Life and Times of Scrooge McDuck')
101 expect(res.body.author_name).to.equal(server.videoChannel.displayName)
102 expect(res.body.width).to.equal(560)
103 expect(res.body.height).to.equal(315)
104 expect(res.body.thumbnail_url).exist
105 expect(res.body.thumbnail_width).to.equal(280)
106 expect(res.body.thumbnail_height).to.equal(157)
107 }
6fad8e51
C
108 })
109
d8755eed 110 it('Should have a valid oEmbed response with small max height query', async function () {
a1eda903
C
111 for (const basePath of [ '/videos/watch/', '/w/' ]) {
112 const oembedUrl = 'http://localhost:' + server.port + basePath + video.uuid
113 const format = 'json'
114 const maxHeight = 50
115 const maxWidth = 50
116
117 const res = await getOEmbed(server.url, oembedUrl, format, maxHeight, maxWidth)
118 const expectedHtml = '<iframe width="50" height="50" sandbox="allow-same-origin allow-scripts" ' +
119 `title="${video.name}" src="http://localhost:${server.port}/videos/embed/${video.uuid}" ` +
120 'frameborder="0" allowfullscreen></iframe>'
121
122 expect(res.body.html).to.equal(expectedHtml)
123 expect(res.body.title).to.equal(video.name)
124 expect(res.body.author_name).to.equal(server.videoChannel.displayName)
125 expect(res.body.height).to.equal(50)
126 expect(res.body.width).to.equal(50)
127 expect(res.body).to.not.have.property('thumbnail_url')
128 expect(res.body).to.not.have.property('thumbnail_width')
129 expect(res.body).to.not.have.property('thumbnail_height')
130 }
d8755eed
C
131 })
132
7c3b7976
C
133 after(async function () {
134 await cleanupTests([ server ])
d8755eed
C
135 })
136})