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