Wordpress/tests/qunit/editor/tinymce/ui/MenuButton.js
Andrew Ozz 0898014ebd Update the TinyMCE tests.
In 4.0.20 all tests were reworked. The 'testrunner' was removed and the PhantomJS Runner QUnit plugin was added making it possible to run the tests from cli. However it is still necessary to run the tests in all supported browsers to test the fixes for all browser quirks and normalization. Also all tests are loaded in one html file.

See #27014

git-svn-id: https://develop.svn.wordpress.org/trunk@27679 602fd350-edb4-49c9-b593-d223f7449a82
2014-03-24 05:59:45 +00:00

109 lines
3.3 KiB
JavaScript

(function() {
module("tinymce.ui.MenuButton", {
setup: function() {
document.getElementById('view').innerHTML = '';
},
teardown: function() {
tinymce.dom.Event.clean(document.getElementById('view'));
}
});
function createMenuButton(settings) {
return tinymce.ui.Factory.create(tinymce.extend({
type: 'menubutton',
menu: [
{text: '1'},
{text: '2'},
{text: '3'}
]
}, settings)).renderTo(document.getElementById('view'));
}
test("menubutton text, size default", function() {
var menuButton = createMenuButton({text: 'X'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 46, 30], 4);
});
test("menubutton text, size large", function() {
var menuButton = createMenuButton({text: 'X', size: 'large'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 53, 39], 4);
});
test("menubutton text, size small", function() {
var menuButton = createMenuButton({text: 'X', size: 'small'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 30, 23], 4);
});
test("menubutton text, width 100, height 100", function() {
var menuButton = createMenuButton({text: 'X', width: 100, height: 100});
deepEqual(Utils.rect(menuButton), [0, 0, 100, 100]);
deepEqual(Utils.rect(menuButton.getEl().firstChild), [1, 1, 98, 98]);
});
test("menubutton icon, size default", function() {
var menuButton = createMenuButton({icon: 'test'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 52, 30], 4);
});
test("menubutton icon, size small", function() {
var menuButton = createMenuButton({icon: 'test', size: 'small'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 39, 24], 4);
});
test("menubutton icon, size large", function() {
var menuButton = createMenuButton({icon: 'test', size: 'large'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 56, 40], 6);
});
test("menubutton icon, width 100, height 100", function() {
var menuButton = createMenuButton({icon: 'test', width: 100, height: 100});
deepEqual(Utils.rect(menuButton), [0, 0, 100, 100]);
deepEqual(Utils.rect(menuButton.getEl().firstChild), [1, 1, 98, 98]);
});
test("menubutton text & icon, size default", function() {
var menuButton = createMenuButton({text: 'X', icon: 'test'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 64, 30], 4);
});
test("menubutton text & icon, size large", function() {
var menuButton = createMenuButton({text: 'X', icon: 'test', size: 'large'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 71, 40], 4);
});
test("menubutton text & icon, size small", function() {
var menuButton = createMenuButton({text: 'X', icon: 'test', size: 'small'});
Utils.nearlyEqualRects(Utils.rect(menuButton), [0, 0, 49, 24], 4);
});
test("menubutton text & icon, width 100, height 100", function() {
var menuButton = createMenuButton({text: 'X', icon: 'test', width: 100, height: 100});
deepEqual(Utils.rect(menuButton), [0, 0, 100, 100]);
deepEqual(Utils.rect(menuButton.getEl().firstChild), [1, 1, 98, 98]);
});
test("menubutton click event", function() {
var menuButton, clicks = {};
menuButton = createMenuButton({text: 'X', onclick: function() {clicks.a = 'a';}});
menuButton.on('click', function() {clicks.b = 'b';});
menuButton.on('click', function() {clicks.c = 'c';});
menuButton.fire('click');
deepEqual(clicks, {a: 'a', b: 'b', c: 'c'});
});
})();