2020-11-23 18:21:51 +00:00
|
|
|
describe('bold button', function () {
|
|
|
|
// create a new pad before each test run
|
|
|
|
beforeEach(function (cb) {
|
2012-10-06 19:29:37 +00:00
|
|
|
helper.newPad(cb);
|
2012-11-01 23:19:59 +00:00
|
|
|
this.timeout(60000);
|
2012-10-01 23:35:43 +00:00
|
|
|
});
|
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
it('makes text bold on click', function (done) {
|
|
|
|
const inner$ = helper.padInner$;
|
|
|
|
const chrome$ = helper.padChrome$;
|
2012-10-06 19:29:37 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// get the first text element out of the inner iframe
|
|
|
|
const $firstTextElement = inner$('div').first();
|
2020-03-24 00:04:24 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// select this text element
|
2012-10-06 19:29:37 +00:00
|
|
|
$firstTextElement.sendkeys('{selectall}');
|
2012-10-01 23:35:43 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// get the bold button and click it
|
|
|
|
const $boldButton = chrome$('.buttonicon-bold');
|
2012-10-01 23:35:43 +00:00
|
|
|
$boldButton.click();
|
2020-03-24 00:04:24 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// ace creates a new dom element when you press a button, so just get the first text element again
|
|
|
|
const $newFirstTextElement = inner$('div').first();
|
2020-03-24 00:04:24 +00:00
|
|
|
|
2012-10-01 23:35:43 +00:00
|
|
|
// is there a <b> element now?
|
2020-11-23 18:21:51 +00:00
|
|
|
const isBold = $newFirstTextElement.find('b').length === 1;
|
2012-10-01 23:35:43 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// expect it to be bold
|
2012-10-01 23:35:43 +00:00
|
|
|
expect(isBold).to.be(true);
|
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// make sure the text hasn't changed
|
2012-10-06 19:29:37 +00:00
|
|
|
expect($newFirstTextElement.text()).to.eql($firstTextElement.text());
|
2012-10-07 22:34:29 +00:00
|
|
|
|
|
|
|
done();
|
2012-10-01 23:35:43 +00:00
|
|
|
});
|
2013-03-13 18:00:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
it('makes text bold on keypress', function (done) {
|
|
|
|
const inner$ = helper.padInner$;
|
|
|
|
const chrome$ = helper.padChrome$;
|
2013-03-13 18:00:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// get the first text element out of the inner iframe
|
|
|
|
const $firstTextElement = inner$('div').first();
|
2013-03-13 18:00:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// select this text element
|
2013-03-13 18:00:04 +00:00
|
|
|
$firstTextElement.sendkeys('{selectall}');
|
2014-11-27 23:48:14 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
const e = inner$.Event(helper.evtType);
|
2013-03-13 18:00:04 +00:00
|
|
|
e.ctrlKey = true; // Control key
|
2013-03-13 18:06:08 +00:00
|
|
|
e.which = 66; // b
|
2020-11-23 18:21:51 +00:00
|
|
|
inner$('#innerdocbody').trigger(e);
|
2013-03-13 18:00:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// ace creates a new dom element when you press a button, so just get the first text element again
|
|
|
|
const $newFirstTextElement = inner$('div').first();
|
2013-03-13 18:00:04 +00:00
|
|
|
|
|
|
|
// is there a <b> element now?
|
2020-11-23 18:21:51 +00:00
|
|
|
const isBold = $newFirstTextElement.find('b').length === 1;
|
2013-03-13 18:00:04 +00:00
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// expect it to be bold
|
2013-03-13 18:00:04 +00:00
|
|
|
expect(isBold).to.be(true);
|
|
|
|
|
2020-11-23 18:21:51 +00:00
|
|
|
// make sure the text hasn't changed
|
2013-03-13 18:00:04 +00:00
|
|
|
expect($newFirstTextElement.text()).to.eql($firstTextElement.text());
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|