diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/check-params/video-channels.ts | 14 | ||||
-rw-r--r-- | server/tests/api/videos/multiple-servers.ts | 2 | ||||
-rw-r--r-- | server/tests/api/videos/video-channels.ts | 4 |
3 files changed, 10 insertions, 10 deletions
diff --git a/server/tests/api/check-params/video-channels.ts b/server/tests/api/check-params/video-channels.ts index 7cda879ed..40a8e97cc 100644 --- a/server/tests/api/check-params/video-channels.ts +++ b/server/tests/api/check-params/video-channels.ts | |||
@@ -25,7 +25,7 @@ import { User } from '../../../../shared/models/users' | |||
25 | 25 | ||
26 | const expect = chai.expect | 26 | const expect = chai.expect |
27 | 27 | ||
28 | describe('Test videos API validator', function () { | 28 | describe('Test video channels API validator', function () { |
29 | const videoChannelPath = '/api/v1/video-channels' | 29 | const videoChannelPath = '/api/v1/video-channels' |
30 | let server: ServerInfo | 30 | let server: ServerInfo |
31 | let accessTokenUser: string | 31 | let accessTokenUser: string |
@@ -85,7 +85,7 @@ describe('Test videos API validator', function () { | |||
85 | 85 | ||
86 | describe('When adding a video channel', function () { | 86 | describe('When adding a video channel', function () { |
87 | const baseCorrectParams = { | 87 | const baseCorrectParams = { |
88 | name: 'hello', | 88 | displayName: 'hello', |
89 | description: 'super description', | 89 | description: 'super description', |
90 | support: 'super support text' | 90 | support: 'super support text' |
91 | } | 91 | } |
@@ -105,13 +105,13 @@ describe('Test videos API validator', function () { | |||
105 | await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields }) | 105 | await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields }) |
106 | }) | 106 | }) |
107 | 107 | ||
108 | it('Should fail without name', async function () { | 108 | it('Should fail without a name', async function () { |
109 | const fields = omit(baseCorrectParams, 'name') | 109 | const fields = omit(baseCorrectParams, 'displayName') |
110 | await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields }) | 110 | await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields }) |
111 | }) | 111 | }) |
112 | 112 | ||
113 | it('Should fail with a long name', async function () { | 113 | it('Should fail with a long name', async function () { |
114 | const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(25) }) | 114 | const fields = immutableAssign(baseCorrectParams, { displayName: 'super'.repeat(25) }) |
115 | await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields }) | 115 | await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields }) |
116 | }) | 116 | }) |
117 | 117 | ||
@@ -138,7 +138,7 @@ describe('Test videos API validator', function () { | |||
138 | 138 | ||
139 | describe('When updating a video channel', function () { | 139 | describe('When updating a video channel', function () { |
140 | const baseCorrectParams = { | 140 | const baseCorrectParams = { |
141 | name: 'hello', | 141 | displayName: 'hello', |
142 | description: 'super description' | 142 | description: 'super description' |
143 | } | 143 | } |
144 | let path: string | 144 | let path: string |
@@ -168,7 +168,7 @@ describe('Test videos API validator', function () { | |||
168 | }) | 168 | }) |
169 | 169 | ||
170 | it('Should fail with a long name', async function () { | 170 | it('Should fail with a long name', async function () { |
171 | const fields = immutableAssign(baseCorrectParams, { name: 'super'.repeat(25) }) | 171 | const fields = immutableAssign(baseCorrectParams, { displayName: 'super'.repeat(25) }) |
172 | await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields }) | 172 | await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields }) |
173 | }) | 173 | }) |
174 | 174 | ||
diff --git a/server/tests/api/videos/multiple-servers.ts b/server/tests/api/videos/multiple-servers.ts index e462a2d47..94d627e26 100644 --- a/server/tests/api/videos/multiple-servers.ts +++ b/server/tests/api/videos/multiple-servers.ts | |||
@@ -59,7 +59,7 @@ describe('Test multiple servers', function () { | |||
59 | 59 | ||
60 | { | 60 | { |
61 | const videoChannel = { | 61 | const videoChannel = { |
62 | name: 'my channel', | 62 | displayName: 'my channel', |
63 | description: 'super channel' | 63 | description: 'super channel' |
64 | } | 64 | } |
65 | await addVideoChannel(servers[ 0 ].url, servers[ 0 ].accessToken, videoChannel) | 65 | await addVideoChannel(servers[ 0 ].url, servers[ 0 ].accessToken, videoChannel) |
diff --git a/server/tests/api/videos/video-channels.ts b/server/tests/api/videos/video-channels.ts index d24b8ab0b..585b6a2b5 100644 --- a/server/tests/api/videos/video-channels.ts +++ b/server/tests/api/videos/video-channels.ts | |||
@@ -59,7 +59,7 @@ describe('Test video channels', function () { | |||
59 | this.timeout(10000) | 59 | this.timeout(10000) |
60 | 60 | ||
61 | const videoChannel = { | 61 | const videoChannel = { |
62 | name: 'second video channel', | 62 | displayName: 'second video channel', |
63 | description: 'super video channel description', | 63 | description: 'super video channel description', |
64 | support: 'super video channel support text' | 64 | support: 'super video channel support text' |
65 | } | 65 | } |
@@ -125,7 +125,7 @@ describe('Test video channels', function () { | |||
125 | this.timeout(5000) | 125 | this.timeout(5000) |
126 | 126 | ||
127 | const videoChannelAttributes = { | 127 | const videoChannelAttributes = { |
128 | name: 'video channel updated', | 128 | displayName: 'video channel updated', |
129 | description: 'video channel description updated', | 129 | description: 'video channel description updated', |
130 | support: 'video channel support text updated' | 130 | support: 'video channel support text updated' |
131 | } | 131 | } |