Adds 'post to channel' functionality. (#901)

* Adds 'post to channel' functionality. Closes #613

* Add specs
Update Slack integration marketing page

* Fix specs

* 💚
This commit is contained in:
Tom Moor
2019-02-19 22:42:13 -08:00
committed by GitHub
parent e283d15d7e
commit 19fc99944a
5 changed files with 138 additions and 9 deletions

View File

@ -128,7 +128,7 @@ describe('#hooks.slack', async () => {
);
});
it('should error if unknown user', async () => {
it('should respond with error if unknown user', async () => {
const res = await server.post('/api/hooks.slack', {
body: {
token: process.env.SLACK_VERIFICATION_TOKEN,
@ -136,7 +136,10 @@ describe('#hooks.slack', async () => {
text: 'Welcome',
},
});
expect(res.status).toEqual(400);
const body = await res.json();
expect(res.status).toEqual(200);
expect(body.text.includes('Sorry')).toEqual(true);
expect(body.attachments).toEqual(undefined);
});
it('should error if incorrect verification token', async () => {
@ -152,3 +155,56 @@ describe('#hooks.slack', async () => {
expect(res.status).toEqual(401);
});
});
describe('#hooks.interactive', async () => {
it('should respond with replacement message', async () => {
const user = await buildUser();
const document = await buildDocument({
title: 'This title contains a search term',
userId: user.id,
teamId: user.teamId,
});
const payload = JSON.stringify({
token: process.env.SLACK_VERIFICATION_TOKEN,
user: { id: user.serviceId, name: user.name },
callback_id: document.id,
});
const res = await server.post('/api/hooks.interactive', {
body: { payload },
});
const body = await res.json();
expect(res.status).toEqual(200);
expect(body.response_type).toEqual('in_channel');
expect(body.attachments.length).toEqual(1);
expect(body.attachments[0].title).toEqual(document.title);
});
it('should respond with error if unknown user', async () => {
const payload = JSON.stringify({
token: process.env.SLACK_VERIFICATION_TOKEN,
user: { id: 'not-a-user-id', name: 'unknown' },
callback_id: 'doesnt-matter',
});
const res = await server.post('/api/hooks.interactive', {
body: { payload },
});
const body = await res.json();
expect(res.status).toEqual(200);
expect(body.text.includes('Sorry')).toEqual(true);
expect(body.attachments).toEqual(undefined);
});
it('should error if incorrect verification token', async () => {
const { user } = await seed();
const payload = JSON.stringify({
token: 'wrong-verification-token',
user: { id: user.serviceId, name: user.name },
callback_id: 'doesnt-matter',
});
const res = await server.post('/api/hooks.interactive', {
body: { payload },
});
expect(res.status).toEqual(401);
});
});