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