mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			TypeScript
		
	
	
| /* tslint:disable:no-unused-expression */
 | |
| 
 | |
| 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'
 | |
| 
 | |
| function getAccountsList (url: string, sort = '-createdAt', statusCodeExpected = 200) {
 | |
|   const path = '/api/v1/accounts'
 | |
| 
 | |
|   return makeGetRequest({
 | |
|     url,
 | |
|     query: { sort },
 | |
|     path,
 | |
|     statusCodeExpected
 | |
|   })
 | |
| }
 | |
| 
 | |
| function getAccount (url: string, accountName: string, statusCodeExpected = 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 = 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
 | |
| }
 |