]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/activitypub/refresher.ts
Introduce channels command
[github/Chocobozzz/PeerTube.git] / server / tests / api / activitypub / refresher.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import { HttpStatusCode } from '@shared/core-utils'
5 import {
6 cleanupTests,
7 closeAllSequelize,
8 doubleFollow,
9 flushAndRunMultipleServers,
10 generateUserAccessToken,
11 getVideo,
12 killallServers,
13 reRunServer,
14 ServerInfo,
15 setAccessTokensToServers,
16 setActorField,
17 setDefaultVideoChannel,
18 setPlaylistField,
19 setVideoField,
20 uploadVideo,
21 uploadVideoAndGetId,
22 wait,
23 waitJobs
24 } from '@shared/extra-utils'
25 import { VideoPlaylistPrivacy } from '@shared/models'
26
27 describe('Test AP refresher', function () {
28 let servers: ServerInfo[] = []
29 let videoUUID1: string
30 let videoUUID2: string
31 let videoUUID3: string
32 let playlistUUID1: string
33 let playlistUUID2: string
34
35 before(async function () {
36 this.timeout(60000)
37
38 servers = await flushAndRunMultipleServers(2, { transcoding: { enabled: false } })
39
40 // Get the access tokens
41 await setAccessTokensToServers(servers)
42 await setDefaultVideoChannel(servers)
43
44 {
45 videoUUID1 = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video1' })).uuid
46 videoUUID2 = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video2' })).uuid
47 videoUUID3 = (await uploadVideoAndGetId({ server: servers[1], videoName: 'video3' })).uuid
48 }
49
50 {
51 const a1 = await generateUserAccessToken(servers[1], 'user1')
52 await uploadVideo(servers[1].url, a1, { name: 'video4' })
53
54 const a2 = await generateUserAccessToken(servers[1], 'user2')
55 await uploadVideo(servers[1].url, a2, { name: 'video5' })
56 }
57
58 {
59 const attributes = { displayName: 'playlist1', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[1].videoChannel.id }
60 const created = await servers[1].playlistsCommand.create({ attributes })
61 playlistUUID1 = created.uuid
62 }
63
64 {
65 const attributes = { displayName: 'playlist2', privacy: VideoPlaylistPrivacy.PUBLIC, videoChannelId: servers[1].videoChannel.id }
66 const created = await servers[1].playlistsCommand.create({ attributes })
67 playlistUUID2 = created.uuid
68 }
69
70 await doubleFollow(servers[0], servers[1])
71 })
72
73 describe('Videos refresher', function () {
74
75 it('Should remove a deleted remote video', async function () {
76 this.timeout(60000)
77
78 await wait(10000)
79
80 // Change UUID so the remote server returns a 404
81 await setVideoField(servers[1].internalServerNumber, videoUUID1, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b174f')
82
83 await getVideo(servers[0].url, videoUUID1)
84 await getVideo(servers[0].url, videoUUID2)
85
86 await waitJobs(servers)
87
88 await getVideo(servers[0].url, videoUUID1, HttpStatusCode.NOT_FOUND_404)
89 await getVideo(servers[0].url, videoUUID2, HttpStatusCode.OK_200)
90 })
91
92 it('Should not update a remote video if the remote instance is down', async function () {
93 this.timeout(70000)
94
95 killallServers([ servers[1] ])
96
97 await setVideoField(servers[1].internalServerNumber, videoUUID3, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b174e')
98
99 // Video will need a refresh
100 await wait(10000)
101
102 await getVideo(servers[0].url, videoUUID3)
103 // The refresh should fail
104 await waitJobs([ servers[0] ])
105
106 await reRunServer(servers[1])
107
108 await getVideo(servers[0].url, videoUUID3, HttpStatusCode.OK_200)
109 })
110 })
111
112 describe('Actors refresher', function () {
113
114 it('Should remove a deleted actor', async function () {
115 this.timeout(60000)
116
117 const command = servers[0].accountsCommand
118
119 await wait(10000)
120
121 // Change actor name so the remote server returns a 404
122 const to = 'http://localhost:' + servers[1].port + '/accounts/user2'
123 await setActorField(servers[1].internalServerNumber, to, 'preferredUsername', 'toto')
124
125 await command.get({ accountName: 'user1@localhost:' + servers[1].port })
126 await command.get({ accountName: 'user2@localhost:' + servers[1].port })
127
128 await waitJobs(servers)
129
130 await command.get({ accountName: 'user1@localhost:' + servers[1].port, expectedStatus: HttpStatusCode.OK_200 })
131 await command.get({ accountName: 'user2@localhost:' + servers[1].port, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
132 })
133 })
134
135 describe('Playlist refresher', function () {
136
137 it('Should remove a deleted playlist', async function () {
138 this.timeout(60000)
139
140 await wait(10000)
141
142 // Change UUID so the remote server returns a 404
143 await setPlaylistField(servers[1].internalServerNumber, playlistUUID2, 'uuid', '304afe4f-39f9-4d49-8ed7-ac57b86b178e')
144
145 await servers[0].playlistsCommand.get({ playlistId: playlistUUID1 })
146 await servers[0].playlistsCommand.get({ playlistId: playlistUUID2 })
147
148 await waitJobs(servers)
149
150 await servers[0].playlistsCommand.get({ playlistId: playlistUUID1, expectedStatus: HttpStatusCode.OK_200 })
151 await servers[0].playlistsCommand.get({ playlistId: playlistUUID2, expectedStatus: HttpStatusCode.NOT_FOUND_404 })
152 })
153 })
154
155 after(async function () {
156 this.timeout(10000)
157
158 await cleanupTests(servers)
159
160 await closeAllSequelize(servers)
161 })
162 })