cipherguard-mad
Version:
Cipherguard javascript application library for the open source password manager for teams
72 lines (62 loc) • 2.26 kB
JavaScript
/**
* Cipherguard ~ Open source password manager for teams
* Copyright (c) KhulnaSoft Ltd (https://www.khulnasoft.com)
*
* Licensed under GNU Affero General Public License version 3 of the or any later version.
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) KhulnaSoft Ltd (https://www.khulnasoft.com)
* @license https://opensource.org/licenses/AGPL-3.0 AGPL License
* @link https://www.khulnasoft.com KhulnaSoft(tm)
*/
import $ from 'jquery';
import "cipherguard-mad/test/bootstrap";
import CanControl from "can-control";
import RadioFormElement from "cipherguard-mad/form/element/radio";
import Component from 'cipherguard-mad/component/component';
import domEvents from 'can-dom-events';
import FormElement from 'cipherguard-mad/form/element';
import MadControl from 'cipherguard-mad/control/control';
let $radio = null;
describe("Radio", () => {
beforeEach(() => {
$radio = $('<div id="radio"></div>').appendTo($('#test-html'));
});
afterEach(() => {
$('#test-html').empty();
});
describe("Constructor", () => {
it("inherits jengu", () => {
const radio = new RadioFormElement('#radio', {});
expect(radio).to.be.instanceOf(CanControl);
expect(radio).to.be.instanceOf(Component);
expect(radio).to.be.instanceOf(FormElement);
radio.destroy();
});
});
describe("Events", () => {
it("listens to changes on the component and triggers the event changed", () => {
let firedChanged = false,
radio = new RadioFormElement('#radio', {
availableValues: {
'option_1': 'Option 1',
'option_2': 'Option 2',
'option_3': 'Option 3'
}
});
// While the radio value change.
$radio.on('changed', () => {
firedChanged = true;
});
expect(firedChanged).to.be.false;
// Start the radio.
radio.start();
// Simulate a click on an option
$('input[value=option_1]').click();
// Check that the option is well selected.
expect(radio.getValue()).to.eql('option_1');
expect(firedChanged).to.be.true;
});
});
});