2015-08-11 05:11:27 +08:00
|
|
|
import DiscourseURL from 'discourse/lib/url';
|
2015-05-15 23:03:27 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
|
|
|
|
acceptance("Category Edit", { loggedIn: true });
|
|
|
|
|
2015-08-25 16:42:19 +08:00
|
|
|
test("Can open the category modal", assert => {
|
2015-05-15 23:03:27 +08:00
|
|
|
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');
|
|
|
|
});
|
|
|
|
});
|
2015-07-03 00:06:24 +08:00
|
|
|
|
2015-08-25 16:42:19 +08:00
|
|
|
test("Change the category color", assert => {
|
2015-07-03 00:06:24 +08:00
|
|
|
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-11 05:11:27 +08:00
|
|
|
assert.equal(DiscourseURL.redirectedTo, '/c/bug', 'it does one of the rare full page redirects');
|
2015-07-03 00:06:24 +08:00
|
|
|
});
|
|
|
|
});
|
2015-07-03 04:18:59 +08:00
|
|
|
|
2015-08-25 16:42:19 +08:00
|
|
|
test("Change the topic template", assert => {
|
2015-07-03 04:18:59 +08:00
|
|
|
visit("/c/bug");
|
|
|
|
|
|
|
|
click('.edit-category');
|
|
|
|
click('.edit-category-topic-template');
|
2015-07-14 04:36:38 +08:00
|
|
|
fillIn('.wmd-input', 'this is the new topic template');
|
2015-07-03 04:18:59 +08:00
|
|
|
click('#save-category');
|
|
|
|
andThen(() => {
|
|
|
|
assert.ok(!visible('#discourse-modal'), 'it closes the modal');
|
2015-08-11 05:11:27 +08:00
|
|
|
assert.equal(DiscourseURL.redirectedTo, '/c/bug', 'it does one of the rare full page redirects');
|
2015-07-03 04:18:59 +08:00
|
|
|
});
|
|
|
|
});
|