1
0
Fork 0
peertube/server/tests/api/activitypub/fetch.ts

74 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-01-31 15:56:52 +00:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2018-11-14 15:32:12 +00:00
import 'mocha'
2021-07-09 13:37:43 +00:00
import * as chai from 'chai'
import { cleanupTests, createMultipleServers, doubleFollow, PeerTubeServer, setAccessTokensToServers, waitJobs } from '@shared/server-commands'
2018-11-14 15:32:12 +00:00
const expect = chai.expect
describe('Test ActivityPub fetcher', function () {
2021-07-16 07:47:51 +00:00
let servers: PeerTubeServer[]
2018-11-14 15:32:12 +00:00
// ---------------------------------------------------------------
before(async function () {
this.timeout(60000)
2021-07-16 07:47:51 +00:00
servers = await createMultipleServers(3)
2018-11-14 15:32:12 +00:00
// Get the access tokens
await setAccessTokensToServers(servers)
const user = { username: 'user1', password: 'password' }
for (const server of servers) {
2021-07-16 07:04:35 +00:00
await server.users.create({ username: user.username, password: user.password })
2018-11-14 15:32:12 +00:00
}
2021-07-16 07:04:35 +00:00
const userAccessToken = await servers[0].login.getAccessToken(user)
2018-11-14 15:32:12 +00:00
2021-07-16 07:04:35 +00:00
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' } })
2018-11-14 15:32:12 +00:00
2019-04-26 06:50:52 +00:00
{
const to = 'http://localhost:' + servers[0].port + '/accounts/user1'
const value = 'http://localhost:' + servers[1].port + '/accounts/user1'
2021-07-16 07:04:35 +00:00
await servers[0].sql.setActorField(to, 'url', value)
2019-04-26 06:50:52 +00:00
}
{
2021-07-15 08:02:54 +00:00
const value = 'http://localhost:' + servers[2].port + '/videos/watch/' + uuid
2021-07-16 07:04:35 +00:00
await servers[0].sql.setVideoField(uuid, 'url', value)
2019-04-26 06:50:52 +00:00
}
2018-11-14 15:32:12 +00:00
})
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)
{
2021-07-16 07:04:35 +00:00
const { total, data } = await servers[0].videos.list({ sort: 'createdAt' })
2018-11-14 15:32:12 +00:00
2021-07-15 08:02:54 +00:00
expect(total).to.equal(3)
2018-11-14 15:32:12 +00:00
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')
}
{
2021-07-16 07:04:35 +00:00
const { total, data } = await servers[1].videos.list({ sort: 'createdAt' })
2018-11-14 15:32:12 +00:00
2021-07-15 08:02:54 +00:00
expect(total).to.equal(1)
2018-11-14 15:32:12 +00:00
expect(data[0].name).to.equal('video root')
}
})
after(async function () {
2019-07-29 09:59:29 +00:00
this.timeout(20000)
2019-04-26 06:50:52 +00:00
await cleanupTests(servers)
2018-11-14 15:32:12 +00:00
})
})