getRecentPosterUids test

v1.18.x
barisusakli 8 years ago
parent 503378e259
commit f4a6527ce6

@ -1,8 +1,8 @@
'use strict';
var async = require('async'),
db = require('../database'),
privileges = require('../privileges');
var async = require('async');
var db = require('../database');
var privileges = require('../privileges');
module.exports = function (Posts) {
@ -42,12 +42,12 @@ module.exports = function (Posts) {
Posts.getPostsFields(pids, ['uid'], next);
},
function (postData, next) {
postData = postData.map(function (post) {
var uids = postData.map(function (post) {
return post && post.uid;
}).filter(function (value, index, array) {
return value && array.indexOf(value) === index;
}).filter(function (uid, index, array) {
return uid && array.indexOf(uid) === index;
});
next(null, postData);
next(null, uids);
}
], callback);
};

@ -737,6 +737,24 @@ describe('Post\'s', function () {
});
});
it('should get recent poster uids', function (done) {
topics.reply({
uid: voterUid,
tid: topicData.tid,
timestamp: Date.now(),
content: 'some content'
}, function (err) {
assert.ifError(err);
posts.getRecentPosterUids(0, 1, function (err, uids) {
assert.ifError(err);
assert(Array.isArray(uids));
assert.equal(uids.length, 2);
assert.equal(uids[0], voterUid);
done();
});
});
});
after(function (done) {
db.emptydb(done);
});

Loading…
Cancel
Save