mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-28 04:46:57 -04:00
236 lines
6.9 KiB
JavaScript
236 lines
6.9 KiB
JavaScript
'use strict';
|
|
|
|
var assert = require('chai').assert;
|
|
var sinon = require('sinon');
|
|
var fixture = require('../../fixture');
|
|
|
|
describe('manipulators', function() {
|
|
|
|
/**
|
|
* @param {string|Object} itemType
|
|
* @param {*} value
|
|
* @param {*} [expected]
|
|
* @return {void}
|
|
*/
|
|
function testSetGet(itemType, value, expected) {
|
|
expected = typeof expected === 'undefined' ? value : expected;
|
|
|
|
describe('.set() and .get()', function() {
|
|
it('sets: "' + value + '" and gets: "' + expected + '" then triggers "change"',
|
|
function() {
|
|
var handlerSpy = sinon.spy();
|
|
var clayItem = fixture.clayConfig([itemType]).getAllItems()[0];
|
|
clayItem.on('change', handlerSpy);
|
|
|
|
clayItem.set(value);
|
|
clayItem.set(value);
|
|
assert.deepEqual(clayItem.get(), expected);
|
|
assert.strictEqual(handlerSpy.callCount, 1, 'handler not called once');
|
|
assert(handlerSpy.calledOn(clayItem), 'handler not called on clayItem');
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param {string|Object} itemType
|
|
* @return {void}
|
|
*/
|
|
function testDisable(itemType) {
|
|
describe('.disable()', function() {
|
|
it('disables the field then triggers a "disabled" event', function() {
|
|
var handlerSpy = sinon.spy();
|
|
var clayItem = fixture.clayItem(itemType);
|
|
clayItem.on('disabled', handlerSpy);
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('disabled'),
|
|
false
|
|
);
|
|
clayItem.disable();
|
|
clayItem.disable();
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('disabled'),
|
|
true
|
|
);
|
|
assert.strictEqual(clayItem.$manipulatorTarget.get('disabled'), true);
|
|
assert.strictEqual(handlerSpy.callCount, 1, 'handler not called once');
|
|
assert(handlerSpy.calledOn(clayItem), 'handler not called on clayItem');
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param {string|Object} itemType
|
|
* @return {void}
|
|
*/
|
|
function testEnable(itemType) {
|
|
describe('.enable()', function() {
|
|
it('enables the field then triggers an "enabled" event', function() {
|
|
var handlerSpy = sinon.spy();
|
|
var clayItem = fixture.clayItem(itemType);
|
|
clayItem.on('enabled', handlerSpy);
|
|
|
|
clayItem.disable();
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('disabled'),
|
|
true
|
|
);
|
|
clayItem.enable();
|
|
clayItem.enable();
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('disabled'),
|
|
false
|
|
);
|
|
assert.strictEqual(clayItem.$manipulatorTarget.get('disabled'), false);
|
|
assert.strictEqual(handlerSpy.callCount, 1, 'handler not called once');
|
|
assert(handlerSpy.calledOn(clayItem), 'handler not called on clayItem');
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param {string|Object} itemType
|
|
* @return {void}
|
|
*/
|
|
function testHide(itemType) {
|
|
describe('.hide()', function() {
|
|
it('hides the field then triggers a "hide" event', function() {
|
|
var handlerSpy = sinon.spy();
|
|
var clayItem = fixture.clayItem(itemType);
|
|
clayItem.on('hide', handlerSpy);
|
|
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('hide'),
|
|
false
|
|
);
|
|
clayItem.hide();
|
|
clayItem.hide();
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('hide'),
|
|
true
|
|
);
|
|
assert.strictEqual(handlerSpy.callCount, 1, 'handler not called once');
|
|
assert(handlerSpy.calledOn(clayItem), 'handler not called on clayItem');
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param {string|Object} itemType
|
|
* @return {void}
|
|
*/
|
|
function testShow(itemType) {
|
|
describe('.show()', function() {
|
|
it('shows the field then triggers a "show" event', function() {
|
|
var handlerSpy = sinon.spy();
|
|
var clayItem = fixture.clayItem(itemType);
|
|
clayItem.on('show', handlerSpy);
|
|
|
|
clayItem.hide();
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('hide'),
|
|
true
|
|
);
|
|
clayItem.show();
|
|
clayItem.show();
|
|
assert.strictEqual(
|
|
clayItem.$element[0].classList.contains('hide'),
|
|
false
|
|
);
|
|
assert.strictEqual(handlerSpy.callCount, 1, 'handler not called once');
|
|
assert(handlerSpy.calledOn(clayItem), 'handler not called on clayItem');
|
|
});
|
|
});
|
|
}
|
|
|
|
describe('html', function() {
|
|
testSetGet('text', 'test123');
|
|
testSetGet('button', '<span>some HTML</span>');
|
|
testShow('text');
|
|
testHide('text');
|
|
});
|
|
|
|
describe('button', function() {
|
|
testSetGet('button', 'test123');
|
|
testSetGet('button', '<span>some HTML</span>');
|
|
testDisable('button');
|
|
testEnable('button');
|
|
testShow('button');
|
|
testHide('button');
|
|
});
|
|
|
|
describe('val', function() {
|
|
testSetGet('input', 'test321');
|
|
testSetGet('input', 1234, '1234');
|
|
testDisable('input');
|
|
testEnable('input');
|
|
testShow('text');
|
|
testHide('text');
|
|
});
|
|
|
|
describe('checked', function() {
|
|
testSetGet({type: 'toggle', defaultValue: false}, 1, true);
|
|
testSetGet({type: 'toggle', defaultValue: false}, true);
|
|
testSetGet({type: 'toggle', defaultValue: true}, 0, false);
|
|
testSetGet({type: 'toggle', defaultValue: true}, false);
|
|
testDisable('toggle');
|
|
testEnable('toggle');
|
|
testShow('toggle');
|
|
testHide('toggle');
|
|
});
|
|
|
|
describe('radiogroup', function() {
|
|
var item = {
|
|
type: 'radiogroup',
|
|
clayId: 1,
|
|
options: [
|
|
{ label: '1', value: 'one' },
|
|
{ label: '2', value: 'two' },
|
|
{ label: '3', value: 'three "quote' }
|
|
]
|
|
};
|
|
testSetGet(item, 'one');
|
|
testSetGet(item, 'two');
|
|
testSetGet(item, 'three "quote');
|
|
testDisable(item);
|
|
testEnable(item);
|
|
testShow(item);
|
|
testHide(item);
|
|
});
|
|
|
|
describe('checkboxgroup', function() {
|
|
var item = {
|
|
type: 'checkboxgroup',
|
|
clayId: 1,
|
|
defaultValue: ['two'],
|
|
options: [
|
|
{ label: '1', value: 'one' },
|
|
{ label: '2', value: 'two' },
|
|
{ label: '3', value: 'three "quote' }
|
|
]
|
|
};
|
|
testSetGet(item, ['one', 'two']);
|
|
testSetGet(item, ['three "quote']);
|
|
testSetGet(item, []);
|
|
testSetGet(item, false, []);
|
|
testDisable(item);
|
|
testEnable(item);
|
|
testShow(item);
|
|
testHide(item);
|
|
});
|
|
|
|
describe('color', function() {
|
|
testSetGet('color', 'FF0000', 0xff0000);
|
|
testSetGet('color', '#FF0000', 0xff0000);
|
|
testSetGet('color', '0xFF0000', 0xff0000);
|
|
testSetGet('color', '#ff0000', 0xff0000);
|
|
testSetGet('color', 0xff0000, 0xff0000);
|
|
testSetGet({type: 'color', defaultValue: 0x00ff00}, '', 0x000000);
|
|
testSetGet({type: 'color', defaultValue: 0x00ff00}, false, 0x000000);
|
|
testSetGet({type: 'color', defaultValue: 0x00ff00}, undefined, 0x000000);
|
|
testDisable('color');
|
|
testEnable('color');
|
|
testShow('color');
|
|
testHide('color');
|
|
});
|
|
});
|