PeerTube/server/tests/utils/users/accounts.ts

42 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-01-12 11:47:45 +01:00
import { expect } from 'chai'
import { Account } from '../../../../shared/models/actors'
2018-01-03 16:38:50 +01:00
import { makeGetRequest } from '../requests/requests'
function getAccountsList (url: string, sort = '-createdAt', statusCodeExpected = 200) {
const path = '/api/v1/accounts'
return makeGetRequest({
url,
query: { sort },
path,
statusCodeExpected
})
}
function getAccount (url: string, accountId: number | string, statusCodeExpected = 200) {
const path = '/api/v1/accounts/' + accountId
return makeGetRequest({
url,
path,
statusCodeExpected
})
}
2018-01-12 11:47:45 +01:00
async function expectAccountFollows (url: string, nameWithDomain: string, followersCount: number, followingCount: number) {
const res = await getAccountsList(url)
const account = res.body.data.find((a: Account) => a.name + '@' + a.host === nameWithDomain)
const message = `${nameWithDomain} on ${url}`
expect(account.followersCount).to.equal(followersCount, message)
expect(account.followingCount).to.equal(followingCount, message)
}
2018-01-03 16:38:50 +01:00
// ---------------------------------------------------------------------------
export {
getAccount,
2018-01-12 11:47:45 +01:00
expectAccountFollows,
2018-01-03 16:38:50 +01:00
getAccountsList
}