2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2022-08-17 09:44:32 -04:00
|
|
|
import { expect } from 'chai'
|
2022-08-17 09:25:58 -04:00
|
|
|
import { omit } from '@shared/core-utils'
|
2022-04-08 10:47:00 -04:00
|
|
|
import {
|
|
|
|
Account,
|
|
|
|
HTMLServerConfig,
|
|
|
|
HttpStatusCode,
|
|
|
|
ServerConfig,
|
|
|
|
VideoPlaylistCreateResult,
|
|
|
|
VideoPlaylistPrivacy,
|
|
|
|
VideoPrivacy
|
|
|
|
} from '@shared/models'
|
2017-09-04 15:21:47 -04:00
|
|
|
import {
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createMultipleServers,
|
2021-07-16 08:27:30 -04:00
|
|
|
doubleFollow,
|
2021-05-28 04:21:39 -04:00
|
|
|
makeGetRequest,
|
2018-08-03 10:23:45 -04:00
|
|
|
makeHTMLRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2020-12-08 04:53:41 -05:00
|
|
|
setAccessTokensToServers,
|
2020-07-31 07:13:02 -04:00
|
|
|
setDefaultVideoChannel,
|
2020-12-08 04:53:41 -05:00
|
|
|
waitJobs
|
2021-12-17 03:29:23 -05:00
|
|
|
} from '../../shared/server-commands'
|
2018-08-03 10:23:45 -04:00
|
|
|
|
2021-05-14 06:04:44 -04:00
|
|
|
function checkIndexTags (html: string, title: string, description: string, css: string, config: ServerConfig) {
|
2018-07-23 05:28:27 -04:00
|
|
|
expect(html).to.contain('<title>' + title + '</title>')
|
|
|
|
expect(html).to.contain('<meta name="description" content="' + description + '" />')
|
|
|
|
expect(html).to.contain('<style class="custom-css-style">' + css + '</style>')
|
2021-05-14 06:04:44 -04:00
|
|
|
|
2022-08-17 09:25:58 -04:00
|
|
|
const htmlConfig: HTMLServerConfig = omit(config, [ 'signup' ])
|
2021-09-09 03:47:59 -04:00
|
|
|
const configObjectString = JSON.stringify(htmlConfig)
|
|
|
|
const configEscapedString = JSON.stringify(configObjectString)
|
|
|
|
|
|
|
|
expect(html).to.contain(`<script type="application/javascript">window.PeerTubeServerConfig = ${configEscapedString}</script>`)
|
2018-07-23 05:28:27 -04:00
|
|
|
}
|
2017-09-04 15:21:47 -04:00
|
|
|
|
|
|
|
describe('Test a client controllers', function () {
|
2021-07-16 03:47:51 -04:00
|
|
|
let servers: PeerTubeServer[] = []
|
2020-07-31 07:13:02 -04:00
|
|
|
let account: Account
|
|
|
|
|
|
|
|
const videoName = 'my super name for server 1'
|
2021-04-12 05:43:29 -04:00
|
|
|
const videoDescription = 'my<br> super __description__ for *server* 1<p></p>'
|
|
|
|
const videoDescriptionPlainText = 'my super description for server 1'
|
2020-07-31 07:13:02 -04:00
|
|
|
|
|
|
|
const playlistName = 'super playlist name'
|
|
|
|
const playlistDescription = 'super playlist description'
|
2021-06-28 11:30:59 -04:00
|
|
|
let playlist: VideoPlaylistCreateResult
|
2020-07-31 07:13:02 -04:00
|
|
|
|
|
|
|
const channelDescription = 'my super channel description'
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
const watchVideoBasePaths = [ '/videos/watch/', '/w/' ]
|
|
|
|
const watchPlaylistBasePaths = [ '/videos/watch/playlist/', '/w/p/' ]
|
|
|
|
|
2021-06-28 11:30:59 -04:00
|
|
|
let videoIds: (string | number)[] = []
|
2022-04-08 10:26:38 -04:00
|
|
|
let privateVideoId: string
|
|
|
|
let internalVideoId: string
|
|
|
|
let unlistedVideoId: string
|
|
|
|
|
2021-06-28 11:30:59 -04:00
|
|
|
let playlistIds: (string | number)[] = []
|
|
|
|
|
2017-09-04 15:21:47 -04:00
|
|
|
before(async function () {
|
|
|
|
this.timeout(120000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
servers = await createMultipleServers(2)
|
2020-12-06 13:23:12 -05:00
|
|
|
|
|
|
|
await setAccessTokensToServers(servers)
|
|
|
|
|
|
|
|
await doubleFollow(servers[0], servers[1])
|
|
|
|
|
2020-12-08 04:53:41 -05:00
|
|
|
await setDefaultVideoChannel(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].channels.update({
|
|
|
|
channelName: servers[0].store.channel.name,
|
2021-07-09 05:21:30 -04:00
|
|
|
attributes: { description: channelDescription }
|
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2022-04-08 10:26:38 -04:00
|
|
|
// Public video
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
|
|
|
const attributes = { name: videoName, description: videoDescription }
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].videos.upload({ attributes })
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const { data } = await servers[0].videos.list()
|
2021-07-15 04:02:54 -04:00
|
|
|
expect(data.length).to.equal(1)
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const video = data[0]
|
2021-07-16 03:04:35 -04:00
|
|
|
servers[0].store.video = video
|
2021-07-15 04:02:54 -04:00
|
|
|
videoIds = [ video.id, video.uuid, video.shortUUID ]
|
|
|
|
}
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2022-04-08 10:26:38 -04:00
|
|
|
{
|
|
|
|
({ uuid: privateVideoId } = await servers[0].videos.quickUpload({ name: 'private', privacy: VideoPrivacy.PRIVATE }));
|
|
|
|
({ uuid: unlistedVideoId } = await servers[0].videos.quickUpload({ name: 'unlisted', privacy: VideoPrivacy.UNLISTED }));
|
|
|
|
({ uuid: internalVideoId } = await servers[0].videos.quickUpload({ name: 'internal', privacy: VideoPrivacy.INTERNAL }))
|
|
|
|
}
|
|
|
|
|
2020-07-31 05:29:15 -04:00
|
|
|
// Playlist
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
|
|
|
const attributes = {
|
|
|
|
displayName: playlistName,
|
|
|
|
description: playlistDescription,
|
|
|
|
privacy: VideoPlaylistPrivacy.PUBLIC,
|
2021-07-16 03:04:35 -04:00
|
|
|
videoChannelId: servers[0].store.channel.id
|
2021-07-15 04:02:54 -04:00
|
|
|
}
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
playlist = await servers[0].playlists.create({ attributes })
|
2021-07-15 04:02:54 -04:00
|
|
|
playlistIds = [ playlist.id, playlist.shortUUID, playlist.uuid ]
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].playlists.addElement({ playlistId: playlist.shortUUID, attributes: { videoId: servers[0].store.video.id } })
|
2021-07-15 04:02:54 -04:00
|
|
|
}
|
2020-07-31 05:29:15 -04:00
|
|
|
|
|
|
|
// Account
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
{
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].users.updateMe({ description: 'my account description' })
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
account = await servers[0].accounts.get({ accountName: `${servers[0].store.user.username}@${servers[0].host}` })
|
2021-07-15 04:02:54 -04:00
|
|
|
}
|
2020-12-08 04:53:41 -05:00
|
|
|
|
|
|
|
await waitJobs(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
describe('oEmbed', function () {
|
2021-05-28 05:36:33 -04:00
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
it('Should have valid oEmbed discovery tags for videos', async function () {
|
2021-05-28 05:36:33 -04:00
|
|
|
for (const basePath of watchVideoBasePaths) {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const id of videoIds) {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: servers[0].url,
|
|
|
|
path: basePath + id,
|
|
|
|
accept: 'text/html',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2021-06-28 11:30:59 -04:00
|
|
|
})
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
const expectedLink = `<link rel="alternate" type="application/json+oembed" href="${servers[0].url}/services/oembed?` +
|
|
|
|
`url=http%3A%2F%2F${servers[0].hostname}%3A${servers[0].port}%2Fw%2F${servers[0].store.video.shortUUID}" ` +
|
|
|
|
`title="${servers[0].store.video.name}" />`
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-06-28 11:30:59 -04:00
|
|
|
expect(res.text).to.contain(expectedLink)
|
|
|
|
}
|
2021-05-28 05:36:33 -04:00
|
|
|
}
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
it('Should have valid oEmbed discovery tags for a playlist', async function () {
|
2021-05-28 05:36:33 -04:00
|
|
|
for (const basePath of watchPlaylistBasePaths) {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const id of playlistIds) {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: servers[0].url,
|
|
|
|
path: basePath + id,
|
|
|
|
accept: 'text/html',
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2021-06-28 11:30:59 -04:00
|
|
|
})
|
2020-08-05 09:35:58 -04:00
|
|
|
|
2022-12-09 05:14:47 -05:00
|
|
|
const expectedLink = `<link rel="alternate" type="application/json+oembed" href="${servers[0].url}/services/oembed?` +
|
|
|
|
`url=http%3A%2F%2F${servers[0].hostname}%3A${servers[0].port}%2Fw%2Fp%2F${playlist.shortUUID}" ` +
|
2021-06-28 11:30:59 -04:00
|
|
|
`title="${playlistName}" />`
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-06-28 11:30:59 -04:00
|
|
|
expect(res.text).to.contain(expectedLink)
|
|
|
|
}
|
2021-05-28 05:36:33 -04:00
|
|
|
}
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
})
|
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
describe('Open Graph', function () {
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
async function accountPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 04:21:39 -04:00
|
|
|
const text = res.text
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:title" content="${account.displayName}" />`)
|
|
|
|
expect(text).to.contain(`<meta property="og:description" content="${account.description}" />`)
|
|
|
|
expect(text).to.contain('<meta property="og:type" content="website" />')
|
2021-07-16 03:04:35 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:url" content="${servers[0].url}/accounts/${servers[0].store.user.username}" />`)
|
2021-05-28 04:21:39 -04:00
|
|
|
}
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
async function channelPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 04:21:39 -04:00
|
|
|
const text = res.text
|
2017-09-04 15:21:47 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:title" content="${servers[0].store.channel.displayName}" />`)
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:description" content="${channelDescription}" />`)
|
|
|
|
expect(text).to.contain('<meta property="og:type" content="website" />')
|
2021-07-16 03:04:35 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:url" content="${servers[0].url}/video-channels/${servers[0].store.channel.name}" />`)
|
2021-05-28 04:21:39 -04:00
|
|
|
}
|
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
async function watchVideoPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 05:36:33 -04:00
|
|
|
const text = res.text
|
|
|
|
|
|
|
|
expect(text).to.contain(`<meta property="og:title" content="${videoName}" />`)
|
|
|
|
expect(text).to.contain(`<meta property="og:description" content="${videoDescriptionPlainText}" />`)
|
|
|
|
expect(text).to.contain('<meta property="og:type" content="video" />')
|
2021-07-27 11:37:59 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:url" content="${servers[0].url}/w/${servers[0].store.video.shortUUID}" />`)
|
2021-05-28 05:36:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
async function watchPlaylistPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 05:36:33 -04:00
|
|
|
const text = res.text
|
|
|
|
|
|
|
|
expect(text).to.contain(`<meta property="og:title" content="${playlistName}" />`)
|
|
|
|
expect(text).to.contain(`<meta property="og:description" content="${playlistDescription}" />`)
|
|
|
|
expect(text).to.contain('<meta property="og:type" content="video" />')
|
2021-07-27 11:37:59 -04:00
|
|
|
expect(text).to.contain(`<meta property="og:url" content="${servers[0].url}/w/p/${playlist.shortUUID}" />`)
|
2021-05-28 05:36:33 -04:00
|
|
|
}
|
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
it('Should have valid Open Graph tags on the account page', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await accountPageTest('/accounts/' + servers[0].store.user.username)
|
|
|
|
await accountPageTest('/a/' + servers[0].store.user.username)
|
|
|
|
await accountPageTest('/@' + servers[0].store.user.username)
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
it('Should have valid Open Graph tags on the channel page', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await channelPageTest('/video-channels/' + servers[0].store.channel.name)
|
|
|
|
await channelPageTest('/c/' + servers[0].store.channel.name)
|
|
|
|
await channelPageTest('/@' + servers[0].store.channel.name)
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2017-10-16 04:05:49 -04:00
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
it('Should have valid Open Graph tags on the watch page', async function () {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const path of watchVideoBasePaths) {
|
|
|
|
for (const id of videoIds) {
|
|
|
|
await watchVideoPageTest(path + id)
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2023-03-02 04:35:59 -05:00
|
|
|
it('Should have valid Open Graph tags on the watch page with thread id Angular param', async function () {
|
|
|
|
for (const path of watchVideoBasePaths) {
|
|
|
|
for (const id of videoIds) {
|
|
|
|
await watchVideoPageTest(path + id + ';threadId=1')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
it('Should have valid Open Graph tags on the watch playlist page', async function () {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const path of watchPlaylistBasePaths) {
|
|
|
|
for (const id of playlistIds) {
|
|
|
|
await watchPlaylistPageTest(path + id)
|
|
|
|
}
|
|
|
|
}
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
})
|
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
describe('Twitter card', async function () {
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
describe('Not whitelisted', function () {
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
async function accountPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 04:21:39 -04:00
|
|
|
const text = res.text
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="summary" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Chocobozzz" />')
|
|
|
|
expect(text).to.contain(`<meta property="twitter:title" content="${account.name}" />`)
|
|
|
|
expect(text).to.contain(`<meta property="twitter:description" content="${account.description}" />`)
|
|
|
|
}
|
2018-05-10 06:26:47 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
async function channelPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 04:21:39 -04:00
|
|
|
const text = res.text
|
2018-05-10 06:26:47 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="summary" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Chocobozzz" />')
|
2021-07-16 03:04:35 -04:00
|
|
|
expect(text).to.contain(`<meta property="twitter:title" content="${servers[0].store.channel.displayName}" />`)
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain(`<meta property="twitter:description" content="${channelDescription}" />`)
|
2021-04-23 19:44:39 -04:00
|
|
|
}
|
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
async function watchVideoPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 05:36:33 -04:00
|
|
|
const text = res.text
|
2018-05-10 06:26:47 -04:00
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="summary_large_image" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Chocobozzz" />')
|
|
|
|
expect(text).to.contain(`<meta property="twitter:title" content="${videoName}" />`)
|
|
|
|
expect(text).to.contain(`<meta property="twitter:description" content="${videoDescriptionPlainText}" />`)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function watchPlaylistPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 05:36:33 -04:00
|
|
|
const text = res.text
|
|
|
|
|
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="summary" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Chocobozzz" />')
|
|
|
|
expect(text).to.contain(`<meta property="twitter:title" content="${playlistName}" />`)
|
|
|
|
expect(text).to.contain(`<meta property="twitter:description" content="${playlistDescription}" />`)
|
|
|
|
}
|
|
|
|
|
|
|
|
it('Should have valid twitter card on the watch video page', async function () {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const path of watchVideoBasePaths) {
|
|
|
|
for (const id of videoIds) {
|
|
|
|
await watchVideoPageTest(path + id)
|
|
|
|
}
|
|
|
|
}
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
it('Should have valid twitter card on the watch playlist page', async function () {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const path of watchPlaylistBasePaths) {
|
|
|
|
for (const id of playlistIds) {
|
|
|
|
await watchPlaylistPageTest(path + id)
|
|
|
|
}
|
|
|
|
}
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have valid twitter card on the account page', async function () {
|
|
|
|
await accountPageTest('/accounts/' + account.name)
|
|
|
|
await accountPageTest('/a/' + account.name)
|
|
|
|
await accountPageTest('/@' + account.name)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have valid twitter card on the channel page', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await channelPageTest('/video-channels/' + servers[0].store.channel.name)
|
|
|
|
await channelPageTest('/c/' + servers[0].store.channel.name)
|
|
|
|
await channelPageTest('/@' + servers[0].store.channel.name)
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
describe('Whitelisted', function () {
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
before(async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const config = await servers[0].config.getCustomConfig()
|
2021-05-28 04:21:39 -04:00
|
|
|
config.services.twitter = {
|
|
|
|
username: '@Kuja',
|
|
|
|
whitelisted: true
|
|
|
|
}
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].config.updateCustomConfig({ newCustomConfig: config })
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
2020-07-31 05:29:15 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
async function accountPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 04:21:39 -04:00
|
|
|
const text = res.text
|
2018-05-10 06:26:47 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="summary" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Kuja" />')
|
2021-04-23 19:44:39 -04:00
|
|
|
}
|
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
async function channelPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 04:21:39 -04:00
|
|
|
const text = res.text
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="summary" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Kuja" />')
|
|
|
|
}
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
async function watchVideoPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 05:36:33 -04:00
|
|
|
const text = res.text
|
2020-08-05 09:35:58 -04:00
|
|
|
|
2021-05-28 05:36:33 -04:00
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="player" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Kuja" />')
|
|
|
|
}
|
|
|
|
|
|
|
|
async function watchPlaylistPageTest (path: string) {
|
2021-07-16 04:42:24 -04:00
|
|
|
const res = await makeGetRequest({ url: servers[0].url, path, accept: 'text/html', expectedStatus: HttpStatusCode.OK_200 })
|
2021-05-28 05:36:33 -04:00
|
|
|
const text = res.text
|
|
|
|
|
|
|
|
expect(text).to.contain('<meta property="twitter:card" content="player" />')
|
|
|
|
expect(text).to.contain('<meta property="twitter:site" content="@Kuja" />')
|
|
|
|
}
|
|
|
|
|
|
|
|
it('Should have valid twitter card on the watch video page', async function () {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const path of watchVideoBasePaths) {
|
|
|
|
for (const id of videoIds) {
|
|
|
|
await watchVideoPageTest(path + id)
|
|
|
|
}
|
|
|
|
}
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
2021-04-23 19:44:39 -04:00
|
|
|
|
2021-05-28 04:21:39 -04:00
|
|
|
it('Should have valid twitter card on the watch playlist page', async function () {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const path of watchPlaylistBasePaths) {
|
|
|
|
for (const id of playlistIds) {
|
|
|
|
await watchPlaylistPageTest(path + id)
|
|
|
|
}
|
|
|
|
}
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have valid twitter card on the account page', async function () {
|
|
|
|
await accountPageTest('/accounts/' + account.name)
|
|
|
|
await accountPageTest('/a/' + account.name)
|
|
|
|
await accountPageTest('/@' + account.name)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should have valid twitter card on the channel page', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await channelPageTest('/video-channels/' + servers[0].store.channel.name)
|
|
|
|
await channelPageTest('/c/' + servers[0].store.channel.name)
|
|
|
|
await channelPageTest('/@' + servers[0].store.channel.name)
|
2021-05-28 04:21:39 -04:00
|
|
|
})
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2018-07-23 05:28:27 -04:00
|
|
|
})
|
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
describe('Index HTML', function () {
|
|
|
|
|
|
|
|
it('Should have valid index html tags (title, description...)', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const config = await servers[0].config.getConfig()
|
2020-12-08 04:53:41 -05:00
|
|
|
const res = await makeHTMLRequest(servers[0].url, '/videos/trending')
|
2020-08-05 09:35:58 -04:00
|
|
|
|
|
|
|
const description = 'PeerTube, an ActivityPub-federated video streaming platform using P2P directly in your web browser.'
|
2021-07-07 05:51:09 -04:00
|
|
|
checkIndexTags(res.text, 'PeerTube', description, '', config)
|
2018-08-03 10:23:45 -04:00
|
|
|
})
|
2018-07-23 05:28:27 -04:00
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
it('Should update the customized configuration and have the correct index html tags', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
await servers[0].config.updateCustomSubConfig({
|
2021-07-07 05:51:09 -04:00
|
|
|
newConfig: {
|
|
|
|
instance: {
|
|
|
|
name: 'PeerTube updated',
|
|
|
|
shortDescription: 'my short description',
|
|
|
|
description: 'my super description',
|
|
|
|
terms: 'my super terms',
|
|
|
|
defaultNSFWPolicy: 'blur',
|
|
|
|
defaultClientRoute: '/videos/recently-added',
|
|
|
|
customizations: {
|
|
|
|
javascript: 'alert("coucou")',
|
|
|
|
css: 'body { background-color: red; }'
|
|
|
|
}
|
2020-08-05 09:35:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2018-07-23 05:28:27 -04:00
|
|
|
|
2021-07-16 03:04:35 -04:00
|
|
|
const config = await servers[0].config.getConfig()
|
2020-12-08 04:53:41 -05:00
|
|
|
const res = await makeHTMLRequest(servers[0].url, '/videos/trending')
|
2020-08-05 09:35:58 -04:00
|
|
|
|
2021-07-07 05:51:09 -04:00
|
|
|
checkIndexTags(res.text, 'PeerTube updated', 'my short description', 'body { background-color: red; }', config)
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2018-07-23 05:28:27 -04:00
|
|
|
|
2020-08-05 09:35:58 -04:00
|
|
|
it('Should have valid index html updated tags (title, description...)', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const config = await servers[0].config.getConfig()
|
2020-12-08 04:53:41 -05:00
|
|
|
const res = await makeHTMLRequest(servers[0].url, '/videos/trending')
|
2018-07-23 05:28:27 -04:00
|
|
|
|
2021-07-07 05:51:09 -04:00
|
|
|
checkIndexTags(res.text, 'PeerTube updated', 'my short description', 'body { background-color: red; }', config)
|
2020-08-05 09:35:58 -04:00
|
|
|
})
|
2020-12-06 13:23:12 -05:00
|
|
|
|
|
|
|
it('Should use the original video URL for the canonical tag', async function () {
|
2021-05-28 05:36:33 -04:00
|
|
|
for (const basePath of watchVideoBasePaths) {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const id of videoIds) {
|
|
|
|
const res = await makeHTMLRequest(servers[1].url, basePath + id)
|
2021-07-16 03:04:35 -04:00
|
|
|
expect(res.text).to.contain(`<link rel="canonical" href="${servers[0].url}/videos/watch/${servers[0].store.video.uuid}" />`)
|
2021-06-28 11:30:59 -04:00
|
|
|
}
|
2021-05-28 05:36:33 -04:00
|
|
|
}
|
2020-12-08 04:53:41 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should use the original account URL for the canonical tag', async function () {
|
2021-07-07 05:51:09 -04:00
|
|
|
const accountURLtest = res => {
|
2021-04-23 19:44:39 -04:00
|
|
|
expect(res.text).to.contain(`<link rel="canonical" href="${servers[0].url}/accounts/root" />`)
|
|
|
|
}
|
|
|
|
|
|
|
|
accountURLtest(await makeHTMLRequest(servers[1].url, '/accounts/root@' + servers[0].host))
|
|
|
|
accountURLtest(await makeHTMLRequest(servers[1].url, '/a/root@' + servers[0].host))
|
|
|
|
accountURLtest(await makeHTMLRequest(servers[1].url, '/@root@' + servers[0].host))
|
2020-12-08 04:53:41 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should use the original channel URL for the canonical tag', async function () {
|
2021-07-07 05:51:09 -04:00
|
|
|
const channelURLtests = res => {
|
2021-04-23 19:44:39 -04:00
|
|
|
expect(res.text).to.contain(`<link rel="canonical" href="${servers[0].url}/video-channels/root_channel" />`)
|
|
|
|
}
|
|
|
|
|
|
|
|
channelURLtests(await makeHTMLRequest(servers[1].url, '/video-channels/root_channel@' + servers[0].host))
|
|
|
|
channelURLtests(await makeHTMLRequest(servers[1].url, '/c/root_channel@' + servers[0].host))
|
|
|
|
channelURLtests(await makeHTMLRequest(servers[1].url, '/@root_channel@' + servers[0].host))
|
2020-12-08 04:53:41 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should use the original playlist URL for the canonical tag', async function () {
|
2021-05-28 05:36:33 -04:00
|
|
|
for (const basePath of watchPlaylistBasePaths) {
|
2021-06-28 11:30:59 -04:00
|
|
|
for (const id of playlistIds) {
|
|
|
|
const res = await makeHTMLRequest(servers[1].url, basePath + id)
|
|
|
|
expect(res.text).to.contain(`<link rel="canonical" href="${servers[0].url}/video-playlists/${playlist.uuid}" />`)
|
|
|
|
}
|
2021-05-28 05:36:33 -04:00
|
|
|
}
|
2020-12-06 13:23:12 -05:00
|
|
|
})
|
2021-08-05 07:29:10 -04:00
|
|
|
|
|
|
|
it('Should add noindex meta tag for remote accounts', async function () {
|
|
|
|
const handle = 'root@' + servers[0].host
|
|
|
|
const paths = [ '/accounts/', '/a/', '/@' ]
|
|
|
|
|
|
|
|
for (const path of paths) {
|
|
|
|
{
|
|
|
|
const { text } = await makeHTMLRequest(servers[1].url, path + handle)
|
|
|
|
expect(text).to.contain('<meta name="robots" content="noindex" />')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { text } = await makeHTMLRequest(servers[0].url, path + handle)
|
|
|
|
expect(text).to.not.contain('<meta name="robots" content="noindex" />')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2022-04-08 10:26:38 -04:00
|
|
|
it('Should add noindex meta tag for remote channels', async function () {
|
|
|
|
const handle = 'root_channel@' + servers[0].host
|
|
|
|
const paths = [ '/video-channels/', '/c/', '/@' ]
|
|
|
|
|
|
|
|
for (const path of paths) {
|
|
|
|
{
|
|
|
|
const { text } = await makeHTMLRequest(servers[1].url, path + handle)
|
|
|
|
expect(text).to.contain('<meta name="robots" content="noindex" />')
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const { text } = await makeHTMLRequest(servers[0].url, path + handle)
|
|
|
|
expect(text).to.not.contain('<meta name="robots" content="noindex" />')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not display internal/private video', async function () {
|
|
|
|
for (const basePath of watchVideoBasePaths) {
|
|
|
|
for (const id of [ privateVideoId, internalVideoId ]) {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: servers[0].url,
|
|
|
|
path: basePath + id,
|
|
|
|
accept: 'text/html',
|
|
|
|
expectedStatus: HttpStatusCode.NOT_FOUND_404
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.not.contain('internal')
|
|
|
|
expect(res.text).to.not.contain('private')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should add noindex meta tag for unlisted video', async function () {
|
|
|
|
for (const basePath of watchVideoBasePaths) {
|
|
|
|
const res = await makeGetRequest({
|
|
|
|
url: servers[0].url,
|
|
|
|
path: basePath + unlistedVideoId,
|
|
|
|
accept: 'text/html',
|
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
|
|
|
})
|
|
|
|
|
|
|
|
expect(res.text).to.contain('unlisted')
|
|
|
|
expect(res.text).to.contain('<meta name="robots" content="noindex" />')
|
|
|
|
}
|
|
|
|
})
|
2018-07-23 05:28:27 -04:00
|
|
|
})
|
|
|
|
|
2021-05-14 06:04:44 -04:00
|
|
|
describe('Embed HTML', function () {
|
|
|
|
|
|
|
|
it('Should have the correct embed html tags', async function () {
|
2021-07-16 03:04:35 -04:00
|
|
|
const config = await servers[0].config.getConfig()
|
|
|
|
const res = await makeHTMLRequest(servers[0].url, servers[0].store.video.embedPath)
|
2021-05-14 06:04:44 -04:00
|
|
|
|
2021-07-07 05:51:09 -04:00
|
|
|
checkIndexTags(res.text, 'PeerTube updated', 'my short description', 'body { background-color: red; }', config)
|
2021-05-14 06:04:44 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
2020-12-08 04:53:41 -05:00
|
|
|
await cleanupTests(servers)
|
2017-09-04 15:21:47 -04:00
|
|
|
})
|
|
|
|
})
|