]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/tests/api/server/tracker.ts
Add auto block videos plugin tests
[github/Chocobozzz/PeerTube.git] / server / tests / api / server / tracker.ts
CommitLineData
a1587156 1/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await,@typescript-eslint/no-floating-promises */
cc43831a
C
2
3import * as magnetUtil from 'magnet-uri'
cc43831a 4import 'mocha'
7c3b7976
C
5import {
6 cleanupTests,
7 flushAndRunServer,
8 getVideo,
9 killallServers,
10 reRunServer,
11 ServerInfo,
12 uploadVideo
13} from '../../../../shared/extra-utils'
14import { setAccessTokensToServers } from '../../../../shared/extra-utils/index'
cc43831a
C
15import { VideoDetails } from '../../../../shared/models/videos'
16import * as WebTorrent from 'webtorrent'
17
18describe('Test tracker', function () {
19 let server: ServerInfo
20 let badMagnet: string
21 let goodMagnet: string
22
23 before(async function () {
24 this.timeout(60000)
210feb6c 25 server = await flushAndRunServer(1)
cc43831a
C
26 await setAccessTokensToServers([ server ])
27
28 {
29 const res = await uploadVideo(server.url, server.accessToken, {})
30 const videoUUID = res.body.video.uuid
31
32 const resGet = await getVideo(server.url, videoUUID)
33 const video: VideoDetails = resGet.body
34 goodMagnet = video.files[0].magnetUri
35
36 const parsed = magnetUtil.decode(goodMagnet)
37 parsed.infoHash = '010597bb88b1968a5693a4fa8267c592ca65f2e9'
38
39 badMagnet = magnetUtil.encode(parsed)
40 }
41 })
42
31b6ddf8 43 it('Should return an error when adding an incorrect infohash', function (done) {
cc43831a
C
44 this.timeout(10000)
45 const webtorrent = new WebTorrent()
46
47 const torrent = webtorrent.add(badMagnet)
48
49 torrent.on('error', done)
50 torrent.on('warning', warn => {
51 const message = typeof warn === 'string' ? warn : warn.message
bdd428a6 52 if (message.includes('Unknown infoHash ')) return done()
cc43831a
C
53 })
54
55 torrent.on('done', () => done(new Error('No error on infohash')))
56 })
57
31b6ddf8 58 it('Should succeed with the correct infohash', function (done) {
cc43831a
C
59 this.timeout(10000)
60 const webtorrent = new WebTorrent()
61
62 const torrent = webtorrent.add(goodMagnet)
63
64 torrent.on('error', done)
65 torrent.on('warning', warn => {
66 const message = typeof warn === 'string' ? warn : warn.message
bdd428a6 67 if (message.includes('Unknown infoHash ')) return done(new Error('Error on infohash'))
cc43831a
C
68 })
69
70 torrent.on('done', done)
71 })
72
31b6ddf8
C
73 it('Should disable the tracker', function (done) {
74 this.timeout(20000)
75
cf5d7d9d
C
76 const errCb = () => done(new Error('Tracker is enabled'))
77
31b6ddf8
C
78 killallServers([ server ])
79 reRunServer(server, { tracker: { enabled: false } })
80 .then(() => {
81 const webtorrent = new WebTorrent()
82
83 const torrent = webtorrent.add(goodMagnet)
84
85 torrent.on('error', done)
86 torrent.on('warning', warn => {
87 const message = typeof warn === 'string' ? warn : warn.message
cf5d7d9d
C
88 if (message.includes('disabled ')) {
89 torrent.off('done', errCb)
90
91 return done()
92 }
31b6ddf8
C
93 })
94
cf5d7d9d 95 torrent.on('done', errCb)
31b6ddf8
C
96 })
97 })
98
7c3b7976
C
99 after(async function () {
100 await cleanupTests([ server ])
cc43831a
C
101 })
102})