]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/api/users/users-multiple-servers.ts
Video channel API routes refractor
[github/Chocobozzz/PeerTube.git] / server / tests / api / users / users-multiple-servers.ts
1 /* tslint:disable:no-unused-expression */
2
3 import * as chai from 'chai'
4 import 'mocha'
5 import { Account } from '../../../../shared/models/actors'
6 import {
7 checkVideoFilesWereRemoved,
8 createUser,
9 doubleFollow,
10 flushAndRunMultipleServers,
11 getAccountVideos,
12 getVideoChannelsList,
13 removeUser,
14 updateMyUser,
15 userLogin,
16 wait
17 } from '../../utils'
18 import { flushTests, getMyUserInformation, killallServers, ServerInfo, testImage, updateMyAvatar, uploadVideo } from '../../utils/index'
19 import { checkActorFilesWereRemoved, getAccount, getAccountsList } from '../../utils/users/accounts'
20 import { setAccessTokensToServers } from '../../utils/users/login'
21 import { User } from '../../../../shared/models/users'
22 import { VideoChannel } from '../../../../shared/models/videos'
23
24 const expect = chai.expect
25
26 describe('Test users with multiple servers', function () {
27 let servers: ServerInfo[] = []
28 let user: User
29 let userAccountUUID: string
30 let userVideoChannelUUID: string
31 let userId: number
32 let videoUUID: string
33 let userAccessToken: string
34
35 before(async function () {
36 this.timeout(120000)
37
38 servers = await flushAndRunMultipleServers(3)
39
40 // Get the access tokens
41 await setAccessTokensToServers(servers)
42
43 // Server 1 and server 2 follow each other
44 await doubleFollow(servers[0], servers[1])
45 // Server 1 and server 3 follow each other
46 await doubleFollow(servers[0], servers[2])
47 // Server 2 and server 3 follow each other
48 await doubleFollow(servers[1], servers[2])
49
50 // The root user of server 1 is propagated to servers 2 and 3
51 await uploadVideo(servers[0].url, servers[0].accessToken, {})
52
53 {
54 const user = {
55 username: 'user1',
56 password: 'password'
57 }
58 const res = await createUser(servers[ 0 ].url, servers[ 0 ].accessToken, user.username, user.password)
59 userAccountUUID = res.body.user.account.uuid
60 userId = res.body.user.id
61
62 userAccessToken = await userLogin(servers[ 0 ], user)
63 }
64
65 {
66 const res = await getMyUserInformation(servers[ 0 ].url, servers[ 0 ].accessToken)
67 const user: User = res.body
68 userVideoChannelUUID = user.videoChannels[0].uuid
69 }
70
71 {
72 const resVideo = await uploadVideo(servers[ 0 ].url, userAccessToken, {})
73 videoUUID = resVideo.body.video.uuid
74 }
75
76 await wait(5000)
77 })
78
79 it('Should be able to update my description', async function () {
80 this.timeout(10000)
81
82 await updateMyUser({
83 url: servers[0].url,
84 accessToken: servers[0].accessToken,
85 description: 'my super description updated'
86 })
87
88 const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
89 user = res.body
90 expect(user.account.description).to.equal('my super description updated')
91
92 await wait(5000)
93 })
94
95 it('Should be able to update my avatar', async function () {
96 this.timeout(10000)
97
98 const fixture = 'avatar2.png'
99
100 await updateMyAvatar({
101 url: servers[0].url,
102 accessToken: servers[0].accessToken,
103 fixture
104 })
105
106 const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
107 user = res.body
108
109 await testImage(servers[0].url, 'avatar2-resized', user.account.avatar.path, '.png')
110
111 await wait(5000)
112 })
113
114 it('Should have updated my avatar and my description on other servers too', async function () {
115 for (const server of servers) {
116 const resAccounts = await getAccountsList(server.url, '-createdAt')
117
118 const rootServer1List = resAccounts.body.data.find(a => a.name === 'root' && a.host === 'localhost:9001') as Account
119 expect(rootServer1List).not.to.be.undefined
120
121 const resAccount = await getAccount(server.url, rootServer1List.id)
122 const rootServer1Get = resAccount.body as Account
123 expect(rootServer1Get.name).to.equal('root')
124 expect(rootServer1Get.host).to.equal('localhost:9001')
125 expect(rootServer1Get.description).to.equal('my super description updated')
126
127 await testImage(server.url, 'avatar2-resized', rootServer1Get.avatar.path, '.png')
128 }
129 })
130
131 it('Should list account videos', async function () {
132 for (const server of servers) {
133 const res = await getAccountVideos(server.url, server.accessToken, userAccountUUID, 0, 5)
134
135 expect(res.body.total).to.equal(1)
136 expect(res.body.data).to.be.an('array')
137 expect(res.body.data).to.have.lengthOf(1)
138 expect(res.body.data[0].uuid).to.equal(videoUUID)
139 }
140 })
141
142 it('Should remove the user', async function () {
143 this.timeout(10000)
144
145 for (const server of servers) {
146 const resAccounts = await getAccountsList(server.url, '-createdAt')
147
148 const accountDeleted = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:9001') as Account
149 expect(accountDeleted).not.to.be.undefined
150
151 const resVideoChannels = await getVideoChannelsList(server.url, 0, 10)
152 const videoChannelDeleted = resVideoChannels.body.data.find(a => {
153 return a.displayName === 'Default user1 channel' && a.host === 'localhost:9001'
154 }) as VideoChannel
155 expect(videoChannelDeleted).not.to.be.undefined
156 }
157
158 await removeUser(servers[0].url, userId, servers[0].accessToken)
159
160 await wait(5000)
161
162 for (const server of servers) {
163 const resAccounts = await getAccountsList(server.url, '-createdAt')
164
165 const accountDeleted = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:9001') as Account
166 expect(accountDeleted).to.be.undefined
167
168 const resVideoChannels = await getVideoChannelsList(server.url, 0, 10)
169 const videoChannelDeleted = resVideoChannels.body.data.find(a => {
170 return a.name === 'Default user1 channel' && a.host === 'localhost:9001'
171 }) as VideoChannel
172 expect(videoChannelDeleted).to.be.undefined
173 }
174 })
175
176 it('Should not have actor files', async () => {
177 for (const server of servers) {
178 await checkActorFilesWereRemoved(userAccountUUID, server.serverNumber)
179 await checkActorFilesWereRemoved(userVideoChannelUUID, server.serverNumber)
180 }
181 })
182
183 it('Should not have video files', async () => {
184 for (const server of servers) {
185 await checkVideoFilesWereRemoved(videoUUID, server.serverNumber)
186 }
187 })
188
189 after(async function () {
190 killallServers(servers)
191
192 // Keep the logs if the test failed
193 if (this[ 'ok' ]) {
194 await flushTests()
195 }
196 })
197 })