discourse/plugins/discourse-details/test/javascripts/acceptance/details-button-test.js.es6

93 lines
2.7 KiB
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
2016-06-17 04:30:55 -04:00
acceptance('Details Button', { loggedIn: true });
function findTextarea() {
return find(".d-editor-input")[0];
}
2017-06-14 13:57:58 -04:00
test('details button', (assert) => {
visit("/");
click('#create-topic');
click('button.options');
click('.popup-menu .d-icon-caret-right');
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.equal(
find(".d-editor-input").val(),
`\n[details=${I18n.t("composer.details_title")}]\n${I18n.t("composer.details_text")}\n[/details]\n`,
'it should contain the right output'
);
});
fillIn('.d-editor-input', "This is my title");
andThen(() => {
const textarea = findTextarea();
textarea.selectionStart = 0;
textarea.selectionEnd = textarea.value.length;
});
click('button.options');
click('.popup-menu .d-icon-caret-right');
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.equal(
find(".d-editor-input").val(),
`\n[details=${I18n.t("composer.details_title")}]\nThis is my title\n[/details]\n`,
'it should contain the right selected output'
);
const textarea = findTextarea();
assert.equal(textarea.selectionStart, 19, 'it should start highlighting at the right position');
assert.equal(textarea.selectionEnd, 35, 'it should end highlighting at the right position');
});
fillIn('.d-editor-input', "Before some text in between After");
andThen(() => {
const textarea = findTextarea();
textarea.selectionStart = 7;
textarea.selectionEnd = 28;
});
click('button.options');
click('.popup-menu .d-icon-caret-right');
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.equal(
find(".d-editor-input").val(),
`Before \n[details=${I18n.t("composer.details_title")}]\nsome text in between\n[/details]\n After`,
'it should contain the right output'
);
const textarea = findTextarea();
assert.equal(textarea.selectionStart, 26, 'it should start highlighting at the right position');
assert.equal(textarea.selectionEnd, 46, 'it should end highlighting at the right position');
});
fillIn('.d-editor-input', "Before \nsome text in between\n After");
andThen(() => {
const textarea = findTextarea();
textarea.selectionStart = 8;
textarea.selectionEnd = 29;
});
click('button.options');
click('.popup-menu .d-icon-caret-right');
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.equal(
find(".d-editor-input").val(),
`Before \n\n[details=${I18n.t("composer.details_title")}]\nsome text in between\n[/details]\n\n After`,
'it should contain the right output'
);
const textarea = findTextarea();
assert.equal(textarea.selectionStart, 27, 'it should start highlighting at the right position');
assert.equal(textarea.selectionEnd, 47, 'it should end highlighting at the right position');
});
});