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