smartslack
Version:
SmartSlack is a node.js module for Slack's Real Time Messaging API
269 lines (205 loc) • 8.16 kB
JavaScript
;
var chai = require('chai');
var should = chai.should();
var expect = chai.expect;
var nock = require('nock');
var im = require('./../lib/slack/im');
var errors = require('../lib/errors');
var Cache = require('../lib/cache');
var slackTypes = require('./../lib/slack/types');
describe('im', function () {
// function get(name, callback)
describe('#close', function () {
before(function () {
var cache = Cache;
cache.data = {};
cache.data.hostname = 'slack.com';
});
it('exists as method on im', function (done) {
expect(typeof im.close).to.equal('function');
done();
});
it('should return an error to callback if missing required string argument', function (done) {
im.close(null, function (err, result) {
expect(err).to.not.equal(null);
expect(err.message).to.equal('must supply valid argument(s)');
});
done();
});
it('should return an api response to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.close')
.reply(200, { ok: true });
im.close('channelid', function (err, result) {
expect(result).to.be.an('object');
expect(result.ok).to.equal(true);
});
done();
});
it('should return an api error to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.close')
.reply(200, { ok: false, error: 'channel_not_found' });
im.close('channelid', function (err, result) {
expect(err).to.be.an('error');
expect(err.message).to.equal('channel_not_found');
done();
});
});
});
// function get(name, callback)
describe('#getList', function () {
before(function () {
var cache = Cache;
cache.data = {};
cache.data.hostname = 'slack.com';
});
it('should throw and error without a valid callback', function (done) {
expect(function () {
im.getList(null);
}).to.throw('callback must be a function');
done();
});
it('should return an api response to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.list')
.reply(200, { ok: true });
im.getList(function (err, result) {
expect(result).to.be.an('object');
expect(result.ok).to.equal(true);
});
done();
});
it('should return an api error to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.list')
.reply(200, { ok: false, error: 'channel_not_found' });
im.getList(function (err, result) {
expect(err).to.be.an('error');
expect(err.message).to.equal('channel_not_found');
done();
});
});
});
// function get(name, callback)
describe('#getHistory', function () {
before(function () {
var cache = Cache;
cache.data = {};
cache.data.hostname = 'slack.com';
});
it('should throw and error without a valid callback', function (done) {
expect(function () {
im.getHistory(null);
}).to.throw('callback must be a function');
done();
});
it('should return an error to callback if missing required string argument', function (done) {
im.getHistory(null, function (err, result) {
expect(err).to.not.equal(null);
expect(err.message).to.equal('must supply valid argument(s)');
});
done();
});
it('should return an api response to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.history')
.reply(200, { ok: true });
im.getHistory('channelid', function (err, result) {
expect(result).to.be.an('object');
expect(result.ok).to.equal(true);
});
done();
});
it('should return an api error to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.history')
.reply(200, { ok: false, error: 'channel_not_found' });
im.getHistory('channelid', function (err, result) {
expect(err).to.be.an('error');
expect(err.message).to.equal('channel_not_found');
done();
});
});
});
// function get(name, callback)
describe('#mark', function () {
before(function () {
var cache = Cache;
cache.data = {};
cache.data.hostname = 'slack.com';
});
it('should return an error to callback if missing required string argument', function (done) {
im.mark(null, function (err, result) {
expect(err).to.not.equal(null);
expect(err.message).to.equal('must supply valid argument(s)');
});
done();
});
it('should return an api response to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.mark')
.reply(200, { ok: true });
im.mark('channel', function (err, result) {
expect(result).to.be.an('object');
expect(result.ok).to.equal(true);
});
done();
});
it('should return an api error to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.mark')
.reply(200, { ok: false, error: 'channel_not_found' });
im.mark('channelid', function (err, result) {
expect(err).to.be.an('error');
expect(err.message).to.equal('channel_not_found');
done();
});
});
});
// function get(name, callback)
describe('#open', function () {
before(function () {
var cache = Cache;
cache.data = {};
cache.data.hostname = 'slack.com';
});
it('exists as method on im', function (done) {
expect(typeof im.open).to.equal('function');
done();
});
it('should throw and error without a valid callback', function (done) {
expect(function () {
im.open(null, null);
}).to.throw('callback must be a function');
done();
});
it('should return an error to callback if missing required string argument', function (done) {
im.open(null, function (err, result) {
expect(err).to.not.equal(null);
expect(err.message).to.equal('must supply valid argument(s)');
});
done();
});
it('should return an api response to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.open')
.reply(200, { ok: true });
im.open('user', function (err, result) {
expect(result).to.be.an('object');
expect(result.ok).to.equal(true);
});
done();
});
it('should return an api error to caller', function (done) {
var scope = nock('https://slack.com')
.post('/api/im.open')
.reply(200, { ok: false, error: 'user_not_found' });
im.open('channelid', function (err, result) {
expect(err).to.be.an('error');
expect(err.message).to.equal('user_not_found');
done();
});
});
});
});