discourse/test/javascripts/acceptance/category-edit-test.js.es6

84 lines
2.5 KiB
Plaintext
Raw Normal View History

2015-08-10 17:11:27 -04:00
import DiscourseURL from 'discourse/lib/url';
import { acceptance } from "helpers/qunit-helpers";
acceptance("Category Edit", {
loggedIn: true,
settings: { email_in: true }
});
2017-06-14 13:57:58 -04:00
QUnit.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');
});
});
2017-06-14 13:57:58 -04:00
QUnit.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');
2015-08-10 17:11:27 -04:00
assert.equal(DiscourseURL.redirectedTo, '/c/bug', 'it does one of the rare full page redirects');
});
});
2017-06-14 13:57:58 -04:00
QUnit.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');
2015-08-10 17:11:27 -04:00
assert.equal(DiscourseURL.redirectedTo, '/c/bug', 'it does one of the rare full page redirects');
});
});
2017-06-14 13:57:58 -04:00
QUnit.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");
});
});
2017-06-14 13:57:58 -04:00
QUnit.test("Subcategory list settings", assert => {
visit("/c/bug");
click('.edit-category');
click('.edit-category-settings');
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(!visible(".subcategory-list-style-field"), "subcategory list style isn't visible by default");
});
click(".show-subcategory-list-field input[type=checkbox]");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(visible(".subcategory-list-style-field"), "subcategory list style is shown if show subcategory list is checked");
});
click('.edit-category-general');
selectDropdown('.edit-category-tab-general .category-combobox', 2);
click('.edit-category-settings');
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.ok(!visible(".show-subcategory-list-field"), "show subcategory list isn't visible for child categories");
assert.ok(!visible(".subcategory-list-style-field"), "subcategory list style isn't visible for child categories");
});
2017-06-14 13:57:58 -04:00
});