discourse/test/javascripts/widgets/post-stream-test.js.es6

145 lines
3.5 KiB
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import { moduleForWidget, widgetTest } from "helpers/widget-test";
import Topic from "discourse/models/topic";
import Post from "discourse/models/post";
2018-06-15 11:03:24 -04:00
moduleForWidget("post-stream");
function postStreamTest(name, attrs) {
widgetTest(name, {
2016-11-25 15:38:45 -05:00
template: `{{mount-widget widget="post-stream" args=(hash posts=posts)}}`,
2017-06-14 13:57:58 -04:00
beforeEach() {
2018-06-15 11:03:24 -04:00
const site = this.container.lookup("site:main");
let posts = attrs.posts.call(this);
2018-06-15 11:03:24 -04:00
posts.forEach(p => p.set("site", site));
this.set("posts", posts);
},
test: attrs.test
});
}
2018-06-15 11:03:24 -04:00
postStreamTest("basics", {
posts() {
2018-06-15 11:03:24 -04:00
const site = this.container.lookup("site:main");
const topic = Topic.create({ details: { created_by: { id: 123 } } });
return [
2018-06-15 11:03:24 -04:00
Post.create({
topic,
id: 1,
post_number: 1,
user_id: 123,
primary_group_name: "trout",
avatar_template: "/images/avatar.png"
}),
Post.create({
topic,
id: 2,
post_number: 2,
post_type: site.get("post_types.moderator_action")
}),
Post.create({ topic, id: 3, post_number: 3, hidden: true }),
2018-06-15 11:03:24 -04:00
Post.create({
topic,
id: 4,
post_number: 4,
post_type: site.get("post_types.whisper")
}),
Post.create({
topic,
id: 5,
post_number: 5,
wiki: true,
via_email: true
}),
Post.create({
topic,
id: 6,
post_number: 6,
via_email: true,
is_auto_generated: true
})
];
},
test(assert) {
assert.equal(find(".post-stream").length, 1);
assert.equal(find(".topic-post").length, 6, "renders all posts");
// look for special class bindings
2018-06-15 11:03:24 -04:00
assert.equal(
find(".topic-post:eq(0).topic-owner").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the topic owner class"
);
assert.equal(
find(".topic-post:eq(0).group-trout").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the primary group class"
);
assert.equal(
find(".topic-post:eq(0).regular").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the regular class"
);
assert.equal(
find(".topic-post:eq(1).moderator").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the moderator class"
);
assert.equal(
find(".topic-post:eq(2).post-hidden").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the hidden class"
);
assert.equal(
find(".topic-post:eq(3).whisper").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the whisper class"
);
assert.equal(
find(".topic-post:eq(4).wiki").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the wiki class"
);
// it renders an article for the body with appropriate attributes
assert.equal(find("article#post_2").length, 1);
assert.equal(find("article[data-user-id=123]").length, 1);
assert.equal(find("article[data-post-id=3]").length, 1);
assert.equal(find("article#post_5.via-email").length, 1);
assert.equal(find("article#post_6.is-auto-generated").length, 1);
2018-06-15 11:03:24 -04:00
assert.equal(
find("article:eq(0) .main-avatar").length,
2018-06-15 11:03:24 -04:00
1,
"renders the main avatar"
);
}
});
2018-06-15 11:03:24 -04:00
postStreamTest("deleted posts", {
posts() {
const topic = Topic.create({ details: { created_by: { id: 123 } } });
return [
2018-06-15 11:03:24 -04:00
Post.create({
topic,
id: 1,
post_number: 1,
deleted_at: new Date().toString()
})
];
},
test(assert) {
2018-06-15 11:03:24 -04:00
assert.equal(
find(".topic-post.deleted").length,
2018-06-15 11:03:24 -04:00
1,
"it applies the deleted class"
);
assert.equal(
find(".deleted-user-avatar").length,
2018-06-15 11:03:24 -04:00
1,
"it has the trash avatar"
);
}
});