mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-25 01:33:14 +00:00
test(e2e/private/alias): use testSetup with users
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
2096e23e35
commit
b2802d4c29
1 changed files with 6 additions and 8 deletions
|
@ -5,11 +5,9 @@
|
||||||
*/
|
*/
|
||||||
import request from 'supertest';
|
import request from 'supertest';
|
||||||
|
|
||||||
import { AuthConfig } from '../../src/config/auth.config';
|
|
||||||
import { AliasCreateDto } from '../../src/notes/alias-create.dto';
|
import { AliasCreateDto } from '../../src/notes/alias-create.dto';
|
||||||
import { AliasUpdateDto } from '../../src/notes/alias-update.dto';
|
import { AliasUpdateDto } from '../../src/notes/alias-update.dto';
|
||||||
import { User } from '../../src/users/user.entity';
|
import { User } from '../../src/users/user.entity';
|
||||||
import { setupSessionMiddleware } from '../../src/utils/session';
|
|
||||||
import { TestSetup } from '../test-setup';
|
import { TestSetup } from '../test-setup';
|
||||||
|
|
||||||
describe('Alias', () => {
|
describe('Alias', () => {
|
||||||
|
@ -22,20 +20,20 @@ describe('Alias', () => {
|
||||||
let agent: request.SuperAgentTest;
|
let agent: request.SuperAgentTest;
|
||||||
|
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
testSetup = await TestSetup.create();
|
testSetup = await (await TestSetup.create()).withUsers();
|
||||||
|
|
||||||
forbiddenNoteId =
|
forbiddenNoteId =
|
||||||
testSetup.configService.get('appConfig').forbiddenNoteIds[0];
|
testSetup.configService.get('appConfig').forbiddenNoteIds[0];
|
||||||
const authConfig = testSetup.configService.get('authConfig') as AuthConfig;
|
|
||||||
setupSessionMiddleware(testSetup.app, authConfig);
|
|
||||||
await testSetup.app.init();
|
await testSetup.app.init();
|
||||||
user = await testSetup.userService.createUser('hardcoded', 'Testy');
|
|
||||||
await testSetup.identityService.createLocalIdentity(user, 'test');
|
user = testSetup.users[0];
|
||||||
|
|
||||||
content = 'This is a test note.';
|
content = 'This is a test note.';
|
||||||
agent = request.agent(testSetup.app.getHttpServer());
|
agent = request.agent(testSetup.app.getHttpServer());
|
||||||
await agent
|
await agent
|
||||||
.post('/api/private/auth/local/login')
|
.post('/api/private/auth/local/login')
|
||||||
.send({ username: 'hardcoded', password: 'test' })
|
.send({ username: 'testuser1', password: 'testuser1' })
|
||||||
.expect(201);
|
.expect(201);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue