live.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
  2. import 'mocha'
  3. import * as chai from 'chai'
  4. import { basename, join } from 'path'
  5. import { ffprobePromise, getVideoFileBitrate, getVideoStreamFromFile } from '@server/helpers/ffprobe-utils'
  6. import {
  7. checkLiveCleanupAfterSave,
  8. checkLiveSegmentHash,
  9. checkResolutionsInMasterPlaylist,
  10. cleanupTests,
  11. createMultipleServers,
  12. doubleFollow,
  13. killallServers,
  14. LiveCommand,
  15. makeRawRequest,
  16. PeerTubeServer,
  17. sendRTMPStream,
  18. setAccessTokensToServers,
  19. setDefaultVideoChannel,
  20. stopFfmpeg,
  21. testFfmpegStreamError,
  22. testImage,
  23. wait,
  24. waitJobs,
  25. waitUntilLivePublishedOnAllServers
  26. } from '@shared/extra-utils'
  27. import {
  28. HttpStatusCode,
  29. LiveVideo,
  30. LiveVideoCreate,
  31. VideoDetails,
  32. VideoPrivacy,
  33. VideoState,
  34. VideoStreamingPlaylistType
  35. } from '@shared/models'
  36. const expect = chai.expect
  37. describe('Test live', function () {
  38. let servers: PeerTubeServer[] = []
  39. let commands: LiveCommand[]
  40. before(async function () {
  41. this.timeout(120000)
  42. servers = await createMultipleServers(2)
  43. // Get the access tokens
  44. await setAccessTokensToServers(servers)
  45. await setDefaultVideoChannel(servers)
  46. await servers[0].config.updateCustomSubConfig({
  47. newConfig: {
  48. live: {
  49. enabled: true,
  50. allowReplay: true,
  51. transcoding: {
  52. enabled: false
  53. }
  54. }
  55. }
  56. })
  57. // Server 1 and server 2 follow each other
  58. await doubleFollow(servers[0], servers[1])
  59. commands = servers.map(s => s.live)
  60. })
  61. describe('Live creation, update and delete', function () {
  62. let liveVideoUUID: string
  63. it('Should create a live with the appropriate parameters', async function () {
  64. this.timeout(20000)
  65. const attributes: LiveVideoCreate = {
  66. category: 1,
  67. licence: 2,
  68. language: 'fr',
  69. description: 'super live description',
  70. support: 'support field',
  71. channelId: servers[0].store.channel.id,
  72. nsfw: false,
  73. waitTranscoding: false,
  74. name: 'my super live',
  75. tags: [ 'tag1', 'tag2' ],
  76. commentsEnabled: false,
  77. downloadEnabled: false,
  78. saveReplay: true,
  79. privacy: VideoPrivacy.PUBLIC,
  80. previewfile: 'video_short1-preview.webm.jpg',
  81. thumbnailfile: 'video_short1.webm.jpg'
  82. }
  83. const live = await commands[0].create({ fields: attributes })
  84. liveVideoUUID = live.uuid
  85. await waitJobs(servers)
  86. for (const server of servers) {
  87. const video = await server.videos.get({ id: liveVideoUUID })
  88. expect(video.category.id).to.equal(1)
  89. expect(video.licence.id).to.equal(2)
  90. expect(video.language.id).to.equal('fr')
  91. expect(video.description).to.equal('super live description')
  92. expect(video.support).to.equal('support field')
  93. expect(video.channel.name).to.equal(servers[0].store.channel.name)
  94. expect(video.channel.host).to.equal(servers[0].store.channel.host)
  95. expect(video.isLive).to.be.true
  96. expect(video.nsfw).to.be.false
  97. expect(video.waitTranscoding).to.be.false
  98. expect(video.name).to.equal('my super live')
  99. expect(video.tags).to.deep.equal([ 'tag1', 'tag2' ])
  100. expect(video.commentsEnabled).to.be.false
  101. expect(video.downloadEnabled).to.be.false
  102. expect(video.privacy.id).to.equal(VideoPrivacy.PUBLIC)
  103. await testImage(server.url, 'video_short1-preview.webm', video.previewPath)
  104. await testImage(server.url, 'video_short1.webm', video.thumbnailPath)
  105. const live = await server.live.get({ videoId: liveVideoUUID })
  106. if (server.url === servers[0].url) {
  107. expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
  108. expect(live.streamKey).to.not.be.empty
  109. } else {
  110. expect(live.rtmpUrl).to.be.null
  111. expect(live.streamKey).to.be.null
  112. }
  113. expect(live.saveReplay).to.be.true
  114. }
  115. })
  116. it('Should have a default preview and thumbnail', async function () {
  117. this.timeout(20000)
  118. const attributes: LiveVideoCreate = {
  119. name: 'default live thumbnail',
  120. channelId: servers[0].store.channel.id,
  121. privacy: VideoPrivacy.UNLISTED,
  122. nsfw: true
  123. }
  124. const live = await commands[0].create({ fields: attributes })
  125. const videoId = live.uuid
  126. await waitJobs(servers)
  127. for (const server of servers) {
  128. const video = await server.videos.get({ id: videoId })
  129. expect(video.privacy.id).to.equal(VideoPrivacy.UNLISTED)
  130. expect(video.nsfw).to.be.true
  131. await makeRawRequest(server.url + video.thumbnailPath, HttpStatusCode.OK_200)
  132. await makeRawRequest(server.url + video.previewPath, HttpStatusCode.OK_200)
  133. }
  134. })
  135. it('Should not have the live listed since nobody streams into', async function () {
  136. for (const server of servers) {
  137. const { total, data } = await server.videos.list()
  138. expect(total).to.equal(0)
  139. expect(data).to.have.lengthOf(0)
  140. }
  141. })
  142. it('Should not be able to update a live of another server', async function () {
  143. await commands[1].update({ videoId: liveVideoUUID, fields: { saveReplay: false }, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
  144. })
  145. it('Should update the live', async function () {
  146. this.timeout(10000)
  147. await commands[0].update({ videoId: liveVideoUUID, fields: { saveReplay: false } })
  148. await waitJobs(servers)
  149. })
  150. it('Have the live updated', async function () {
  151. for (const server of servers) {
  152. const live = await server.live.get({ videoId: liveVideoUUID })
  153. if (server.url === servers[0].url) {
  154. expect(live.rtmpUrl).to.equal('rtmp://' + server.hostname + ':' + servers[0].rtmpPort + '/live')
  155. expect(live.streamKey).to.not.be.empty
  156. } else {
  157. expect(live.rtmpUrl).to.be.null
  158. expect(live.streamKey).to.be.null
  159. }
  160. expect(live.saveReplay).to.be.false
  161. }
  162. })
  163. it('Delete the live', async function () {
  164. this.timeout(10000)
  165. await servers[0].videos.remove({ id: liveVideoUUID })
  166. await waitJobs(servers)
  167. })
  168. it('Should have the live deleted', async function () {
  169. for (const server of servers) {
  170. await server.videos.get({ id: liveVideoUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
  171. await server.live.get({ videoId: liveVideoUUID, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
  172. }
  173. })
  174. })
  175. describe('Live filters', function () {
  176. let ffmpegCommand: any
  177. let liveVideoId: string
  178. let vodVideoId: string
  179. before(async function () {
  180. this.timeout(120000)
  181. vodVideoId = (await servers[0].videos.quickUpload({ name: 'vod video' })).uuid
  182. const liveOptions = { name: 'live', privacy: VideoPrivacy.PUBLIC, channelId: servers[0].store.channel.id }
  183. const live = await commands[0].create({ fields: liveOptions })
  184. liveVideoId = live.uuid
  185. ffmpegCommand = await servers[0].live.sendRTMPStreamInVideo({ videoId: liveVideoId })
  186. await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
  187. await waitJobs(servers)
  188. })
  189. it('Should only display lives', async function () {
  190. const { data, total } = await servers[0].videos.list({ isLive: true })
  191. expect(total).to.equal(1)
  192. expect(data).to.have.lengthOf(1)
  193. expect(data[0].name).to.equal('live')
  194. })
  195. it('Should not display lives', async function () {
  196. const { data, total } = await servers[0].videos.list({ isLive: false })
  197. expect(total).to.equal(1)
  198. expect(data).to.have.lengthOf(1)
  199. expect(data[0].name).to.equal('vod video')
  200. })
  201. it('Should display my lives', async function () {
  202. this.timeout(60000)
  203. await stopFfmpeg(ffmpegCommand)
  204. await waitJobs(servers)
  205. const { data } = await servers[0].videos.listMyVideos({ isLive: true })
  206. const result = data.every(v => v.isLive)
  207. expect(result).to.be.true
  208. })
  209. it('Should not display my lives', async function () {
  210. const { data } = await servers[0].videos.listMyVideos({ isLive: false })
  211. const result = data.every(v => !v.isLive)
  212. expect(result).to.be.true
  213. })
  214. after(async function () {
  215. await servers[0].videos.remove({ id: vodVideoId })
  216. await servers[0].videos.remove({ id: liveVideoId })
  217. })
  218. })
  219. describe('Stream checks', function () {
  220. let liveVideo: LiveVideo & VideoDetails
  221. let rtmpUrl: string
  222. before(function () {
  223. rtmpUrl = 'rtmp://' + servers[0].hostname + ':' + servers[0].rtmpPort + ''
  224. })
  225. async function createLiveWrapper () {
  226. const liveAttributes = {
  227. name: 'user live',
  228. channelId: servers[0].store.channel.id,
  229. privacy: VideoPrivacy.PUBLIC,
  230. saveReplay: false
  231. }
  232. const { uuid } = await commands[0].create({ fields: liveAttributes })
  233. const live = await commands[0].get({ videoId: uuid })
  234. const video = await servers[0].videos.get({ id: uuid })
  235. return Object.assign(video, live)
  236. }
  237. it('Should not allow a stream without the appropriate path', async function () {
  238. this.timeout(60000)
  239. liveVideo = await createLiveWrapper()
  240. const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/bad-live', streamKey: liveVideo.streamKey })
  241. await testFfmpegStreamError(command, true)
  242. })
  243. it('Should not allow a stream without the appropriate stream key', async function () {
  244. this.timeout(60000)
  245. const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: 'bad-stream-key' })
  246. await testFfmpegStreamError(command, true)
  247. })
  248. it('Should succeed with the correct params', async function () {
  249. this.timeout(60000)
  250. const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: liveVideo.streamKey })
  251. await testFfmpegStreamError(command, false)
  252. })
  253. it('Should list this live now someone stream into it', async function () {
  254. for (const server of servers) {
  255. const { total, data } = await server.videos.list()
  256. expect(total).to.equal(1)
  257. expect(data).to.have.lengthOf(1)
  258. const video = data[0]
  259. expect(video.name).to.equal('user live')
  260. expect(video.isLive).to.be.true
  261. }
  262. })
  263. it('Should not allow a stream on a live that was blacklisted', async function () {
  264. this.timeout(60000)
  265. liveVideo = await createLiveWrapper()
  266. await servers[0].blacklist.add({ videoId: liveVideo.uuid })
  267. const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: liveVideo.streamKey })
  268. await testFfmpegStreamError(command, true)
  269. })
  270. it('Should not allow a stream on a live that was deleted', async function () {
  271. this.timeout(60000)
  272. liveVideo = await createLiveWrapper()
  273. await servers[0].videos.remove({ id: liveVideo.uuid })
  274. const command = sendRTMPStream({ rtmpBaseUrl: rtmpUrl + '/live', streamKey: liveVideo.streamKey })
  275. await testFfmpegStreamError(command, true)
  276. })
  277. })
  278. describe('Live transcoding', function () {
  279. let liveVideoId: string
  280. async function createLiveWrapper (saveReplay: boolean) {
  281. const liveAttributes = {
  282. name: 'live video',
  283. channelId: servers[0].store.channel.id,
  284. privacy: VideoPrivacy.PUBLIC,
  285. saveReplay
  286. }
  287. const { uuid } = await commands[0].create({ fields: liveAttributes })
  288. return uuid
  289. }
  290. async function testVideoResolutions (liveVideoId: string, resolutions: number[]) {
  291. for (const server of servers) {
  292. const { data } = await server.videos.list()
  293. expect(data.find(v => v.uuid === liveVideoId)).to.exist
  294. const video = await server.videos.get({ id: liveVideoId })
  295. expect(video.streamingPlaylists).to.have.lengthOf(1)
  296. const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
  297. expect(hlsPlaylist).to.exist
  298. // Only finite files are displayed
  299. expect(hlsPlaylist.files).to.have.lengthOf(0)
  300. await checkResolutionsInMasterPlaylist({ server, playlistUrl: hlsPlaylist.playlistUrl, resolutions })
  301. for (let i = 0; i < resolutions.length; i++) {
  302. const segmentNum = 3
  303. const segmentName = `${i}-00000${segmentNum}.ts`
  304. await commands[0].waitUntilSegmentGeneration({ videoUUID: video.uuid, resolution: i, segment: segmentNum })
  305. const subPlaylist = await servers[0].streamingPlaylists.get({
  306. url: `${servers[0].url}/static/streaming-playlists/hls/${video.uuid}/${i}.m3u8`
  307. })
  308. expect(subPlaylist).to.contain(segmentName)
  309. const baseUrlAndPath = servers[0].url + '/static/streaming-playlists/hls'
  310. await checkLiveSegmentHash({
  311. server,
  312. baseUrlSegment: baseUrlAndPath,
  313. videoUUID: video.uuid,
  314. segmentName,
  315. hlsPlaylist
  316. })
  317. }
  318. }
  319. }
  320. function updateConf (resolutions: number[]) {
  321. return servers[0].config.updateCustomSubConfig({
  322. newConfig: {
  323. live: {
  324. enabled: true,
  325. allowReplay: true,
  326. maxDuration: -1,
  327. transcoding: {
  328. enabled: true,
  329. resolutions: {
  330. '240p': resolutions.includes(240),
  331. '360p': resolutions.includes(360),
  332. '480p': resolutions.includes(480),
  333. '720p': resolutions.includes(720),
  334. '1080p': resolutions.includes(1080),
  335. '2160p': resolutions.includes(2160)
  336. }
  337. }
  338. }
  339. }
  340. })
  341. }
  342. before(async function () {
  343. await updateConf([])
  344. })
  345. it('Should enable transcoding without additional resolutions', async function () {
  346. this.timeout(60000)
  347. liveVideoId = await createLiveWrapper(false)
  348. const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId })
  349. await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
  350. await waitJobs(servers)
  351. await testVideoResolutions(liveVideoId, [ 720 ])
  352. await stopFfmpeg(ffmpegCommand)
  353. })
  354. it('Should enable transcoding with some resolutions', async function () {
  355. this.timeout(60000)
  356. const resolutions = [ 240, 480 ]
  357. await updateConf(resolutions)
  358. liveVideoId = await createLiveWrapper(false)
  359. const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId })
  360. await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
  361. await waitJobs(servers)
  362. await testVideoResolutions(liveVideoId, resolutions)
  363. await stopFfmpeg(ffmpegCommand)
  364. })
  365. it('Should correctly set the appropriate bitrate depending on the input', async function () {
  366. this.timeout(120000)
  367. liveVideoId = await createLiveWrapper(false)
  368. const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({
  369. videoId: liveVideoId,
  370. fixtureName: 'video_short.mp4',
  371. copyCodecs: true
  372. })
  373. await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
  374. await waitJobs(servers)
  375. const video = await servers[0].videos.get({ id: liveVideoId })
  376. const masterPlaylist = video.streamingPlaylists[0].playlistUrl
  377. const probe = await ffprobePromise(masterPlaylist)
  378. const bitrates = probe.streams.map(s => parseInt(s.tags.variant_bitrate))
  379. for (const bitrate of bitrates) {
  380. expect(bitrate).to.exist
  381. expect(isNaN(bitrate)).to.be.false
  382. expect(bitrate).to.be.below(61_000_000) // video_short.mp4 bitrate
  383. }
  384. await stopFfmpeg(ffmpegCommand)
  385. })
  386. it('Should enable transcoding with some resolutions and correctly save them', async function () {
  387. this.timeout(200000)
  388. const resolutions = [ 240, 360, 720 ]
  389. await updateConf(resolutions)
  390. liveVideoId = await createLiveWrapper(true)
  391. const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
  392. await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
  393. await waitJobs(servers)
  394. await testVideoResolutions(liveVideoId, resolutions)
  395. await stopFfmpeg(ffmpegCommand)
  396. await commands[0].waitUntilEnded({ videoId: liveVideoId })
  397. await waitJobs(servers)
  398. await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
  399. const bitrateLimits = {
  400. 720: 5000 * 1000, // 60FPS
  401. 360: 1100 * 1000,
  402. 240: 600 * 1000
  403. }
  404. for (const server of servers) {
  405. const video = await server.videos.get({ id: liveVideoId })
  406. expect(video.state.id).to.equal(VideoState.PUBLISHED)
  407. expect(video.duration).to.be.greaterThan(1)
  408. expect(video.files).to.have.lengthOf(0)
  409. const hlsPlaylist = video.streamingPlaylists.find(s => s.type === VideoStreamingPlaylistType.HLS)
  410. await makeRawRequest(hlsPlaylist.playlistUrl, HttpStatusCode.OK_200)
  411. await makeRawRequest(hlsPlaylist.segmentsSha256Url, HttpStatusCode.OK_200)
  412. // We should have generated random filenames
  413. expect(basename(hlsPlaylist.playlistUrl)).to.not.equal('master.m3u8')
  414. expect(basename(hlsPlaylist.segmentsSha256Url)).to.not.equal('segments-sha256.json')
  415. expect(hlsPlaylist.files).to.have.lengthOf(resolutions.length)
  416. for (const resolution of resolutions) {
  417. const file = hlsPlaylist.files.find(f => f.resolution.id === resolution)
  418. expect(file).to.exist
  419. expect(file.size).to.be.greaterThan(1)
  420. if (resolution >= 720) {
  421. expect(file.fps).to.be.approximately(60, 2)
  422. } else {
  423. expect(file.fps).to.be.approximately(30, 2)
  424. }
  425. const filename = basename(file.fileUrl)
  426. expect(filename).to.not.contain(video.uuid)
  427. const segmentPath = servers[0].servers.buildDirectory(join('streaming-playlists', 'hls', video.uuid, filename))
  428. const probe = await ffprobePromise(segmentPath)
  429. const videoStream = await getVideoStreamFromFile(segmentPath, probe)
  430. expect(probe.format.bit_rate).to.be.below(bitrateLimits[videoStream.height])
  431. await makeRawRequest(file.torrentUrl, HttpStatusCode.OK_200)
  432. await makeRawRequest(file.fileUrl, HttpStatusCode.OK_200)
  433. }
  434. }
  435. })
  436. it('Should correctly have cleaned up the live files', async function () {
  437. this.timeout(30000)
  438. await checkLiveCleanupAfterSave(servers[0], liveVideoId, [ 240, 360, 720 ])
  439. })
  440. })
  441. describe('After a server restart', function () {
  442. let liveVideoId: string
  443. let liveVideoReplayId: string
  444. async function createLiveWrapper (saveReplay: boolean) {
  445. const liveAttributes = {
  446. name: 'live video',
  447. channelId: servers[0].store.channel.id,
  448. privacy: VideoPrivacy.PUBLIC,
  449. saveReplay
  450. }
  451. const { uuid } = await commands[0].create({ fields: liveAttributes })
  452. return uuid
  453. }
  454. before(async function () {
  455. this.timeout(120000)
  456. liveVideoId = await createLiveWrapper(false)
  457. liveVideoReplayId = await createLiveWrapper(true)
  458. await Promise.all([
  459. commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId }),
  460. commands[0].sendRTMPStreamInVideo({ videoId: liveVideoReplayId })
  461. ])
  462. await Promise.all([
  463. commands[0].waitUntilPublished({ videoId: liveVideoId }),
  464. commands[0].waitUntilPublished({ videoId: liveVideoReplayId })
  465. ])
  466. await commands[0].waitUntilSegmentGeneration({ videoUUID: liveVideoId, resolution: 0, segment: 2 })
  467. await commands[0].waitUntilSegmentGeneration({ videoUUID: liveVideoReplayId, resolution: 0, segment: 2 })
  468. await killallServers([ servers[0] ])
  469. await servers[0].run()
  470. await wait(5000)
  471. })
  472. it('Should cleanup lives', async function () {
  473. this.timeout(60000)
  474. await commands[0].waitUntilEnded({ videoId: liveVideoId })
  475. })
  476. it('Should save a live replay', async function () {
  477. this.timeout(120000)
  478. await commands[0].waitUntilPublished({ videoId: liveVideoReplayId })
  479. })
  480. })
  481. after(async function () {
  482. await cleanupTests(servers)
  483. })
  484. })