2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-10-05 05:15:06 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
2021-07-15 04:02:54 -04:00
|
|
|
import { HttpStatusCode } from '@shared/core-utils'
|
2018-10-05 05:15:06 -04:00
|
|
|
import {
|
2018-12-17 09:52:38 -05:00
|
|
|
checkBadCountPagination,
|
|
|
|
checkBadStartPagination,
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
|
|
|
flushAndRunServer,
|
2018-12-17 09:52:38 -05:00
|
|
|
makeGetRequest,
|
2018-10-05 05:15:06 -04:00
|
|
|
makePostBodyRequest,
|
|
|
|
makePutBodyRequest,
|
|
|
|
ServerInfo,
|
2021-07-15 04:02:54 -04:00
|
|
|
setAccessTokensToServers
|
|
|
|
} from '@shared/extra-utils'
|
2018-10-05 05:15:06 -04:00
|
|
|
|
|
|
|
describe('Test videos history API validator', function () {
|
2020-01-31 10:56:52 -05:00
|
|
|
const myHistoryPath = '/api/v1/users/me/history/videos'
|
|
|
|
const myHistoryRemove = myHistoryPath + '/remove'
|
2018-12-17 09:52:38 -05:00
|
|
|
let watchingPath: string
|
2018-10-05 05:15:06 -04:00
|
|
|
let server: ServerInfo
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
2019-04-24 04:53:40 -04:00
|
|
|
server = await flushAndRunServer(1)
|
2018-10-05 05:15:06 -04:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
2021-07-15 04:02:54 -04:00
|
|
|
const { uuid } = await server.videosCommand.upload()
|
|
|
|
watchingPath = '/api/v1/videos/' + uuid + '/watching'
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When notifying a user is watching a video', function () {
|
|
|
|
|
|
|
|
it('Should fail with an unauthenticated user', async function () {
|
|
|
|
const fields = { currentTime: 5 }
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePutBodyRequest({ url: server.url, path: watchingPath, fields, statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect video id', async function () {
|
|
|
|
const fields = { currentTime: 5 }
|
|
|
|
const path = '/api/v1/videos/blabla/watching'
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
fields,
|
|
|
|
token: server.accessToken,
|
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
|
|
|
})
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unknown video', async function () {
|
|
|
|
const fields = { currentTime: 5 }
|
|
|
|
const path = '/api/v1/videos/d91fff41-c24d-4508-8e13-3bd5902c3b02/watching'
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
fields,
|
|
|
|
token: server.accessToken,
|
|
|
|
statusCodeExpected: HttpStatusCode.NOT_FOUND_404
|
|
|
|
})
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad current time', async function () {
|
|
|
|
const fields = { currentTime: 'hello' }
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: watchingPath,
|
|
|
|
fields,
|
|
|
|
token: server.accessToken,
|
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
|
|
|
})
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
|
|
|
const fields = { currentTime: 5 }
|
|
|
|
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePutBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: watchingPath,
|
|
|
|
fields,
|
|
|
|
token: server.accessToken,
|
|
|
|
statusCodeExpected: HttpStatusCode.NO_CONTENT_204
|
|
|
|
})
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing user videos history', function () {
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, myHistoryPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, myHistoryPath, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unauthenticated user', async function () {
|
2020-12-07 08:32:36 -05:00
|
|
|
await makeGetRequest({ url: server.url, path: myHistoryPath, statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct params', async function () {
|
2020-12-07 08:32:36 -05:00
|
|
|
await makeGetRequest({ url: server.url, token: server.accessToken, path: myHistoryPath, statusCodeExpected: HttpStatusCode.OK_200 })
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When removing user videos history', function () {
|
|
|
|
it('Should fail with an unauthenticated user', async function () {
|
2020-12-07 08:32:36 -05:00
|
|
|
await makePostBodyRequest({ url: server.url, path: myHistoryPath + '/remove', statusCodeExpected: HttpStatusCode.UNAUTHORIZED_401 })
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad beforeDate parameter', async function () {
|
|
|
|
const body = { beforeDate: '15' }
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
path: myHistoryRemove,
|
|
|
|
fields: body,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.BAD_REQUEST_400
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with a valid beforeDate param', async function () {
|
|
|
|
const body = { beforeDate: new Date().toISOString() }
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
path: myHistoryRemove,
|
|
|
|
fields: body,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.NO_CONTENT_204
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed without body', async function () {
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
token: server.accessToken,
|
|
|
|
path: myHistoryRemove,
|
2020-12-07 08:32:36 -05:00
|
|
|
statusCodeExpected: HttpStatusCode.NO_CONTENT_204
|
2018-12-17 09:52:38 -05:00
|
|
|
})
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-10-05 05:15:06 -04:00
|
|
|
})
|
|
|
|
})
|