5dff6f32fc
* WIP for automated integration test * See if it runs under a workflow * Support running test locally as well as a workflow * Use already downloaded repo to build. Do not re-clone * Add comments * Update to support new default config file * Split out different test suites * Add test for chat * Always run test with config-default and ignore local config file * Remove the build workflow because the end to end test does that now
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
const { test } = require('@jest/globals');
|
|
var request = require('supertest');
|
|
request = request('http://127.0.0.1:8080');
|
|
|
|
const WebSocket = require('ws');
|
|
var ws;
|
|
|
|
const id = Math.random().toString(36).substring(7);
|
|
const username = 'user' + Math.floor(Math.random() * 100);
|
|
const message = Math.floor(Math.random() * 100) + ' test 123';
|
|
const messageRaw = message + ' *and some markdown too*';
|
|
const messageMarkdown = '<p>' + message + ' <em>and some markdown too</em></p>'
|
|
const date = new Date().toISOString();
|
|
|
|
const testMessage = {
|
|
author: username,
|
|
body: messageRaw,
|
|
id: id,
|
|
type: 'CHAT',
|
|
visible: true,
|
|
timestamp: date,
|
|
};
|
|
|
|
test('can send a chat message', (done) => {
|
|
ws = new WebSocket('ws://127.0.0.1:8080/entry', {
|
|
origin: 'http://localhost',
|
|
});
|
|
|
|
function onOpen() {
|
|
ws.send(JSON.stringify(testMessage), function() {
|
|
ws.close();
|
|
done();
|
|
});
|
|
}
|
|
|
|
ws.on('open', onOpen);
|
|
});
|
|
|
|
test('can fetch chat messages', (done) => {
|
|
request.get('/api/chat').expect(200)
|
|
.then((res) => {
|
|
expect(res.body[0].author).toBe(testMessage.author);
|
|
expect(res.body[0].body).toBe(messageMarkdown);
|
|
expect(res.body[0].date).toBe(testMessage.date);
|
|
expect(res.body[0].type).toBe(testMessage.type);
|
|
|
|
done();
|
|
});
|
|
});
|