aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/tests/api/activitypub/fetch.ts
blob: 3899a6a49c37d9bacb0d9df42a124a86ba1d9fc2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                                                                              
 
                             
                                                 







                                
 
                                                  
                               
                                   





                                                                    
                                            





                                                            
                                                                                     

     
                                                                       
 


                                                                                                  
 

                                                  
     

                                                      
                                                             


     
                                                            
                                                               
     








                                                                            
                                                                                 
 
                               





                                                     
                                                                                 
 
                               




                                                 
                       
 
                                     
                               

    
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */

import { expect } from 'chai'
import { SQLCommand } from '@server/tests/shared'
import {
  cleanupTests,
  createMultipleServers,
  doubleFollow,
  PeerTubeServer,
  setAccessTokensToServers,
  waitJobs
} from '@shared/server-commands'

describe('Test ActivityPub fetcher', function () {
  let servers: PeerTubeServer[]
  let sqlCommandServer1: SQLCommand

  // ---------------------------------------------------------------

  before(async function () {
    this.timeout(60000)

    servers = await createMultipleServers(3)

    // Get the access tokens
    await setAccessTokensToServers(servers)

    const user = { username: 'user1', password: 'password' }
    for (const server of servers) {
      await server.users.create({ username: user.username, password: user.password })
    }

    const userAccessToken = await servers[0].login.getAccessToken(user)

    await servers[0].videos.upload({ attributes: { name: 'video root' } })
    const { uuid } = await servers[0].videos.upload({ attributes: { name: 'bad video root' } })
    await servers[0].videos.upload({ token: userAccessToken, attributes: { name: 'video user' } })

    sqlCommandServer1 = new SQLCommand(servers[0])

    {
      const to = servers[0].url + '/accounts/user1'
      const value = servers[1].url + '/accounts/user1'
      await sqlCommandServer1.setActorField(to, 'url', value)
    }

    {
      const value = servers[2].url + '/videos/watch/' + uuid
      await sqlCommandServer1.setVideoField(uuid, 'url', value)
    }
  })

  it('Should add only the video with a valid actor URL', async function () {
    this.timeout(60000)

    await doubleFollow(servers[0], servers[1])
    await waitJobs(servers)

    {
      const { total, data } = await servers[0].videos.list({ sort: 'createdAt' })

      expect(total).to.equal(3)
      expect(data[0].name).to.equal('video root')
      expect(data[1].name).to.equal('bad video root')
      expect(data[2].name).to.equal('video user')
    }

    {
      const { total, data } = await servers[1].videos.list({ sort: 'createdAt' })

      expect(total).to.equal(1)
      expect(data[0].name).to.equal('video root')
    }
  })

  after(async function () {
    this.timeout(20000)

    await sqlCommandServer1.cleanup()
    await cleanupTests(servers)
  })
})