mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
 | 
						|
 | 
						|
import * as chai from 'chai'
 | 
						|
import 'mocha'
 | 
						|
import {
 | 
						|
  cleanupTests,
 | 
						|
  doubleFollow,
 | 
						|
  flushAndRunMultipleServers,
 | 
						|
  makeActivityPubGetRequest,
 | 
						|
  ServerInfo,
 | 
						|
  setAccessTokensToServers,
 | 
						|
  uploadVideo
 | 
						|
} from '../../../../shared/extra-utils'
 | 
						|
 | 
						|
const expect = chai.expect
 | 
						|
 | 
						|
describe('Test activitypub', function () {
 | 
						|
  let servers: ServerInfo[] = []
 | 
						|
  let videoUUID: string
 | 
						|
 | 
						|
  before(async function () {
 | 
						|
    this.timeout(30000)
 | 
						|
 | 
						|
    servers = await flushAndRunMultipleServers(2)
 | 
						|
 | 
						|
    await setAccessTokensToServers(servers)
 | 
						|
 | 
						|
    {
 | 
						|
      const res = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'video' })
 | 
						|
      videoUUID = res.body.video.uuid
 | 
						|
    }
 | 
						|
 | 
						|
    await doubleFollow(servers[0], servers[1])
 | 
						|
  })
 | 
						|
 | 
						|
  it('Should return the account object', async function () {
 | 
						|
    const res = await makeActivityPubGetRequest(servers[0].url, '/accounts/root')
 | 
						|
    const object = res.body
 | 
						|
 | 
						|
    expect(object.type).to.equal('Person')
 | 
						|
    expect(object.id).to.equal('http://localhost:' + servers[0].port + '/accounts/root')
 | 
						|
    expect(object.name).to.equal('root')
 | 
						|
    expect(object.preferredUsername).to.equal('root')
 | 
						|
  })
 | 
						|
 | 
						|
  it('Should return the video object', async function () {
 | 
						|
    const res = await makeActivityPubGetRequest(servers[0].url, '/videos/watch/' + videoUUID)
 | 
						|
    const object = res.body
 | 
						|
 | 
						|
    expect(object.type).to.equal('Video')
 | 
						|
    expect(object.id).to.equal('http://localhost:' + servers[0].port + '/videos/watch/' + videoUUID)
 | 
						|
    expect(object.name).to.equal('video')
 | 
						|
  })
 | 
						|
 | 
						|
  it('Should redirect to the origin video object', async function () {
 | 
						|
    const res = await makeActivityPubGetRequest(servers[1].url, '/videos/watch/' + videoUUID, 302)
 | 
						|
 | 
						|
    expect(res.header.location).to.equal('http://localhost:' + servers[0].port + '/videos/watch/' + videoUUID)
 | 
						|
  })
 | 
						|
 | 
						|
  after(async function () {
 | 
						|
    await cleanupTests(servers)
 | 
						|
  })
 | 
						|
})
 |