2021-02-01 20:23:14 +00:00
|
|
|
'use strict';
|
|
|
|
|
2020-11-23 13:21:51 -05:00
|
|
|
describe('undo button then redo button', function () {
|
2021-03-31 21:14:02 -04:00
|
|
|
beforeEach(async function () {
|
|
|
|
await helper.aNewPad();
|
2012-10-09 01:30:46 +01:00
|
|
|
});
|
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
it('redo some typing with button', async function () {
|
2020-11-23 13:21:51 -05:00
|
|
|
const inner$ = helper.padInner$;
|
|
|
|
const chrome$ = helper.padChrome$;
|
2020-03-24 01:04:24 +01:00
|
|
|
|
2012-10-09 01:30:46 +01:00
|
|
|
// get the first text element inside the editable space
|
2020-11-23 13:21:51 -05:00
|
|
|
const $firstTextElement = inner$('div span').first();
|
|
|
|
const originalValue = $firstTextElement.text(); // get the original value
|
|
|
|
const newString = 'Foo';
|
2012-10-09 01:30:46 +01:00
|
|
|
|
2012-10-28 18:19:16 +00:00
|
|
|
$firstTextElement.sendkeys(newString); // send line 1 to the pad
|
2020-11-23 13:21:51 -05:00
|
|
|
const modifiedValue = $firstTextElement.text(); // get the modified value
|
2012-10-09 01:30:46 +01:00
|
|
|
expect(modifiedValue).not.to.be(originalValue); // expect the value to change
|
|
|
|
|
2012-10-28 18:19:16 +00:00
|
|
|
// get undo and redo buttons
|
2020-11-23 13:21:51 -05:00
|
|
|
const $undoButton = chrome$('.buttonicon-undo');
|
|
|
|
const $redoButton = chrome$('.buttonicon-redo');
|
2012-10-09 01:30:46 +01:00
|
|
|
// click the buttons
|
2023-08-08 18:26:25 +02:00
|
|
|
$undoButton.trigger('click'); // removes foo
|
|
|
|
$redoButton.trigger('click'); // resends foo
|
2012-10-09 01:30:46 +01:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
await helper.waitForPromise(() => inner$('div span').first().text() === newString);
|
|
|
|
const finalValue = inner$('div').first().text();
|
|
|
|
expect(finalValue).to.be(modifiedValue); // expect the value to change
|
2012-10-09 01:30:46 +01:00
|
|
|
});
|
2013-03-13 15:00:04 -03:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
it('redo some typing with keypress', async function () {
|
2020-11-23 13:21:51 -05:00
|
|
|
const inner$ = helper.padInner$;
|
2013-03-13 15:00:04 -03:00
|
|
|
|
|
|
|
// get the first text element inside the editable space
|
2020-11-23 13:21:51 -05:00
|
|
|
const $firstTextElement = inner$('div span').first();
|
|
|
|
const originalValue = $firstTextElement.text(); // get the original value
|
|
|
|
const newString = 'Foo';
|
2013-03-13 15:00:04 -03:00
|
|
|
|
|
|
|
$firstTextElement.sendkeys(newString); // send line 1 to the pad
|
2020-11-23 13:21:51 -05:00
|
|
|
const modifiedValue = $firstTextElement.text(); // get the modified value
|
2013-03-13 15:00:04 -03:00
|
|
|
expect(modifiedValue).not.to.be(originalValue); // expect the value to change
|
|
|
|
|
2021-02-07 06:39:03 +00:00
|
|
|
let e = new inner$.Event(helper.evtType);
|
2013-03-13 15:00:04 -03:00
|
|
|
e.ctrlKey = true; // Control key
|
|
|
|
e.which = 90; // z
|
2020-11-23 13:21:51 -05:00
|
|
|
inner$('#innerdocbody').trigger(e);
|
2013-03-13 15:00:04 -03:00
|
|
|
|
2021-02-07 06:39:03 +00:00
|
|
|
e = new inner$.Event(helper.evtType);
|
2013-03-13 15:00:04 -03:00
|
|
|
e.ctrlKey = true; // Control key
|
|
|
|
e.which = 121; // y
|
2020-11-23 13:21:51 -05:00
|
|
|
inner$('#innerdocbody').trigger(e);
|
2013-03-13 15:00:04 -03:00
|
|
|
|
2021-03-31 21:14:02 -04:00
|
|
|
await helper.waitForPromise(() => inner$('div span').first().text() === newString);
|
|
|
|
const finalValue = inner$('div').first().text();
|
|
|
|
expect(finalValue).to.be(modifiedValue); // expect the value to change
|
2013-03-13 15:00:04 -03:00
|
|
|
});
|
2012-10-09 01:30:46 +01:00
|
|
|
});
|