2019-06-14 20:54:20 +08:00
|
|
|
import { acceptance, updateCurrentUser } from "helpers/qunit-helpers";
|
2018-04-06 11:36:57 +08:00
|
|
|
|
|
|
|
acceptance("Managing Group Interaction Settings", {
|
|
|
|
loggedIn: true,
|
|
|
|
settings: {
|
|
|
|
email_in: true
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
QUnit.test("As an admin", async assert => {
|
2019-02-21 13:44:25 +08:00
|
|
|
await visit("/g/discourse/manage/interaction");
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-visibility-level").length,
|
|
|
|
1,
|
|
|
|
"it should display visibility level selector"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-mentionable-level").length,
|
|
|
|
1,
|
|
|
|
"it should display mentionable level selector"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-messageable-level").length,
|
|
|
|
1,
|
|
|
|
"it should display messageable level selector"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-incoming-email").length,
|
|
|
|
1,
|
|
|
|
"it should display incoming email input"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-default-notification-level").length,
|
|
|
|
1,
|
|
|
|
"it should display default notification level input"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
});
|
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
QUnit.test("As a group owner", async assert => {
|
2019-07-25 04:01:08 +08:00
|
|
|
updateCurrentUser({ moderator: false, admin: false });
|
2019-02-21 13:44:25 +08:00
|
|
|
await visit("/g/discourse/manage/interaction");
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-visibility-level").length,
|
|
|
|
0,
|
|
|
|
"it should display visibility level selector"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-mentionable-level").length,
|
|
|
|
1,
|
|
|
|
"it should display mentionable level selector"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-messageable-level").length,
|
|
|
|
1,
|
|
|
|
"it should display messageable level selector"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-incoming-email").length,
|
|
|
|
0,
|
|
|
|
"it should not display incoming email input"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
|
2018-07-19 18:11:18 +08:00
|
|
|
assert.equal(
|
|
|
|
find(".groups-form-default-notification-level").length,
|
|
|
|
1,
|
|
|
|
"it should display default notification level input"
|
|
|
|
);
|
2018-04-06 11:36:57 +08:00
|
|
|
});
|