mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add filter:html.client.json-ld.result hook
This commit is contained in:
@@ -605,6 +605,27 @@ describe('Test plugin filter hooks', function () {
|
||||
})
|
||||
})
|
||||
|
||||
describe('Client HTML filters', function () {
|
||||
let videoUUID: string
|
||||
|
||||
before(async function () {
|
||||
this.timeout(60000)
|
||||
|
||||
const { uuid } = await servers[0].videos.quickUpload({ name: 'html video' })
|
||||
videoUUID = uuid
|
||||
})
|
||||
|
||||
it('Should run filter:html.client.json-ld.result', async function () {
|
||||
const res = await makeGetRequest({ url: servers[0].url, path: '/w/' + videoUUID, expectedStatus: HttpStatusCode.OK_200 })
|
||||
expect(res.text).to.contain('"recordedAt":"http://example.com/recordedAt"')
|
||||
})
|
||||
|
||||
it('Should not run filter:html.client.json-ld.result with an account', async function () {
|
||||
const res = await makeGetRequest({ url: servers[0].url, path: '/a/root', expectedStatus: HttpStatusCode.OK_200 })
|
||||
expect(res.text).not.to.contain('"recordedAt":"http://example.com/recordedAt"')
|
||||
})
|
||||
})
|
||||
|
||||
describe('Search filters', function () {
|
||||
|
||||
before(async function () {
|
||||
|
||||
Reference in New Issue
Block a user