2020-01-31 10:56:52 -05:00
|
|
|
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
import 'mocha'
|
|
|
|
import {
|
2019-04-24 09:10:37 -04:00
|
|
|
cleanupTests,
|
2021-07-16 03:47:51 -04:00
|
|
|
createSingleServer,
|
2018-08-16 09:25:20 -04:00
|
|
|
makeDeleteRequest,
|
|
|
|
makeGetRequest,
|
|
|
|
makePostBodyRequest,
|
2021-07-16 03:47:51 -04:00
|
|
|
PeerTubeServer,
|
2021-07-16 04:42:24 -04:00
|
|
|
setAccessTokensToServers,
|
|
|
|
waitJobs
|
2021-12-17 03:29:23 -05:00
|
|
|
} from '@shared/server-commands'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '@shared/models'
|
2021-12-17 05:58:15 -05:00
|
|
|
import { checkBadStartPagination, checkBadCountPagination, checkBadSortPagination } from '@server/tests/shared'
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
describe('Test user subscriptions API validators', function () {
|
|
|
|
const path = '/api/v1/users/me/subscriptions'
|
2021-07-16 03:47:51 -04:00
|
|
|
let server: PeerTubeServer
|
2018-08-16 09:25:20 -04:00
|
|
|
let userAccessToken = ''
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------
|
|
|
|
|
|
|
|
before(async function () {
|
|
|
|
this.timeout(30000)
|
|
|
|
|
2021-07-16 03:47:51 -04:00
|
|
|
server = await createSingleServer(1)
|
2018-08-16 09:25:20 -04:00
|
|
|
|
|
|
|
await setAccessTokensToServers([ server ])
|
|
|
|
|
|
|
|
const user = {
|
|
|
|
username: 'user1',
|
|
|
|
password: 'my super password'
|
|
|
|
}
|
2021-07-16 03:04:35 -04:00
|
|
|
await server.users.create({ username: user.username, password: user.password })
|
|
|
|
userAccessToken = await server.login.getAccessToken(user)
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing my subscriptions', function () {
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
|
|
|
await checkBadSortPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2018-08-17 09:45:42 -04:00
|
|
|
await makeGetRequest({
|
2018-08-16 09:25:20 -04:00
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: userAccessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When listing my subscriptions videos', function () {
|
|
|
|
const path = '/api/v1/users/me/subscriptions/videos'
|
|
|
|
|
|
|
|
it('Should fail with a bad start pagination', async function () {
|
|
|
|
await checkBadStartPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a bad count pagination', async function () {
|
|
|
|
await checkBadCountPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an incorrect sort', async function () {
|
|
|
|
await checkBadSortPagination(server.url, path, server.accessToken)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2018-08-17 09:45:42 -04:00
|
|
|
await makeGetRequest({
|
2018-08-16 09:25:20 -04:00
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: userAccessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
describe('When adding a subscription', function () {
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
2019-04-24 09:10:37 -04:00
|
|
|
fields: { uri: 'user1_channel@localhost:' + server.port },
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with bad URIs', async function () {
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: { uri: 'root' },
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: { uri: 'root@' },
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
|
|
|
fields: { uri: 'root@hello@' },
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2018-11-16 05:18:13 -05:00
|
|
|
this.timeout(20000)
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
await makePostBodyRequest({
|
|
|
|
url: server.url,
|
|
|
|
path,
|
|
|
|
token: server.accessToken,
|
2019-04-24 09:10:37 -04:00
|
|
|
fields: { uri: 'user1_channel@localhost:' + server.port },
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NO_CONTENT_204
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
2018-11-16 05:18:13 -05:00
|
|
|
|
|
|
|
await waitJobs([ server ])
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
describe('When getting a subscription', function () {
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
2019-04-24 09:10:37 -04:00
|
|
|
path: path + '/user1_channel@localhost:' + server.port,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-08-21 04:34:18 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with bad URIs', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/root',
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-21 04:34:18 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/root@',
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-21 04:34:18 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/root@hello@',
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-21 04:34:18 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unknown subscription', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
2019-04-24 09:10:37 -04:00
|
|
|
path: path + '/root1@localhost:' + server.port,
|
2018-08-21 04:34:18 -04:00
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NOT_FOUND_404
|
2018-08-21 04:34:18 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
2019-04-24 09:10:37 -04:00
|
|
|
path: path + '/user1_channel@localhost:' + server.port,
|
2018-08-21 04:34:18 -04:00
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-08-21 04:34:18 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-02-21 08:28:06 -05:00
|
|
|
describe('When checking if subscriptions exist', function () {
|
2018-08-23 11:58:39 -04:00
|
|
|
const existPath = path + '/exist'
|
|
|
|
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: existPath,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-08-23 11:58:39 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with bad URIs', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: existPath,
|
|
|
|
query: { uris: 'toto' },
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-23 11:58:39 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: existPath,
|
|
|
|
query: { 'uris[]': 1 },
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-23 11:58:39 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should succeed with the correct parameters', async function () {
|
|
|
|
await makeGetRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: existPath,
|
2019-04-24 09:10:37 -04:00
|
|
|
query: { 'uris[]': 'coucou@localhost:' + server.port },
|
2018-08-23 11:58:39 -04:00
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.OK_200
|
2018-08-23 11:58:39 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
describe('When removing a subscription', function () {
|
|
|
|
it('Should fail with a non authenticated user', async function () {
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
2019-04-24 09:10:37 -04:00
|
|
|
path: path + '/user1_channel@localhost:' + server.port,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.UNAUTHORIZED_401
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with bad URIs', async function () {
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/root',
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/root@',
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
|
|
|
path: path + '/root@hello@',
|
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.BAD_REQUEST_400
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should fail with an unknown subscription', async function () {
|
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
2019-04-24 09:10:37 -04:00
|
|
|
path: path + '/root1@localhost:' + server.port,
|
2018-08-16 09:25:20 -04:00
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NOT_FOUND_404
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-08-21 04:34:18 -04:00
|
|
|
it('Should succeed with the correct parameters', async function () {
|
2018-08-16 09:25:20 -04:00
|
|
|
await makeDeleteRequest({
|
|
|
|
url: server.url,
|
2019-04-24 09:10:37 -04:00
|
|
|
path: path + '/user1_channel@localhost:' + server.port,
|
2018-08-16 09:25:20 -04:00
|
|
|
token: server.accessToken,
|
2021-07-16 04:42:24 -04:00
|
|
|
expectedStatus: HttpStatusCode.NO_CONTENT_204
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2019-04-24 09:10:37 -04:00
|
|
|
after(async function () {
|
|
|
|
await cleanupTests([ server ])
|
2018-08-16 09:25:20 -04:00
|
|
|
})
|
|
|
|
})
|