Skip to content

Commit

Permalink
fix: #9383, don't show deleted topic titles in inf scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
barisusakli committed Mar 14, 2021
1 parent cc48970 commit e789fe8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/socket.io/categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ SocketCategories.loadMore = async function (socket, data) {
tag: data.query.tag,
targetUid: targetUid,
});
categories.modifyTopicsByPrivilege(data.topics, userPrivileges);
categories.modifyTopicsByPrivilege(result.topics, userPrivileges);

result.privileges = userPrivileges;
result.template = {
Expand Down
27 changes: 23 additions & 4 deletions test/categories.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,21 @@ describe('Categories', () => {
describe('socket methods', () => {
const socketCategories = require('../src/socket.io/categories');

before((done) => {
Topics.post({
before(async () => {
await Topics.post({
uid: posterUid,
cid: categoryObj.cid,
title: 'Test Topic Title',
content: 'The content of test topic',
tags: ['nodebb'],
}, done);
});
const data = await Topics.post({
uid: posterUid,
cid: categoryObj.cid,
title: 'will delete',
content: 'The content of deleted topic',
});
await Topics.delete(data.topicData.tid, adminUid);
});

it('should get recent replies in category', (done) => {
Expand Down Expand Up @@ -255,10 +262,22 @@ describe('Categories', () => {
});
});

it('should not show deleted topic titles', async () => {
const data = await socketCategories.loadMore({ uid: 0 }, {
cid: categoryObj.cid,
after: 0,
});

assert.deepStrictEqual(
data.topics.map(t => t.title),
['[[topic:topic_is_deleted]]', 'Test Topic Title', 'Test Topic Title'],
);
});

it('should load topic count', (done) => {
socketCategories.getTopicCount({ uid: posterUid }, categoryObj.cid, (err, topicCount) => {
assert.ifError(err);
assert.equal(topicCount, 2);
assert.strictEqual(topicCount, 3);
done();
});
});
Expand Down

0 comments on commit e789fe8

Please sign in to comment.