aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/tests/api/videos/video-change-ownership.ts
blob: b85edd9201bef4cebd4051cc48b3c58a52083f11 (plain) (tree)
1
2
3
4
5
6
7
8
                                                                                              
 
              
                            
                                                   
        
                         
               


                             

                           
                         


                                             



                                                               
                                


                             
 
                         

                                
                          

                                 
                           
 

                    

                                     


                            

                                                 

                                         







                                                          

       
 

                                                                                    
 
     

                                                                                                  
     
 
     

                                                                                                   
     
 
     
                          


                                           
                                                                                                 
 
                                                                   
     
 

                                                                                                      
                                                                                                      
 
                       
     
 

                                               
                                              


                                                                  

                                                                
 



                                          
 

                                                                 
 



                                          




                                                                                
                                                                                                       


                                                                                                

                                                                
 



                                          
 

                                                                 
 


                                          
 

                                     




                                                                                            
                                                                                                       




                                                                                                     
                                                               
 


                                        




                                                                                                    
                                                                                                                             




                                                                                                 
                                                                                




                                                                                    
                                                                                                       


                                                                                              

                                                                
 



                                          
 

                                                                 
 


                                          
 

                                     




                                                                                                    





                                                  




                                                                                                 
                                                                                                                



                           
                                                                        
                                   
                                                                                 




                                                                       

    


                                                                               
                                                                                          
 
                                                               
 

                                        
 
                                   




                                                                 
                                                                                                                



                                   
                                                                                 






                                                                       

                               



                                                                       
                        


                             


                           




                            
                                       
                                              
 
                                                                              
 
                                                                              
                                                                          

                                       
                        


                                         
                                                                            


                          

                                                      
 
                                                                     




                                                                                
                                                                                                                         


                                                                                                

                                                                                      
 



                                          
 

                                                                                       
 


                                          
 

                                     




                                                                                                                               

                                                                                             
 


                                                
                

                                                          

    

                                  

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

import 'mocha'
import * as chai from 'chai'
import { HttpStatusCode } from '@shared/core-utils'
import {
  ChangeOwnershipCommand,
  cleanupTests,
  doubleFollow,
  flushAndRunMultipleServers,
  flushAndRunServer,
  ServerInfo,
  setAccessTokensToServers,
  setDefaultVideoChannel,
  waitJobs
} from '@shared/extra-utils'
import { VideoPrivacy } from '@shared/models'

const expect = chai.expect

describe('Test video change ownership - nominal', function () {
  let servers: ServerInfo[] = []

  const firstUser = 'first'
  const secondUser = 'second'

  let firstUserToken = ''
  let firstUserChannelId: number

  let secondUserToken = ''
  let secondUserChannelId: number

  let lastRequestId: number

  let liveId: number

  let command: ChangeOwnershipCommand

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

    servers = await flushAndRunMultipleServers(2)
    await setAccessTokensToServers(servers)
    await setDefaultVideoChannel(servers)

    await servers[0].configCommand.updateCustomSubConfig({
      newConfig: {
        transcoding: {
          enabled: false
        },
        live: {
          enabled: true
        }
      }
    })

    firstUserToken = await servers[0].usersCommand.generateUserAndToken(firstUser)
    secondUserToken = await servers[0].usersCommand.generateUserAndToken(secondUser)

    {
      const { videoChannels } = await servers[0].usersCommand.getMyInfo({ token: firstUserToken })
      firstUserChannelId = videoChannels[0].id
    }

    {
      const { videoChannels } = await servers[0].usersCommand.getMyInfo({ token: secondUserToken })
      secondUserChannelId = videoChannels[0].id
    }

    {
      const attributes = {
        name: 'my super name',
        description: 'my super description'
      }
      const { id } = await servers[0].videosCommand.upload({ token: firstUserToken, attributes })

      servers[0].video = await servers[0].videosCommand.get({ id })
    }

    {
      const attributes = { name: 'live', channelId: firstUserChannelId, privacy: VideoPrivacy.PUBLIC }
      const video = await servers[0].liveCommand.create({ token: firstUserToken, fields: attributes })

      liveId = video.id
    }

    command = servers[0].changeOwnershipCommand

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

  it('Should not have video change ownership', async function () {
    {
      const body = await command.list({ token: firstUserToken })

      expect(body.total).to.equal(0)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(0)
    }

    {
      const body = await command.list({ token: secondUserToken })

      expect(body.total).to.equal(0)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(0)
    }
  })

  it('Should send a request to change ownership of a video', async function () {
    this.timeout(15000)

    await command.create({ token: firstUserToken, videoId: servers[0].video.id, username: secondUser })
  })

  it('Should only return a request to change ownership for the second user', async function () {
    {
      const body = await command.list({ token: firstUserToken })

      expect(body.total).to.equal(0)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(0)
    }

    {
      const body = await command.list({ token: secondUserToken })

      expect(body.total).to.equal(1)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(1)

      lastRequestId = body.data[0].id
    }
  })

  it('Should accept the same change ownership request without crashing', async function () {
    this.timeout(10000)

    await command.create({ token: firstUserToken, videoId: servers[0].video.id, username: secondUser })
  })

  it('Should not create multiple change ownership requests while one is waiting', async function () {
    this.timeout(10000)

    const body = await command.list({ token: secondUserToken })

    expect(body.total).to.equal(1)
    expect(body.data).to.be.an('array')
    expect(body.data.length).to.equal(1)
  })

  it('Should not be possible to refuse the change of ownership from first user', async function () {
    this.timeout(10000)

    await command.refuse({ token: firstUserToken, ownershipId: lastRequestId, expectedStatus: HttpStatusCode.FORBIDDEN_403 })
  })

  it('Should be possible to refuse the change of ownership from second user', async function () {
    this.timeout(10000)

    await command.refuse({ token: secondUserToken, ownershipId: lastRequestId })
  })

  it('Should send a new request to change ownership of a video', async function () {
    this.timeout(15000)

    await command.create({ token: firstUserToken, videoId: servers[0].video.id, username: secondUser })
  })

  it('Should return two requests to change ownership for the second user', async function () {
    {
      const body = await command.list({ token: firstUserToken })

      expect(body.total).to.equal(0)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(0)
    }

    {
      const body = await command.list({ token: secondUserToken })

      expect(body.total).to.equal(2)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(2)

      lastRequestId = body.data[0].id
    }
  })

  it('Should not be possible to accept the change of ownership from first user', async function () {
    this.timeout(10000)

    await command.accept({
      token: firstUserToken,
      ownershipId: lastRequestId,
      channelId: secondUserChannelId,
      expectedStatus: HttpStatusCode.FORBIDDEN_403
    })
  })

  it('Should be possible to accept the change of ownership from second user', async function () {
    this.timeout(10000)

    await command.accept({ token: secondUserToken, ownershipId: lastRequestId, channelId: secondUserChannelId })

    await waitJobs(servers)
  })

  it('Should have the channel of the video updated', async function () {
    for (const server of servers) {
      const video = await server.videosCommand.get({ id: servers[0].video.uuid })

      expect(video.name).to.equal('my super name')
      expect(video.channel.displayName).to.equal('Main second channel')
      expect(video.channel.name).to.equal('second_channel')
    }
  })

  it('Should send a request to change ownership of a live', async function () {
    this.timeout(15000)

    await command.create({ token: firstUserToken, videoId: liveId, username: secondUser })

    const body = await command.list({ token: secondUserToken })

    expect(body.total).to.equal(3)
    expect(body.data.length).to.equal(3)

    lastRequestId = body.data[0].id
  })

  it('Should accept a live ownership change', async function () {
    this.timeout(20000)

    await command.accept({ token: secondUserToken, ownershipId: lastRequestId, channelId: secondUserChannelId })

    await waitJobs(servers)

    for (const server of servers) {
      const video = await server.videosCommand.get({ id: servers[0].video.uuid })

      expect(video.name).to.equal('my super name')
      expect(video.channel.displayName).to.equal('Main second channel')
      expect(video.channel.name).to.equal('second_channel')
    }
  })

  after(async function () {
    await cleanupTests(servers)
  })
})

describe('Test video change ownership - quota too small', function () {
  let server: ServerInfo
  const firstUser = 'first'
  const secondUser = 'second'

  let firstUserToken = ''
  let secondUserToken = ''
  let lastRequestId: number

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

    // Run one server
    server = await flushAndRunServer(1)
    await setAccessTokensToServers([ server ])

    await server.usersCommand.create({ username: secondUser, videoQuota: 10 })

    firstUserToken = await server.usersCommand.generateUserAndToken(firstUser)
    secondUserToken = await server.loginCommand.getAccessToken(secondUser)

    // Upload some videos on the server
    const attributes = {
      name: 'my super name',
      description: 'my super description'
    }
    await server.videosCommand.upload({ token: firstUserToken, attributes })

    await waitJobs(server)

    const { data } = await server.videosCommand.list()
    expect(data.length).to.equal(1)

    server.video = data.find(video => video.name === 'my super name')
  })

  it('Should send a request to change ownership of a video', async function () {
    this.timeout(15000)

    await server.changeOwnershipCommand.create({ token: firstUserToken, videoId: server.video.id, username: secondUser })
  })

  it('Should only return a request to change ownership for the second user', async function () {
    {
      const body = await server.changeOwnershipCommand.list({ token: firstUserToken })

      expect(body.total).to.equal(0)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(0)
    }

    {
      const body = await server.changeOwnershipCommand.list({ token: secondUserToken })

      expect(body.total).to.equal(1)
      expect(body.data).to.be.an('array')
      expect(body.data.length).to.equal(1)

      lastRequestId = body.data[0].id
    }
  })

  it('Should not be possible to accept the change of ownership from second user because of exceeded quota', async function () {
    this.timeout(10000)

    const { videoChannels } = await server.usersCommand.getMyInfo({ token: secondUserToken })
    const channelId = videoChannels[0].id

    await server.changeOwnershipCommand.accept({
      token: secondUserToken,
      ownershipId: lastRequestId,
      channelId,
      expectedStatus: HttpStatusCode.PAYLOAD_TOO_LARGE_413
    })
  })

  after(async function () {
    await cleanupTests([ server ])
  })
})