mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-10-31 16:10:36 -04:00
157a0fe278
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
226 lines
7.4 KiB
TypeScript
226 lines
7.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2024 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { promises as fs } from 'fs';
|
|
import { join } from 'path';
|
|
import { User } from 'src/users/user.entity';
|
|
import request from 'supertest';
|
|
|
|
import { ConsoleLoggerService } from '../../src/logger/console-logger.service';
|
|
import {
|
|
password1,
|
|
password2,
|
|
TestSetup,
|
|
TestSetupBuilder,
|
|
username1,
|
|
username2,
|
|
} from '../test-setup';
|
|
import { ensureDeleted } from '../utils';
|
|
|
|
describe('Media', () => {
|
|
let testSetup: TestSetup;
|
|
|
|
let uploadPath: string;
|
|
let agent: request.SuperAgentTest;
|
|
let user: User;
|
|
|
|
beforeAll(async () => {
|
|
testSetup = await TestSetupBuilder.create().withUsers().build();
|
|
|
|
uploadPath =
|
|
testSetup.configService.get('mediaConfig').backend.filesystem.uploadPath;
|
|
|
|
testSetup.app.useStaticAssets(uploadPath, {
|
|
prefix: '/uploads',
|
|
});
|
|
await testSetup.app.init();
|
|
|
|
const logger = await testSetup.app.resolve(ConsoleLoggerService);
|
|
logger.log('Switching logger', 'AppBootstrap');
|
|
testSetup.app.useLogger(logger);
|
|
|
|
await testSetup.notesService.createNote(
|
|
'test content',
|
|
null,
|
|
'test_upload_media',
|
|
);
|
|
user = testSetup.users[0];
|
|
|
|
agent = request.agent(testSetup.app.getHttpServer());
|
|
await agent
|
|
.post('/api/private/auth/local/login')
|
|
.send({ username: username1, password: password1 })
|
|
.expect(201);
|
|
});
|
|
|
|
afterAll(async () => {
|
|
// Delete the upload folder
|
|
await ensureDeleted(uploadPath);
|
|
await testSetup.app.close();
|
|
await testSetup.cleanup();
|
|
});
|
|
|
|
describe('POST /media', () => {
|
|
describe('works', () => {
|
|
it('with user', async () => {
|
|
const uploadResponse = await agent
|
|
.post('/api/private/media')
|
|
.attach('file', 'test/private-api/fixtures/test.png')
|
|
.set('HedgeDoc-Note', 'test_upload_media')
|
|
.expect('Content-Type', /json/)
|
|
.expect(201);
|
|
const uuid: string = uploadResponse.body.uuid;
|
|
const testImage = await fs.readFile(
|
|
'test/private-api/fixtures/test.png',
|
|
);
|
|
const path = '/api/private/media/' + uuid;
|
|
const apiResponse = await agent.get(path);
|
|
expect(apiResponse.statusCode).toEqual(200);
|
|
const downloadResponse = await agent.get(`/uploads/${uuid}.png`);
|
|
expect(downloadResponse.body).toEqual(testImage);
|
|
// delete the file afterwards
|
|
await fs.unlink(join(uploadPath, uuid + '.png'));
|
|
});
|
|
it('without user', async () => {
|
|
const agent = request.agent(testSetup.app.getHttpServer());
|
|
const uploadResponse = await agent
|
|
.post('/api/private/media')
|
|
.attach('file', 'test/private-api/fixtures/test.png')
|
|
.set('HedgeDoc-Note', 'test_upload_media')
|
|
.expect('Content-Type', /json/)
|
|
.expect(201);
|
|
const uuid: string = uploadResponse.body.uuid;
|
|
const testImage = await fs.readFile(
|
|
'test/private-api/fixtures/test.png',
|
|
);
|
|
const path = '/api/private/media/' + uuid;
|
|
const apiResponse = await agent.get(path);
|
|
expect(apiResponse.statusCode).toEqual(200);
|
|
const downloadResponse = await agent.get(`/uploads/${uuid}.png`);
|
|
expect(downloadResponse.body).toEqual(testImage);
|
|
// delete the file afterwards
|
|
await fs.unlink(join(uploadPath, uuid + '.png'));
|
|
});
|
|
});
|
|
describe('fails:', () => {
|
|
beforeEach(async () => {
|
|
await ensureDeleted(uploadPath);
|
|
});
|
|
it('MIME type not supported', async () => {
|
|
await agent
|
|
.post('/api/private/media')
|
|
.attach('file', 'test/private-api/fixtures/test.zip')
|
|
.set('HedgeDoc-Note', 'test_upload_media')
|
|
.expect(400);
|
|
await expect(fs.access(uploadPath)).rejects.toBeDefined();
|
|
});
|
|
it('note does not exist', async () => {
|
|
await agent
|
|
.post('/api/private/media')
|
|
.attach('file', 'test/private-api/fixtures/test.zip')
|
|
.set('HedgeDoc-Note', 'i_dont_exist')
|
|
.expect(404);
|
|
await expect(fs.access(uploadPath)).rejects.toBeDefined();
|
|
});
|
|
it('mediaBackend error', async () => {
|
|
await fs.mkdir(uploadPath, {
|
|
mode: '444',
|
|
});
|
|
await agent
|
|
.post('/api/private/media')
|
|
.attach('file', 'test/private-api/fixtures/test.png')
|
|
.set('HedgeDoc-Note', 'test_upload_media')
|
|
.expect('Content-Type', /json/)
|
|
.expect(500);
|
|
});
|
|
it('no media uploaded', async () => {
|
|
await agent
|
|
.post('/api/private/media')
|
|
.set('HedgeDoc-Note', 'test_upload_media')
|
|
.expect(400);
|
|
await expect(fs.access(uploadPath)).rejects.toBeDefined();
|
|
});
|
|
afterEach(async () => {
|
|
await ensureDeleted(uploadPath);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('DELETE /media/{filename}', () => {
|
|
it('deleting user is owner of file', async () => {
|
|
// upload a file with the default test user
|
|
const testNote = await testSetup.notesService.createNote(
|
|
'test content',
|
|
null,
|
|
'test_delete_media_file',
|
|
);
|
|
const testImage = await fs.readFile('test/private-api/fixtures/test.png');
|
|
const upload = await testSetup.mediaService.saveFile(
|
|
'test.png',
|
|
testImage,
|
|
user,
|
|
testNote,
|
|
);
|
|
const uuid = upload.uuid;
|
|
|
|
// login with a different user;
|
|
const agent2 = request.agent(testSetup.app.getHttpServer());
|
|
await agent2
|
|
.post('/api/private/auth/local/login')
|
|
.send({ username: username2, password: password2 })
|
|
.expect(201);
|
|
|
|
// try to delete upload with second user
|
|
await agent2.delete('/api/private/media/' + uuid).expect(403);
|
|
|
|
await agent.get(`/uploads/${uuid}.png`).expect(200);
|
|
|
|
// delete upload for real
|
|
await agent.delete('/api/private/media/' + uuid).expect(204);
|
|
|
|
// Test if file is really deleted
|
|
await agent.get(`/uploads/${uuid}.png`).expect(404);
|
|
});
|
|
it('deleting user is owner of note', async () => {
|
|
// upload a file with the default test user
|
|
const testNote = await testSetup.notesService.createNote(
|
|
'test content',
|
|
await testSetup.userService.getUserByUsername(username2),
|
|
'test_delete_media_note',
|
|
);
|
|
const testImage = await fs.readFile('test/private-api/fixtures/test.png');
|
|
const upload = await testSetup.mediaService.saveFile(
|
|
'test.png',
|
|
testImage,
|
|
null,
|
|
testNote,
|
|
);
|
|
const uuid = upload.uuid;
|
|
|
|
// login with a different user;
|
|
const agent2 = request.agent(testSetup.app.getHttpServer());
|
|
await agent2
|
|
.post('/api/private/auth/local/login')
|
|
.send({ username: username2, password: password2 })
|
|
.expect(201);
|
|
|
|
const agentGuest = request.agent(testSetup.app.getHttpServer());
|
|
|
|
// try to delete upload with second user
|
|
await agent.delete('/api/private/media/' + uuid).expect(403);
|
|
|
|
await agent.get(`/uploads/${uuid}.png`).expect(200);
|
|
|
|
await agentGuest.delete('/api/private/media/' + uuid).expect(401);
|
|
|
|
await agent.get(`/uploads/${uuid}.png`).expect(200);
|
|
// delete upload for real
|
|
await agent2.delete('/api/private/media/' + uuid).expect(204);
|
|
|
|
// Test if file is really deleted
|
|
await agent.get(`/uploads/${uuid}.png`).expect(404);
|
|
});
|
|
});
|
|
});
|