mirror of
https://github.com/discourse/discourse.git
synced 2025-02-16 18:02:45 +08:00
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
import {
|
|
acceptance,
|
|
count,
|
|
exists,
|
|
updateCurrentUser,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
import { test } from "qunit";
|
|
import { visit } from "@ember/test-helpers";
|
|
|
|
acceptance("Managing Group Profile", function () {
|
|
test("As an anonymous user", async function (assert) {
|
|
await visit("/g/discourse/manage/profile");
|
|
|
|
assert.ok(
|
|
exists(".group-members .group-member"),
|
|
"it should redirect to members page for an anonymous user"
|
|
);
|
|
});
|
|
});
|
|
|
|
acceptance("Managing Group Profile", function (needs) {
|
|
needs.user();
|
|
|
|
test("As an admin", async function (assert) {
|
|
await visit("/g/discourse/manage/profile");
|
|
|
|
assert.strictEqual(
|
|
count(".group-form-bio"),
|
|
1,
|
|
"it should display group bio input"
|
|
);
|
|
assert.strictEqual(
|
|
count(".group-form-name"),
|
|
1,
|
|
"it should display group name input"
|
|
);
|
|
assert.strictEqual(
|
|
count(".group-form-full-name"),
|
|
1,
|
|
"it should display group full name input"
|
|
);
|
|
});
|
|
|
|
test("As a group owner", async function (assert) {
|
|
updateCurrentUser({
|
|
moderator: false,
|
|
admin: false,
|
|
can_create_group: false,
|
|
});
|
|
|
|
await visit("/g/discourse/manage/profile");
|
|
|
|
assert.ok(
|
|
!exists(".group-form-name"),
|
|
"it should not display group name input"
|
|
);
|
|
});
|
|
});
|