2018-01-19 03:15:42 -05:00
|
|
|
/* tslint:disable:no-unused-expression */
|
|
|
|
|
2017-09-07 09:27:35 -04:00
|
|
|
import 'mocha'
|
|
|
|
import * as chai from 'chai'
|
2018-03-19 07:36:41 -04:00
|
|
|
import { VideoDetails } from '../../../shared/models/videos'
|
2017-09-07 09:27:35 -04:00
|
|
|
import {
|
|
|
|
execCLI,
|
|
|
|
flushTests,
|
|
|
|
getEnvCli,
|
2018-06-13 04:06:50 -04:00
|
|
|
getVideo,
|
2017-09-07 09:27:35 -04:00
|
|
|
getVideosList,
|
|
|
|
killallServers,
|
|
|
|
parseTorrentVideo,
|
|
|
|
runServer,
|
|
|
|
ServerInfo,
|
|
|
|
setAccessTokensToServers,
|
2018-06-13 04:06:50 -04:00
|
|
|
uploadVideo
|
2017-09-07 09:27:35 -04:00
|
|
|
} from '../utils'
|
2018-06-13 04:06:50 -04:00
|
|
|
import { waitJobs } from '../utils/server/jobs'
|
|
|
|
|
|
|
|
const expect = chai.expect
|
2017-09-07 09:27:35 -04:00
|
|
|
|
|
|
|
describe('Test update host scripts', function () {
|
|
|
|
let server: ServerInfo
|
|
|
|
|
|
|
|
before(async function () {
|
2017-10-02 06:20:26 -04:00
|
|
|
this.timeout(60000)
|
2017-09-07 09:27:35 -04:00
|
|
|
|
|
|
|
await flushTests()
|
|
|
|
|
|
|
|
const overrideConfig = {
|
|
|
|
webserver: {
|
|
|
|
port: 9256
|
|
|
|
}
|
|
|
|
}
|
2017-10-02 06:20:26 -04:00
|
|
|
// Run server 2 to have transcoding enabled
|
|
|
|
server = await runServer(2, overrideConfig)
|
2017-09-07 09:27:35 -04:00
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
// Upload two videos for our needs
|
|
|
|
const videoAttributes = {}
|
|
|
|
await uploadVideo(server.url, server.accessToken, videoAttributes)
|
|
|
|
await uploadVideo(server.url, server.accessToken, videoAttributes)
|
2018-06-13 04:06:50 -04:00
|
|
|
|
|
|
|
await waitJobs(server)
|
2017-09-07 09:27:35 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should update torrent hosts', async function () {
|
2017-09-07 15:46:44 -04:00
|
|
|
this.timeout(30000)
|
2017-09-07 09:27:35 -04:00
|
|
|
|
|
|
|
killallServers([ server ])
|
2017-10-02 06:20:26 -04:00
|
|
|
// Run server with standard configuration
|
|
|
|
server = await runServer(2)
|
2017-09-07 09:27:35 -04:00
|
|
|
|
|
|
|
const env = getEnvCli(server)
|
|
|
|
await execCLI(`${env} npm run update-host`)
|
|
|
|
|
|
|
|
const res = await getVideosList(server.url)
|
|
|
|
const videos = res.body.data
|
2017-10-02 06:20:26 -04:00
|
|
|
expect(videos).to.have.lengthOf(2)
|
2017-09-07 09:27:35 -04:00
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
for (const video of videos) {
|
2017-10-24 13:41:30 -04:00
|
|
|
const res2 = await getVideo(server.url, video.id)
|
2018-03-19 07:36:41 -04:00
|
|
|
const videoDetails: VideoDetails = res2.body
|
2017-09-07 09:27:35 -04:00
|
|
|
|
2017-10-24 13:41:30 -04:00
|
|
|
expect(videoDetails.files).to.have.lengthOf(4)
|
|
|
|
|
|
|
|
for (const file of videoDetails.files) {
|
2017-10-02 06:20:26 -04:00
|
|
|
expect(file.magnetUri).to.contain('localhost%3A9002%2Ftracker%2Fsocket')
|
|
|
|
expect(file.magnetUri).to.contain('localhost%3A9002%2Fstatic%2Fwebseed%2F')
|
2017-09-07 09:27:35 -04:00
|
|
|
|
2018-03-19 07:36:41 -04:00
|
|
|
const torrent = await parseTorrentVideo(server, videoDetails.uuid, file.resolution.id)
|
2018-01-19 03:15:42 -05:00
|
|
|
const announceWS = torrent.announce.find(a => a === 'ws://localhost:9002/tracker/socket')
|
|
|
|
expect(announceWS).to.not.be.undefined
|
|
|
|
|
|
|
|
const announceHttp = torrent.announce.find(a => a === 'http://localhost:9002/tracker/announce')
|
|
|
|
expect(announceHttp).to.not.be.undefined
|
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
expect(torrent.urlList[0]).to.contain('http://localhost:9002/static/webseed')
|
|
|
|
}
|
|
|
|
}
|
2017-09-07 09:27:35 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
after(async function () {
|
|
|
|
killallServers([ server ])
|
|
|
|
})
|
|
|
|
})
|