cc6b257470
* Move automated api tests to api directory * First pass at automated browser testing
43 lines
1.4 KiB
JavaScript
43 lines
1.4 KiB
JavaScript
const { test } = require('@jest/globals');
|
|
var request = require('supertest');
|
|
request = request('http://127.0.0.1:8080');
|
|
|
|
const registerChat = require('./lib/chat').registerChat;
|
|
const sendChatMessage = require('./lib/chat').sendChatMessage;
|
|
|
|
const testVisibilityMessage = {
|
|
body: "message " + Math.floor(Math.random() * 100),
|
|
type: 'CHAT',
|
|
};
|
|
|
|
test('can send a chat message', async (done) => {
|
|
const registration = await registerChat();
|
|
const accessToken = registration.accessToken;
|
|
|
|
sendChatMessage(testVisibilityMessage, accessToken, done);
|
|
});
|
|
|
|
test('verify we can make API call to mark message as hidden', async (done) => {
|
|
const res = await request.get('/api/admin/chat/messages').auth('admin', 'abc123').expect(200)
|
|
|
|
const message = res.body[0];
|
|
const messageId = message.id;
|
|
await request.post('/api/admin/chat/updatemessagevisibility')
|
|
.auth('admin', 'abc123')
|
|
.send({ "idArray": [messageId], "visible": false }).expect(200);
|
|
done();
|
|
});
|
|
|
|
test('verify message has become hidden', async (done) => {
|
|
const res = await request.get('/api/admin/chat/messages')
|
|
.expect(200)
|
|
.auth('admin', 'abc123')
|
|
|
|
const message = res.body.filter(obj => {
|
|
return obj.body === `${testVisibilityMessage.body}`;
|
|
});
|
|
expect(message.length).toBe(1);
|
|
expect(message[0].hiddenAt).toBeTruthy();
|
|
done();
|
|
});
|