mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
import DiscourseURL from 'discourse/lib/url';
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Category Edit", {
|
|
loggedIn: true,
|
|
settings: { email_in: true }
|
|
});
|
|
|
|
test("Can open the category modal", assert => {
|
|
visit("/c/bug");
|
|
|
|
click('.edit-category');
|
|
andThen(() => {
|
|
assert.ok(visible('#discourse-modal'), 'it pops up a modal');
|
|
});
|
|
|
|
click('a.close');
|
|
andThen(() => {
|
|
assert.ok(!visible('#discourse-modal'), 'it closes the modal');
|
|
});
|
|
});
|
|
|
|
test("Change the category color", assert => {
|
|
visit("/c/bug");
|
|
|
|
click('.edit-category');
|
|
fillIn('#edit-text-color', '#ff0000');
|
|
click('#save-category');
|
|
andThen(() => {
|
|
assert.ok(!visible('#discourse-modal'), 'it closes the modal');
|
|
assert.equal(DiscourseURL.redirectedTo, '/c/bug', 'it does one of the rare full page redirects');
|
|
});
|
|
});
|
|
|
|
test("Change the topic template", assert => {
|
|
visit("/c/bug");
|
|
|
|
click('.edit-category');
|
|
click('.edit-category-topic-template');
|
|
fillIn('.d-editor-input', 'this is the new topic template');
|
|
click('#save-category');
|
|
andThen(() => {
|
|
assert.ok(!visible('#discourse-modal'), 'it closes the modal');
|
|
assert.equal(DiscourseURL.redirectedTo, '/c/bug', 'it does one of the rare full page redirects');
|
|
});
|
|
});
|
|
|
|
test("Error Saving", assert => {
|
|
visit("/c/bug");
|
|
|
|
click('.edit-category');
|
|
click('.edit-category-settings');
|
|
fillIn('.email-in', 'duplicate@example.com');
|
|
click('#save-category');
|
|
andThen(() => {
|
|
assert.ok(visible('#modal-alert'));
|
|
assert.equal(find('#modal-alert').html(), "duplicate email");
|
|
});
|
|
});
|