2019-11-08 12:52:39 -05:00
|
|
|
import UserAction from "discourse/models/user-action";
|
|
|
|
|
|
|
|
QUnit.module("model: user-action");
|
2013-06-19 15:06:23 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("collapsing likes", assert => {
|
2019-11-08 12:52:39 -05:00
|
|
|
var actions = UserAction.collapseStream([
|
|
|
|
UserAction.create({
|
|
|
|
action_type: UserAction.TYPES.likes_given,
|
2013-06-19 15:06:23 -04:00
|
|
|
topic_id: 1,
|
|
|
|
user_id: 1,
|
|
|
|
post_number: 1
|
|
|
|
}),
|
2019-11-08 12:52:39 -05:00
|
|
|
UserAction.create({
|
|
|
|
action_type: UserAction.TYPES.edits,
|
2013-06-19 15:06:23 -04:00
|
|
|
topic_id: 2,
|
|
|
|
user_id: 1,
|
|
|
|
post_number: 1
|
|
|
|
}),
|
2019-11-08 12:52:39 -05:00
|
|
|
UserAction.create({
|
|
|
|
action_type: UserAction.TYPES.likes_given,
|
2013-06-19 15:06:23 -04:00
|
|
|
topic_id: 1,
|
|
|
|
user_id: 2,
|
|
|
|
post_number: 1
|
|
|
|
})
|
|
|
|
]);
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(actions.length, 2);
|
|
|
|
assert.equal(actions[0].get("children.length"), 1);
|
|
|
|
assert.equal(actions[0].get("children")[0].items.length, 2);
|
|
|
|
});
|