2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-10-01 11:26:51 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
import * as chai from 'chai'
|
2021-07-16 03:47:51 -04:00
|
|
|
import { cleanupTests, createSingleServer, makeGetRequest, PeerTubeServer, setAccessTokensToServers } from '@shared/extra-utils'
|
2021-07-16 08:27:30 -04:00
|
|
|
import { HttpStatusCode, VideoPrivacy } from '@shared/models'
|
2018-10-01 11:26:51 -04:00
|
|
|
|
|
|
|
const expect = chai.expect
|
|
|
|
|
|
|
|
describe('Test misc endpoints', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2018-10-01 11:26:51 -04:00
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2018-12-05 11:27:24 -05:00
|
|
|
await setAccessTokensToServers([ server ])
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('Test a well known endpoints', function () {
|
|
|
|
|
|
|
|
it('Should get security.txt', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/.well-known/security.txt',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('security issue')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get nodeinfo', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/.well-known/nodeinfo',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.body.links).to.be.an('array')
|
|
|
|
expect(res.body.links).to.have.lengthOf(1)
|
|
|
|
expect(res.body.links[0].rel).to.equal('http://nodeinfo.diaspora.software/ns/schema/2.0')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get dnt policy text', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/.well-known/dnt-policy.txt',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('http://www.w3.org/TR/tracking-dnt')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get dnt policy', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/.well-known/dnt',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.body.tracking).to.equal('N')
|
|
|
|
})
|
2018-12-06 19:42:00 -05:00
|
|
|
|
|
|
|
it('Should get change-password location', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/.well-known/change-password',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.FOUND_302
|
2018-12-06 19:42:00 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.header.location).to.equal('/my-account/settings')
|
|
|
|
})
|
2021-01-14 08:13:23 -05:00
|
|
|
|
|
|
|
it('Should test webfinger', async function () {
|
|
|
|
const resource = 'acct:peertube@' + server.host
|
|
|
|
const accountUrl = server.url + '/accounts/peertube'
|
|
|
|
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/.well-known/webfinger?resource=' + resource,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2021-01-14 08:13:23 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
const data = res.body
|
|
|
|
|
|
|
|
expect(data.subject).to.equal(resource)
|
|
|
|
expect(data.aliases).to.contain(accountUrl)
|
|
|
|
|
|
|
|
const self = data.links.find(l => l.rel === 'self')
|
|
|
|
expect(self).to.exist
|
|
|
|
expect(self.type).to.equal('application/activity+json')
|
|
|
|
expect(self.href).to.equal(accountUrl)
|
|
|
|
|
|
|
|
const remoteInteract = data.links.find(l => l.rel === 'http://ostatus.org/schema/1.0/subscribe')
|
|
|
|
expect(remoteInteract).to.exist
|
|
|
|
expect(remoteInteract.template).to.equal(server.url + '/remote-interaction?uri={uri}')
|
|
|
|
})
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('Test classic static endpoints', function () {
|
|
|
|
|
|
|
|
it('Should get robots.txt', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/robots.txt',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('User-agent')
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get security.txt', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/security.txt',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.MOVED_PERMANENTLY_301
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get nodeinfo', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/nodeinfo/2.0.json',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.body.software.name).to.equal('peertube')
|
2020-12-30 05:41:36 -05:00
|
|
|
expect(res.body.usage.users.activeMonth).to.equal(1)
|
|
|
|
expect(res.body.usage.users.activeHalfyear).to.equal(1)
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-12-05 11:27:24 -05:00
|
|
|
describe('Test bots endpoints', function () {
|
|
|
|
|
|
|
|
it('Should get the empty sitemap', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/sitemap.xml',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-12-05 11:27:24 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"')
|
2020-07-30 09:34:00 -04:00
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/about/instance</loc></url>')
|
2018-12-05 11:27:24 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get the empty cached sitemap', async function () {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/sitemap.xml',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-12-05 11:27:24 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"')
|
2020-07-30 09:34:00 -04:00
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/about/instance</loc></url>')
|
2018-12-05 11:27:24 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should add videos, channel and accounts and get sitemap', async function () {
|
|
|
|
this.timeout(35000)
|
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.videos.upload({ attributes: { name: 'video 1', nsfw: false } })
|
|
|
|
await server.videos.upload({ attributes: { name: 'video 2', nsfw: false } })
|
|
|
|
await server.videos.upload({ attributes: { name: 'video 3', privacy: VideoPrivacy.PRIVATE } })
|
2018-12-05 11:27:24 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.channels.create({ attributes: { name: 'channel1', displayName: 'channel 1' } })
|
|
|
|
await server.channels.create({ attributes: { name: 'channel2', displayName: 'channel 2' } })
|
2018-12-05 11:27:24 -05:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: 'user1', password: 'password' })
|
|
|
|
await server.users.create({ username: 'user2', password: 'password' })
|
2018-12-05 11:27:24 -05:00
|
|
|
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: '/sitemap.xml?t=1', // avoid using cache
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-12-05 11:27:24 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"')
|
2020-07-30 09:34:00 -04:00
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/about/instance</loc></url>')
|
2018-12-05 11:27:24 -05:00
|
|
|
|
2019-10-22 03:25:35 -04:00
|
|
|
expect(res.text).to.contain('<video:title>video 1</video:title>')
|
|
|
|
expect(res.text).to.contain('<video:title>video 2</video:title>')
|
|
|
|
expect(res.text).to.not.contain('<video:title>video 3</video:title>')
|
2018-12-05 11:27:24 -05:00
|
|
|
|
2020-07-30 09:34:00 -04:00
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/video-channels/channel1</loc></url>')
|
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/video-channels/channel2</loc></url>')
|
2018-12-05 11:27:24 -05:00
|
|
|
|
2020-07-30 09:34:00 -04:00
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/accounts/user1</loc></url>')
|
|
|
|
expect(res.text).to.contain('<url><loc>http://localhost:' + server.port + '/accounts/user2</loc></url>')
|
2018-12-05 11:27:24 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-10-01 11:26:51 -04:00
|
|
|
})
|
|
|
|
})
|