2016-11-25 15:26:49 +08:00
|
|
|
import { acceptance, logIn } from "helpers/qunit-helpers";
|
|
|
|
|
2015-04-07 02:14:00 +08:00
|
|
|
acceptance("Groups");
|
2015-01-24 00:13:27 +08:00
|
|
|
|
2015-03-19 19:22:56 +08:00
|
|
|
test("Browsing Groups", () => {
|
2016-12-14 17:26:16 +08:00
|
|
|
visit("/groups");
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
equal(count('.groups-table-row'), 18, 'it displays visible groups');
|
|
|
|
});
|
|
|
|
|
|
|
|
click("a[href='/groups/discourse/members']");
|
|
|
|
|
|
|
|
andThen(() => {
|
2016-12-15 13:02:50 +08:00
|
|
|
equal(find('.group-info-name').text().trim(), 'Awesome Team', "it displays the group page");
|
2016-12-14 17:26:16 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test("Viewing Group", () => {
|
2015-01-24 00:13:27 +08:00
|
|
|
visit("/groups/discourse");
|
2016-11-29 13:42:47 +08:00
|
|
|
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2016-11-29 13:42:47 +08:00
|
|
|
ok(count('.avatar-flair .fa-adjust') === 1, "it displays the group's avatar flair");
|
2016-06-02 21:21:43 +08:00
|
|
|
ok(count('.group-members tr') > 0, "it lists group members");
|
2015-01-24 00:13:27 +08:00
|
|
|
});
|
2015-03-19 19:22:56 +08:00
|
|
|
|
2016-06-02 21:21:43 +08:00
|
|
|
visit("/groups/discourse/posts");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2016-06-02 21:21:43 +08:00
|
|
|
ok(count('.user-stream .item') > 0, "it lists stream items");
|
2015-01-24 00:13:27 +08:00
|
|
|
});
|
2016-04-12 01:16:37 +08:00
|
|
|
|
|
|
|
visit("/groups/discourse/topics");
|
|
|
|
andThen(() => {
|
|
|
|
ok(count('.user-stream .item') > 0, "it lists stream items");
|
|
|
|
});
|
|
|
|
|
|
|
|
visit("/groups/discourse/mentions");
|
|
|
|
andThen(() => {
|
|
|
|
ok(count('.user-stream .item') > 0, "it lists stream items");
|
|
|
|
});
|
|
|
|
|
|
|
|
visit("/groups/discourse/messages");
|
|
|
|
andThen(() => {
|
2016-12-13 15:15:20 +08:00
|
|
|
ok(find(".nav-stacked li a[title='Messages']").length === 0, 'it should not show messages tab if user is not admin');
|
|
|
|
ok(find(".nav-stacked li a[title='Edit Group']").length === 0, 'it should not show messages tab if user is not admin');
|
|
|
|
ok(find(".nav-stacked li a[title='Logs']").length === 0, 'it should not show Logs tab if user is not admin');
|
2016-04-12 01:16:37 +08:00
|
|
|
ok(count('.user-stream .item') > 0, "it lists stream items");
|
|
|
|
});
|
2015-01-24 00:13:27 +08:00
|
|
|
});
|
2016-11-25 15:26:49 +08:00
|
|
|
|
2016-12-14 17:26:16 +08:00
|
|
|
test("Admin Viewing Group", () => {
|
2016-11-25 15:26:49 +08:00
|
|
|
logIn();
|
|
|
|
Discourse.reset();
|
|
|
|
|
|
|
|
visit("/groups/discourse");
|
|
|
|
|
|
|
|
andThen(() => {
|
2016-12-11 23:36:15 +08:00
|
|
|
ok(find(".nav-stacked li a[title='Messages']").length === 1, 'it should show messages tab if user is admin');
|
2016-12-13 15:15:20 +08:00
|
|
|
ok(find(".nav-stacked li a[title='Edit Group']").length === 1, 'it should show edit group tab if user is admin');
|
2016-12-11 23:36:15 +08:00
|
|
|
ok(find(".nav-stacked li a[title='Logs']").length === 1, 'it should show Logs tab if user is admin');
|
2016-12-15 13:02:50 +08:00
|
|
|
|
|
|
|
equal(find('.group-info-name').text(), 'Awesome Team', 'it should display the group name');
|
2016-11-25 15:26:49 +08:00
|
|
|
});
|
|
|
|
});
|