PHP Classes

File: public/js/tinymce/src/ui/src/test/js/browser/ColorButtonTest.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/ui/src/test/js/browser/ColorButtonTest.js   Download  
File: public/js/tinymce/src/ui/src/test/js/browser/ColorButtonTest.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 4,736 bytes
 

Contents

Class file image Download
asynctest( 'browser.tinymce.ui.ColorButtonTest', [ 'ephox.agar.api.Pipeline', 'ephox.mcagar.api.LegacyUnit', 'tinymce.core.dom.DOMUtils', 'tinymce.core.dom.EventUtils', 'tinymce.ui.test.UiUtils', 'tinymce.ui.test.ViewBlock', 'tinymce.ui.Api', 'tinymce.core.ui.Factory', 'tinymce.core.util.Tools' ], function (Pipeline, LegacyUnit, DOMUtils, EventUtils, UiUtils, ViewBlock, Api, Factory, Tools) { var success = arguments[arguments.length - 2]; var failure = arguments[arguments.length - 1]; var suite = LegacyUnit.createSuite(); var viewBlock = new ViewBlock(); // Registers ui widgets to factory Api.registerToFactory(); var createColorButton = function (settings) { EventUtils.Event.clean(viewBlock.get()); viewBlock.update(''); return Factory.create(Tools.extend({ type: 'colorbutton' }, settings)).renderTo(viewBlock.get()); }; suite.test("colorbutton text, size default", function () { var colorButton = createColorButton({ text: 'X' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 42, 30], 4); }); suite.test("colorbutton text, size large", function () { var colorButton = createColorButton({ text: 'X', size: 'large' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 57, 39], 4); }); suite.test("colorbutton text, size small", function () { var colorButton = createColorButton({ text: 'X', size: 'small' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 39, 23], 4); }); suite.test("colorbutton text, width 100, height 100", function () { var colorButton = createColorButton({ text: 'X', width: 100, height: 100 }); LegacyUnit.equal(UiUtils.rect(viewBlock, colorButton), [0, 0, 100, 100]); LegacyUnit.equal(UiUtils.rect(viewBlock, colorButton.getEl().firstChild), [1, 1, 98, 98]); }); suite.test("colorbutton icon, size default", function () { var colorButton = createColorButton({ icon: 'test' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 49, 30], 4); }); suite.test("colorbutton icon, size small", function () { var colorButton = createColorButton({ icon: 'test', size: 'small' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 43, 24], 4); }); suite.test("colorbutton icon, size large", function () { var colorButton = createColorButton({ icon: 'test', size: 'large' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 63, 40], 4); }); suite.test("colorbutton icon, width 100, height 100", function () { var colorButton = createColorButton({ icon: 'test', width: 100, height: 100 }); LegacyUnit.equal(UiUtils.rect(viewBlock, colorButton), [0, 0, 100, 100]); LegacyUnit.equal(UiUtils.rect(viewBlock, colorButton.getEl().firstChild), [1, 1, 98, 98]); }); suite.test("colorbutton text & icon, size default", function () { var colorButton = createColorButton({ text: 'X', icon: 'test' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 62, 30], 4); }); suite.test("colorbutton text & icon, size large", function () { var colorButton = createColorButton({ text: 'X', icon: 'test', size: 'large' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 78, 40], 4); }); suite.test("colorbutton text & icon, size small", function () { var colorButton = createColorButton({ text: 'X', icon: 'test', size: 'small' }); UiUtils.nearlyEqualRects(UiUtils.rect(viewBlock, colorButton), [0, 0, 58, 24], 4); }); suite.test("colorbutton text & icon, width 100, height 100", function () { var colorButton = createColorButton({ text: 'X', icon: 'test', width: 100, height: 100 }); LegacyUnit.equal(UiUtils.rect(viewBlock, colorButton), [0, 0, 100, 100]); LegacyUnit.equal(UiUtils.rect(viewBlock, colorButton.getEl().firstChild), [1, 1, 98, 98]); }); suite.test("colorbutton click event", function () { var colorButton, clicks = {}; colorButton = createColorButton({ text: 'X', onclick: function () { clicks.a = 'a'; } }); colorButton.renderTo(viewBlock.get()); colorButton.fire('click', { target: colorButton.getEl() }); LegacyUnit.equal(clicks, { a: 'a' }); }); UiUtils.loadSkinAndOverride(viewBlock, function () { Pipeline.async({}, suite.toSteps({}), function () { EventUtils.Event.clean(viewBlock.get()); viewBlock.detach(); success(); }, failure); }); } );