123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
- import * as request from 'supertest'
- import { expect } from 'chai'
- import { existsSync, readdir } from 'fs-extra'
- import { join } from 'path'
- import { Account } from '../../models/actors'
- import { root } from '../miscs/miscs'
- import { makeGetRequest } from '../requests/requests'
- import { VideoRateType } from '../../models/videos'
- import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes'
- function getAccountsList (url: string, sort = '-createdAt', statusCodeExpected = HttpStatusCode.OK_200) {
- const path = '/api/v1/accounts'
- return makeGetRequest({
- url,
- query: { sort },
- path,
- statusCodeExpected
- })
- }
- function getAccount (url: string, accountName: string, statusCodeExpected = HttpStatusCode.OK_200) {
- const path = '/api/v1/accounts/' + accountName
- return makeGetRequest({
- url,
- path,
- statusCodeExpected
- })
- }
- 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)
- }
- async function checkActorFilesWereRemoved (filename: string, serverNumber: number) {
- const testDirectory = 'test' + serverNumber
- for (const directory of [ 'avatars' ]) {
- const directoryPath = join(root(), testDirectory, directory)
- const directoryExists = existsSync(directoryPath)
- expect(directoryExists).to.be.true
- const files = await readdir(directoryPath)
- for (const file of files) {
- expect(file).to.not.contain(filename)
- }
- }
- }
- function getAccountRatings (
- url: string,
- accountName: string,
- accessToken: string,
- rating?: VideoRateType,
- statusCodeExpected = HttpStatusCode.OK_200
- ) {
- const path = '/api/v1/accounts/' + accountName + '/ratings'
- const query = rating ? { rating } : {}
- return request(url)
- .get(path)
- .query(query)
- .set('Accept', 'application/json')
- .set('Authorization', 'Bearer ' + accessToken)
- .expect(statusCodeExpected)
- .expect('Content-Type', /json/)
- }
- // ---------------------------------------------------------------------------
- export {
- getAccount,
- expectAccountFollows,
- getAccountsList,
- checkActorFilesWereRemoved,
- getAccountRatings
- }
|