it('Should fail without an incorrect input file', async function () {
const fields = {}
const attaches = {
- 'avatarfile': join(__dirname, '..', 'fixtures', 'video_short.mp4')
+ 'avatarfile': join(__dirname, '..', '..', 'fixtures', 'video_short.mp4')
}
await makeUploadRequest({ url: server.url, path: path + '/me/avatar/pick', token: server.accessToken, fields, attaches })
})
it('Should fail with a big file', async function () {
const fields = {}
const attaches = {
- 'avatarfile': join(__dirname, '..', 'fixtures', 'avatar-big.png')
+ 'avatarfile': join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
}
await makeUploadRequest({ url: server.url, path: path + '/me/avatar/pick', token: server.accessToken, fields, attaches })
})
it('Should succeed with the correct params', async function () {
const fields = {}
const attaches = {
- 'avatarfile': join(__dirname, '..', 'fixtures', 'avatar.png')
+ 'avatarfile': join(__dirname, '..', '..', 'fixtures', 'avatar.png')
}
await makeUploadRequest({
url: server.url,
describe('When adding a video', function () {
let baseCorrectParams
const baseCorrectAttaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short.webm')
+ 'videofile': join(__dirname, '..', '..', 'fixtures', 'video_short.webm')
}
before(function () {
it('Should fail without an incorrect input file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
+ 'videofile': join(__dirname, '..', '..', 'fixtures', 'video_short_fake.webm')
}
await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with an incorrect thumbnail file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar.png'),
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
+ 'thumbnailfile': join(__dirname, '..', '..', 'fixtures', 'avatar.png'),
+ 'videofile': join(__dirname, '..', '..', 'fixtures', 'video_short_fake.webm')
}
await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
it('Should fail with a big thumbnail file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar-big.png'),
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
+ 'thumbnailfile': join(__dirname, '..', '..', 'fixtures', 'avatar-big.png'),
+ 'videofile': join(__dirname, '..', '..', 'fixtures', 'video_short_fake.webm')
}
await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
it('Should fail with an incorrect preview file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'previewfile': join(__dirname, '..', 'fixtures', 'avatar.png'),
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
+ 'previewfile': join(__dirname, '..', '..', 'fixtures', 'avatar.png'),
+ 'videofile': join(__dirname, '..', '..', 'fixtures', 'video_short_fake.webm')
}
await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
it('Should fail with a big preview file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'previewfile': join(__dirname, '..', 'fixtures', 'avatar-big.png'),
- 'videofile': join(__dirname, '..', 'fixtures', 'video_short_fake.webm')
+ 'previewfile': join(__dirname, '..', '..', 'fixtures', 'avatar-big.png'),
+ 'videofile': join(__dirname, '..', '..', 'fixtures', 'video_short_fake.webm')
}
await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
{
const attaches = immutableAssign(baseCorrectAttaches, {
- videofile: join(__dirname, '..', 'fixtures', 'video_short.mp4')
+ videofile: join(__dirname, '..', '..', 'fixtures', 'video_short.mp4')
})
await makeUploadRequest({
{
const attaches = immutableAssign(baseCorrectAttaches, {
- videofile: join(__dirname, '..', 'fixtures', 'video_short.ogv')
+ videofile: join(__dirname, '..', '..', 'fixtures', 'video_short.ogv')
})
await makeUploadRequest({
it('Should fail with an incorrect thumbnail file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar.png')
+ 'thumbnailfile': join(__dirname, '..', '..', 'fixtures', 'avatar.png')
}
await makeUploadRequest({
it('Should fail with a big thumbnail file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'thumbnailfile': join(__dirname, '..', 'fixtures', 'avatar-big.png')
+ 'thumbnailfile': join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
}
await makeUploadRequest({
it('Should fail with an incorrect preview file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'previewfile': join(__dirname, '..', 'fixtures', 'avatar.png')
+ 'previewfile': join(__dirname, '..', '..', 'fixtures', 'avatar.png')
}
await makeUploadRequest({
it('Should fail with a big preview file', async function () {
const fields = baseCorrectParams
const attaches = {
- 'previewfile': join(__dirname, '..', 'fixtures', 'avatar-big.png')
+ 'previewfile': join(__dirname, '..', '..', 'fixtures', 'avatar-big.png')
}
await makeUploadRequest({