From ad9e39fb815d85e5e718c40540fa75471474fa17 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 25 May 2018 09:57:16 +0200 Subject: Only use account name in routes --- server/tests/api/users/users-multiple-servers.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'server/tests/api/users') diff --git a/server/tests/api/users/users-multiple-servers.ts b/server/tests/api/users/users-multiple-servers.ts index 8b9b63348..0e1e6c97d 100644 --- a/server/tests/api/users/users-multiple-servers.ts +++ b/server/tests/api/users/users-multiple-servers.ts @@ -26,7 +26,7 @@ const expect = chai.expect describe('Test users with multiple servers', function () { let servers: ServerInfo[] = [] let user: User - let userAccountUUID: string + let userAccountName: string let userVideoChannelUUID: string let userId: number let videoUUID: string @@ -56,12 +56,15 @@ describe('Test users with multiple servers', function () { 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, userAccessToken) + userAccountName = res.body.account.name + '@' + res.body.account.host + } + { const res = await getMyUserInformation(servers[ 0 ].url, servers[ 0 ].accessToken) const user: User = res.body @@ -135,7 +138,7 @@ describe('Test users with multiple servers', function () { 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 resAccount = await getAccount(server.url, rootServer1List.name + '@' + rootServer1List.host) const rootServer1Get = resAccount.body as Account expect(rootServer1Get.name).to.equal('root') expect(rootServer1Get.host).to.equal('localhost:9001') @@ -148,7 +151,7 @@ describe('Test users with multiple servers', function () { it('Should list account videos', async function () { for (const server of servers) { - const res = await getAccountVideos(server.url, server.accessToken, userAccountUUID, 0, 5) + const res = await getAccountVideos(server.url, server.accessToken, userAccountName, 0, 5) expect(res.body.total).to.equal(1) expect(res.body.data).to.be.an('array') @@ -193,7 +196,7 @@ describe('Test users with multiple servers', function () { it('Should not have actor files', async () => { for (const server of servers) { - await checkActorFilesWereRemoved(userAccountUUID, server.serverNumber) + await checkActorFilesWereRemoved(userAccountName, server.serverNumber) await checkActorFilesWereRemoved(userVideoChannelUUID, server.serverNumber) } }) -- cgit v1.2.3