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