2015-01-03 20:07:09 -05:00
|
|
|
'use strict';
|
|
|
|
|
/*global require, process, after*/
|
2014-01-24 00:42:34 -05:00
|
|
|
|
2013-10-30 01:03:45 +02:00
|
|
|
var winston = require('winston');
|
2013-10-13 15:10:19 -04:00
|
|
|
|
|
|
|
|
process.on('uncaughtException', function (err) {
|
2013-10-16 14:08:31 -04:00
|
|
|
winston.error('Encountered error while running test suite: ' + err.message);
|
2013-10-13 15:10:19 -04:00
|
|
|
});
|
|
|
|
|
|
2013-10-12 11:06:43 -04:00
|
|
|
var assert = require('assert'),
|
2014-09-24 13:52:49 -04:00
|
|
|
db = require('./mocks/databasemock');
|
2013-10-16 14:08:31 -04:00
|
|
|
|
|
|
|
|
var Categories = require('../src/categories');
|
2013-10-12 11:06:43 -04:00
|
|
|
|
|
|
|
|
describe('Categories', function() {
|
|
|
|
|
var categoryObj;
|
|
|
|
|
|
|
|
|
|
describe('.create', function() {
|
|
|
|
|
it('should create a new category', function(done) {
|
2013-12-06 13:21:21 -05:00
|
|
|
|
2013-10-12 11:06:43 -04:00
|
|
|
Categories.create({
|
|
|
|
|
name: 'Test Category',
|
|
|
|
|
description: 'Test category created by testing script',
|
2013-11-26 14:25:46 -05:00
|
|
|
icon: 'fa-check',
|
2013-10-12 11:06:43 -04:00
|
|
|
blockclass: 'category-blue',
|
|
|
|
|
order: '5'
|
|
|
|
|
}, function(err, category) {
|
2016-08-16 19:46:59 +02:00
|
|
|
assert.equal(err, null);
|
|
|
|
|
|
2013-10-12 11:06:43 -04:00
|
|
|
categoryObj = category;
|
2013-10-12 13:50:08 -04:00
|
|
|
done.apply(this, arguments);
|
2013-10-12 11:06:43 -04:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('.getCategoryById', function() {
|
|
|
|
|
it('should retrieve a newly created category by its ID', function(done) {
|
2014-11-06 18:14:07 -05:00
|
|
|
Categories.getCategoryById({
|
|
|
|
|
cid: categoryObj.cid,
|
2015-01-08 13:47:15 -05:00
|
|
|
set: 'cid:' + categoryObj.cid + ':tids',
|
|
|
|
|
reverse: true,
|
2014-11-06 18:14:07 -05:00
|
|
|
start: 0,
|
2016-08-14 19:12:33 +03:00
|
|
|
stop: -1,
|
2014-11-06 18:14:07 -05:00
|
|
|
uid: 0
|
|
|
|
|
}, function(err, categoryData) {
|
2016-08-16 19:46:59 +02:00
|
|
|
assert.equal(err, null);
|
|
|
|
|
|
2013-10-12 11:06:43 -04:00
|
|
|
assert(categoryData);
|
2014-02-26 16:43:21 -05:00
|
|
|
assert.equal(categoryObj.name, categoryData.name);
|
|
|
|
|
assert.equal(categoryObj.description, categoryData.description);
|
2013-10-12 11:06:43 -04:00
|
|
|
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2016-08-26 19:33:16 +03:00
|
|
|
describe('Categories.getRecentTopicReplies', function() {
|
|
|
|
|
it('should not throw', function(done) {
|
|
|
|
|
Categories.getCategoryById({
|
|
|
|
|
cid: categoryObj.cid,
|
|
|
|
|
set: 'cid:' + categoryObj.cid + ':tids',
|
|
|
|
|
reverse: true,
|
|
|
|
|
start: 0,
|
|
|
|
|
stop: -1,
|
|
|
|
|
uid: 0
|
|
|
|
|
}, function(err, categoryData) {
|
|
|
|
|
assert.ifError(err);
|
|
|
|
|
Categories.getRecentTopicReplies(categoryData, 0, function(err) {
|
|
|
|
|
assert.ifError(err);
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2013-10-12 11:06:43 -04:00
|
|
|
describe('.getCategoryTopics', function() {
|
|
|
|
|
it('should return a list of topics', function(done) {
|
2014-11-06 18:14:07 -05:00
|
|
|
Categories.getCategoryTopics({
|
|
|
|
|
cid: categoryObj.cid,
|
2015-01-08 13:47:15 -05:00
|
|
|
set: 'cid:' + categoryObj.cid + ':tids',
|
|
|
|
|
reverse: true,
|
2014-11-06 18:14:07 -05:00
|
|
|
start: 0,
|
|
|
|
|
stop: 10,
|
|
|
|
|
uid: 0
|
|
|
|
|
}, function(err, result) {
|
2016-08-16 19:46:59 +02:00
|
|
|
assert.equal(err, null);
|
|
|
|
|
|
2014-01-26 17:17:34 -05:00
|
|
|
assert(Array.isArray(result.topics));
|
|
|
|
|
assert(result.topics.every(function(topic) {
|
2013-10-12 11:06:43 -04:00
|
|
|
return topic instanceof Object;
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
});
|
2014-11-06 18:14:07 -05:00
|
|
|
|
|
|
|
|
it('should return a list of topics by a specific user', function(done) {
|
|
|
|
|
Categories.getCategoryTopics({
|
|
|
|
|
cid: categoryObj.cid,
|
2015-01-08 13:47:15 -05:00
|
|
|
set: 'cid:' + categoryObj.cid + ':uid:' + 1 + ':tids',
|
|
|
|
|
reverse: true,
|
2014-11-06 18:14:07 -05:00
|
|
|
start: 0,
|
|
|
|
|
stop: 10,
|
|
|
|
|
uid: 0,
|
|
|
|
|
targetUid: 1
|
|
|
|
|
}, function(err, result) {
|
2016-08-16 19:46:59 +02:00
|
|
|
assert.equal(err, null);
|
2014-11-06 18:14:07 -05:00
|
|
|
assert(Array.isArray(result.topics));
|
|
|
|
|
assert(result.topics.every(function(topic) {
|
|
|
|
|
return topic instanceof Object && topic.uid === '1';
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
});
|
2013-10-12 11:06:43 -04:00
|
|
|
});
|
|
|
|
|
|
2016-08-12 13:49:41 +03:00
|
|
|
after(function(done) {
|
|
|
|
|
db.flushdb(done);
|
2013-10-12 11:06:43 -04:00
|
|
|
});
|
2014-01-24 00:42:34 -05:00
|
|
|
});
|