UNPKG

@coon-js/extjs-comp-navport

Version:

NPM package providing enhanced viewport template for rapid, modular, package agnostic Sencha ExtJS application building.

74 lines (57 loc) 2.42 kB
/** * coon.js * extjs-comp-navport * Copyright (C) 2017-2021 Thorsten Suckow-Homberg https://github.com/coon-js/extjs-comp-navport * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without restriction, * including without limitation the rights to use, copy, modify, merge, * publish, distribute, sublicense, and/or sell copies of the Software, * and to permit persons to whom the Software is furnished to do so, * subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * USE OR OTHER DEALINGS IN THE SOFTWARE. */ StartTest((t) => { var page; t.afterEach(() => { if (page) { page.destroy(); page = null; } }); t.beforeEach(() => { }); // +------------------------------- // | Tests // +------------------------------- t.it("Should create and show Page", (t) => { page = Ext.create("coon.navport.view.pages.Page404"); t.expect(page instanceof coon.comp.window.LockingWindow).toBe(true); t.expect(Ext.isModern ? page.getCls() : page.cls)[Ext.isModern ? "toContain" : "toBe"]("cn_navport-pg404"); t.expect(page.alias).toContain("widget.cn_navport-pg404"); }); t.it("Should test mixin", (t) => { page = Ext.create("coon.navport.view.pages.Page404"); t.expect(page.canNavigationViewportCloseView()).toBe(true); }); t.it("Should test homeToken", (t) => { Ext.create("coon.navport.view.pages.Page404", { homeToken: "testhome" }); var pg = Ext.dom.Query.select(Ext.isModern ? "div.descr a" : "label.descr a"); t.ok(pg); t.is(pg.length, 1); t.expect(pg[0].href.split("#")[1]).toBe("testhome"); }); });