Files
svgedit/test/contextmenu_test.js
Brett Zamir 9f65b1adb9 - Breaking change: Extension now formatted as export (and this is set to editor, including for callback)
- Breaking change: Locale now formatted as export
- Breaking change: Moved out remaining modular i18n (imagelib) to own folder
- Breaking change: Drop `executeAfterLoads` (and getJSPDF/getCanvg)
- Breaking change: `RGBColor` must accept `new`
- Breaking change: canvg - `stackBlurCanvasRGBA` must be set now by function (`setStackBlurCanvasRGBA`) rather than global; `canvg` now a named export
- Breaking change: Avoid passing `canvg`/`buildCanvgCallback` to extensions (have them import)
- Fix: i18nize imaglib more deeply
- Fix: Positioning of Document Properties dialog (Fixes #246)
- Fix (regression): PDF Export (Fixes #249)
- Fix (regression): Add polyfill for `ChildNode`/`ParentNode` (and use further)
- Fix (regression): Apply Babel universally to dependencies
- Fix (regression): Ordering of `uaPrefix` function in `svgEditor.js`
- Fix (regression): Embedded API
- Fix (embedded editor): Fix backspace key in Firefox so it doesn't navigate out of frame
- Fix: Alert if no exportWindow for PDF (e.g., if blocked)
- Refactoring( RGBColor) `RGBColor` as class, without rebuilding constants, optimize string replacement, move methods to prototype, use templates and object literals, use `Object.keys`
- Refactoring (canvg) Use classes more internally, use shorthand objects; array extras, return to lazy-loading
- Refactoring: Use Promises in place of `$.getScript`; always return Promises in case deciding to await resolving
- Refactoring: Avoid importing `RGBColor` into `svgutils.js` (jsPDF imports it itself)
- Refactoring: Arrow functions, destructuring, shorter property references
- Refactoring: Fix `lang` and `dir` for locales (though not in use currently anyways)
- Refactoring: Provide path config for canvg, jspdf
2018-06-12 06:50:28 +08:00

61 lines
2.2 KiB
JavaScript

/* eslint-env qunit */
import * as contextmenu from '../editor/contextmenu.js';
// log function
QUnit.log((details) => {
if (window.console && window.console.log) {
window.console.log(details.result + ' :: ' + details.message);
}
});
function tearDown () {
contextmenu.resetCustomMenus();
}
QUnit.module('svgedit.contextmenu');
QUnit.test('Test svgedit.contextmenu package', function (assert) {
assert.expect(4);
assert.ok(contextmenu, 'contextmenu registered correctly');
assert.ok(contextmenu.add, 'add registered correctly');
assert.ok(contextmenu.hasCustomHandler, 'contextmenu hasCustomHandler registered correctly');
assert.ok(contextmenu.getCustomHandler, 'contextmenu getCustomHandler registered correctly');
});
QUnit.test('Test svgedit.contextmenu does not add invalid menu item', function (assert) {
assert.expect(3);
contextmenu.add({id: 'justanid'});
assert.ok(!contextmenu.hasCustomHandler('justanid'), 'menu item with just an id is invalid');
contextmenu.add({id: 'idandlabel', label: 'anicelabel'});
assert.ok(!contextmenu.hasCustomHandler('idandlabel'), 'menu item with just an id and label is invalid');
contextmenu.add({id: 'idandlabel', label: 'anicelabel', action: 'notafunction'});
assert.ok(!contextmenu.hasCustomHandler('idandlabel'), 'menu item with action that is not a function is invalid');
});
QUnit.test('Test svgedit.contextmenu adds valid menu item', function (assert) {
assert.expect(2);
const validItem = {id: 'valid', label: 'anicelabel', action () { alert('testing'); }};
contextmenu.add(validItem);
assert.ok(contextmenu.hasCustomHandler('valid'), 'Valid menu item is added.');
assert.equal(contextmenu.getCustomHandler('valid'), validItem.action, 'Valid menu action is added.');
tearDown();
});
QUnit.test('Test svgedit.contextmenu rejects valid duplicate menu item id', function (assert) {
assert.expect(1);
const validItem1 = {id: 'valid', label: 'anicelabel', action () { alert('testing'); }};
const validItem2 = {id: 'valid', label: 'anicelabel', action () { alert('testingtwice'); }};
contextmenu.add(validItem1);
contextmenu.add(validItem2);
assert.equal(contextmenu.getCustomHandler('valid'), validItem1.action, 'duplicate menu item is rejected.');
tearDown();
});