getRecentPosterUids test

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

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

Loading…
Cancel
Save