From f713f36bdf6f696ab0fe8a309035a09e864a48ca Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 14 Nov 2022 12:06:31 +0100 Subject: Federate entire description Introduce an explicit field truncatedDescription description in video list is deprecated description in video get will contain the entire description --- server/tests/api/videos/video-description.ts | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'server/tests/api') diff --git a/server/tests/api/videos/video-description.ts b/server/tests/api/videos/video-description.ts index a4b3ff6e7..c4185882a 100644 --- a/server/tests/api/videos/video-description.ts +++ b/server/tests/api/videos/video-description.ts @@ -14,8 +14,12 @@ describe('Test video description', function () { let servers: PeerTubeServer[] = [] let videoUUID = '' let videoId: number + const longDescription = 'my super description for server 1'.repeat(50) + // 30 characters * 6 -> 240 characters + const truncatedDescription = 'my super description for server 1'.repeat(7) + 'my super descrip...' + before(async function () { this.timeout(40000) @@ -45,15 +49,22 @@ describe('Test video description', function () { videoUUID = data[0].uuid }) - it('Should have a truncated description on each server', async function () { + it('Should have a truncated description on each server when listing videos', async function () { for (const server of servers) { - const video = await server.videos.get({ id: videoUUID }) - - // 30 characters * 6 -> 240 characters - const truncatedDescription = 'my super description for server 1'.repeat(7) + - 'my super descrip...' + const { data } = await server.videos.list() + const video = data.find(v => v.uuid === videoUUID) expect(video.description).to.equal(truncatedDescription) + expect(video.truncatedDescription).to.equal(truncatedDescription) + } + }) + + it('Should not have a truncated description on each server when getting videos', async function () { + for (const server of servers) { + const video = await server.videos.get({ id: videoUUID }) + + expect(video.description).to.equal(longDescription) + expect(video.truncatedDescription).to.equal(truncatedDescription) } }) -- cgit v1.2.3