]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/videos/services.ts
Add migrations
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / services.ts
CommitLineData
d8755eed
C
1/* tslint:disable:no-unused-expression */
2
d8755eed 3import * as chai from 'chai'
8b0d42ee 4import 'mocha'
9639bd17 5import {
6 flushTests,
7 getOEmbed,
8 getVideosList,
9 killallServers,
10 ServerInfo,
11 setAccessTokensToServers,
12 uploadVideo
94565d52
C
13} from '../../../../shared/extra-utils/index'
14import { runServer } from '../../../../shared/extra-utils/server/servers'
d8755eed 15
8b0d42ee
C
16const expect = chai.expect
17
d8755eed
C
18describe('Test services', function () {
19 let server: ServerInfo = null
20
21 before(async function () {
e212f887 22 this.timeout(30000)
d8755eed
C
23
24 await flushTests()
25
26 server = await runServer(1)
27
28 await setAccessTokensToServers([ server ])
29
30 const videoAttributes = {
31 name: 'my super name'
32 }
8b0d42ee
C
33 await uploadVideo(server.url, server.accessToken, videoAttributes)
34
35 const res = await getVideosList(server.url)
36 server.video = res.body.data[0]
d8755eed
C
37 })
38
39 it('Should have a valid oEmbed response', async function () {
40 const oembedUrl = 'http://localhost:9001/videos/watch/' + server.video.uuid
41
42 const res = await getOEmbed(server.url, oembedUrl)
2186386c
C
43 const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' +
44 `src="http://localhost:9001/videos/embed/${server.video.uuid}" ` +
d8755eed 45 'frameborder="0" allowfullscreen></iframe>'
164174a6 46 const expectedThumbnailUrl = 'http://localhost:9001/static/previews/' + server.video.uuid + '.jpg'
d8755eed
C
47
48 expect(res.body.html).to.equal(expectedHtml)
49 expect(res.body.title).to.equal(server.video.name)
b64c950a 50 expect(res.body.author_name).to.equal(server.video.account.name)
d8755eed 51 expect(res.body.width).to.equal(560)
164174a6 52 expect(res.body.height).to.equal(315)
d8755eed 53 expect(res.body.thumbnail_url).to.equal(expectedThumbnailUrl)
164174a6
C
54 expect(res.body.thumbnail_width).to.equal(560)
55 expect(res.body.thumbnail_height).to.equal(315)
d8755eed
C
56 })
57
58 it('Should have a valid oEmbed response with small max height query', async function () {
59 const oembedUrl = 'http://localhost:9001/videos/watch/' + server.video.uuid
60 const format = 'json'
61 const maxHeight = 50
62 const maxWidth = 50
63
64 const res = await getOEmbed(server.url, oembedUrl, format, maxHeight, maxWidth)
3cd0734f
C
65 const expectedHtml = '<iframe width="50" height="50" sandbox="allow-same-origin allow-scripts" ' +
66 `src="http://localhost:9001/videos/embed/${server.video.uuid}" ` +
d8755eed
C
67 'frameborder="0" allowfullscreen></iframe>'
68
69 expect(res.body.html).to.equal(expectedHtml)
70 expect(res.body.title).to.equal(server.video.name)
b64c950a 71 expect(res.body.author_name).to.equal(server.video.account.name)
d8755eed
C
72 expect(res.body.height).to.equal(50)
73 expect(res.body.width).to.equal(50)
74 expect(res.body).to.not.have.property('thumbnail_url')
75 expect(res.body).to.not.have.property('thumbnail_width')
76 expect(res.body).to.not.have.property('thumbnail_height')
77 })
78
79 after(async function () {
80 killallServers([ server ])
d8755eed
C
81 })
82})