aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/users/users-multiple-servers.ts
blob: 8b9b63348cc9d6f9662341d3469f51886d3a1c16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/* tslint:disable:no-unused-expression */

import * as chai from 'chai'
import 'mocha'
import { Account } from '../../../../shared/models/actors'
import {
  checkVideoFilesWereRemoved,
  createUser,
  doubleFollow,
  flushAndRunMultipleServers,
  getAccountVideos,
  getVideoChannelsList,
  removeUser,
  updateMyUser,
  userLogin,
  wait
} from '../../utils'
import { flushTests, getMyUserInformation, killallServers, ServerInfo, testImage, updateMyAvatar, uploadVideo } from '../../utils/index'
import { checkActorFilesWereRemoved, getAccount, getAccountsList } from '../../utils/users/accounts'
import { setAccessTokensToServers } from '../../utils/users/login'
import { User } from '../../../../shared/models/users'
import { VideoChannel } from '../../../../shared/models/videos'

const expect = chai.expect

describe('Test users with multiple servers', function () {
  let servers: ServerInfo[] = []
  let user: User
  let userAccountUUID: string
  let userVideoChannelUUID: string
  let userId: number
  let videoUUID: string
  let userAccessToken: string

  before(async function () {
    this.timeout(120000)

    servers = await flushAndRunMultipleServers(3)

    // Get the access tokens
    await setAccessTokensToServers(servers)

    // Server 1 and server 2 follow each other
    await doubleFollow(servers[0], servers[1])
    // Server 1 and server 3 follow each other
    await doubleFollow(servers[0], servers[2])
    // Server 2 and server 3 follow each other
    await doubleFollow(servers[1], servers[2])

    // The root user of server 1 is propagated to servers 2 and 3
    await uploadVideo(servers[0].url, servers[0].accessToken, {})

    {
      const user = {
        username: 'user1',
        password: 'password'
      }
      const res = await createUser(servers[ 0 ].url, servers[ 0 ].accessToken, user.username, user.password)
      userAccountUUID = res.body.user.account.uuid
      userId = res.body.user.id

      userAccessToken = await userLogin(servers[ 0 ], user)
    }

    {
      const res = await getMyUserInformation(servers[ 0 ].url, servers[ 0 ].accessToken)
      const user: User = res.body
      userVideoChannelUUID = user.videoChannels[0].uuid
    }

    {
      const resVideo = await uploadVideo(servers[ 0 ].url, userAccessToken, {})
      videoUUID = resVideo.body.video.uuid
    }

    await wait(5000)
  })

  it('Should be able to update my display name', async function () {
    this.timeout(10000)

    await updateMyUser({
      url: servers[0].url,
      accessToken: servers[0].accessToken,
      displayName: 'my super display name'
    })

    const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
    user = res.body
    expect(user.account.displayName).to.equal('my super display name')

    await wait(5000)
  })

  it('Should be able to update my description', async function () {
    this.timeout(10000)

    await updateMyUser({
      url: servers[0].url,
      accessToken: servers[0].accessToken,
      description: 'my super description updated'
    })

    const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
    user = res.body
    expect(user.account.displayName).to.equal('my super display name')
    expect(user.account.description).to.equal('my super description updated')

    await wait(5000)
  })

  it('Should be able to update my avatar', async function () {
    this.timeout(10000)

    const fixture = 'avatar2.png'

    await updateMyAvatar({
      url: servers[0].url,
      accessToken: servers[0].accessToken,
      fixture
    })

    const res = await getMyUserInformation(servers[0].url, servers[0].accessToken)
    user = res.body

    await testImage(servers[0].url, 'avatar2-resized', user.account.avatar.path, '.png')

    await wait(5000)
  })

  it('Should have updated my profile on other servers too', async function () {
    for (const server of servers) {
      const resAccounts = await getAccountsList(server.url, '-createdAt')

      const rootServer1List = resAccounts.body.data.find(a => a.name === 'root' && a.host === 'localhost:9001') as Account
      expect(rootServer1List).not.to.be.undefined

      const resAccount = await getAccount(server.url, rootServer1List.id)
      const rootServer1Get = resAccount.body as Account
      expect(rootServer1Get.name).to.equal('root')
      expect(rootServer1Get.host).to.equal('localhost:9001')
      expect(rootServer1Get.displayName).to.equal('my super display name')
      expect(rootServer1Get.description).to.equal('my super description updated')

      await testImage(server.url, 'avatar2-resized', rootServer1Get.avatar.path, '.png')
    }
  })

  it('Should list account videos', async function () {
    for (const server of servers) {
      const res = await getAccountVideos(server.url, server.accessToken, userAccountUUID, 0, 5)

      expect(res.body.total).to.equal(1)
      expect(res.body.data).to.be.an('array')
      expect(res.body.data).to.have.lengthOf(1)
      expect(res.body.data[0].uuid).to.equal(videoUUID)
    }
  })

  it('Should remove the user', async function () {
    this.timeout(10000)

    for (const server of servers) {
      const resAccounts = await getAccountsList(server.url, '-createdAt')

      const accountDeleted = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:9001') as Account
      expect(accountDeleted).not.to.be.undefined

      const resVideoChannels = await getVideoChannelsList(server.url, 0, 10)
      const videoChannelDeleted = resVideoChannels.body.data.find(a => {
        return a.displayName === 'Default user1 channel' && a.host === 'localhost:9001'
      }) as VideoChannel
      expect(videoChannelDeleted).not.to.be.undefined
    }

    await removeUser(servers[0].url, userId, servers[0].accessToken)

    await wait(5000)

    for (const server of servers) {
      const resAccounts = await getAccountsList(server.url, '-createdAt')

      const accountDeleted = resAccounts.body.data.find(a => a.name === 'user1' && a.host === 'localhost:9001') as Account
      expect(accountDeleted).to.be.undefined

      const resVideoChannels = await getVideoChannelsList(server.url, 0, 10)
      const videoChannelDeleted = resVideoChannels.body.data.find(a => {
        return a.name === 'Default user1 channel' && a.host === 'localhost:9001'
      }) as VideoChannel
      expect(videoChannelDeleted).to.be.undefined
    }
  })

  it('Should not have actor files', async () => {
    for (const server of servers) {
      await checkActorFilesWereRemoved(userAccountUUID, server.serverNumber)
      await checkActorFilesWereRemoved(userVideoChannelUUID, server.serverNumber)
    }
  })

  it('Should not have video files', async () => {
    for (const server of servers) {
      await checkVideoFilesWereRemoved(videoUUID, server.serverNumber)
    }
  })

  after(async function () {
    killallServers(servers)

    // Keep the logs if the test failed
    if (this[ 'ok' ]) {
      await flushTests()
    }
  })
})