Added a simple test for unfurl enpoint

This commit is contained in:
Jori Lallo 2018-01-15 14:07:29 -08:00
parent 4c9bff478a
commit bcbca3cf41
1 changed files with 49 additions and 0 deletions

49
server/api/hooks.test.js Normal file
View File

@ -0,0 +1,49 @@
/* eslint-disable flowtype/require-valid-file-annotation */
import TestServer from 'fetch-test-server';
import app from '..';
import Authentication from '../models/Authentication';
import { flushdb, seed } from '../test/support';
import * as Slack from '../slack';
const server = new TestServer(app.callback());
beforeEach(flushdb);
afterAll(server.close);
jest.mock('../slack', () => ({
post: jest.fn(),
}));
describe('#hooks.unfurl', async () => {
it('should return documents', async () => {
const { user, document } = await seed();
await Authentication.create({
serviceId: 'slack',
userId: user.id,
teamId: user.teamId,
token: '',
});
const res = await server.post('/api/hooks.unfurl', {
body: {
token: process.env.SLACK_VERIFICATION_TOKEN,
team_id: 'TXXXXXXXX',
api_app_id: 'AXXXXXXXXX',
event: {
type: 'link_shared',
channel: 'Cxxxxxx',
user: user.slackId,
message_ts: '123456789.9875',
links: [
{
domain: 'getoutline.com',
url: document.getUrl(),
},
],
},
},
});
expect(res.status).toEqual(200);
expect(Slack.post).toHaveBeenCalled();
});
});