2019-08-31 20:51:14 -07:00

98 lines
3.9 KiB
TypeScript

import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, find, findAll, click, fillIn } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
const findInput = (selector: string): HTMLInputElement => {
const input: HTMLInputElement = find(selector) as HTMLInputElement;
if (!input) {
throw new Error(`${selector} element not found`);
}
return input;
};
module('Integration | Component | dataset deprecation', function(hooks): void {
setupRenderingTest(hooks);
test('it renders', async function(assert): Promise<void> {
assert.expect(4);
await render(hbs`{{dataset-deprecation}}`);
assert.ok(
document.querySelector('.dataset-deprecation-toggle__toggle-header__label'),
'it shows the dataset is deprecation label element'
);
assert.equal(findAll('#dataset-is-deprecated').length, 1, 'has one input checkbox with known selector');
assert.equal(
findInput('#dataset-is-deprecated').getAttribute('type'),
'checkbox',
'has an input checkbox to toggle deprecation'
);
assert.equal(findAll('.dataset-deprecation-toggle__actions').length, 1, 'has an actions container');
});
test('setting the deprecated property should toggle the checkbox', async function(assert): Promise<void> {
assert.expect(2);
this.set('deprecated', true);
await render(hbs`{{dataset-deprecation deprecated=deprecated}}`);
assert.ok(findInput('#dataset-is-deprecated').checked, 'checkbox is checked when property is set true');
this.set('deprecated', false);
assert.notOk(findInput('#dataset-is-deprecated').checked, 'checkbox is unchecked when property is set false');
});
test('decommissionTime', async function(assert): Promise<void> {
let isDisabled;
assert.expect(3);
this.set('decommissionTime', void 0);
this.set('deprecated', true);
await render(hbs`{{dataset-deprecation deprecated=deprecated decommissionTime=decommissionTime}}`);
isDisabled = findInput('.dataset-deprecation-toggle__actions [type=submit]').disabled;
assert.ok(isDisabled, 'submit button is disabled');
this.setProperties({ decommissionTime: new Date(), isDirty: true });
await render(hbs`{{dataset-deprecation deprecated=deprecated decommissionTime=decommissionTime}}`);
await fillIn('.comment-new__content .medium-editor-element', 'text');
isDisabled = findInput('.dataset-deprecation-toggle__actions [type=submit]').disabled;
assert.ok(isDisabled, 'submit button is disabled if we only fill in decomissionTime');
await click('#acknowledge-deprecation');
isDisabled = findInput('.dataset-deprecation-toggle__actions [type=submit]').disabled;
assert.notOk(isDisabled, 'submit button is disabled if we only fill in decomissionTime');
});
test('triggers the onUpdateDeprecation action when submitted', async function(assert): Promise<void> {
let submitActionCallCount = 0;
this.set('submit', function(deprecated: boolean, note: string): void {
submitActionCallCount++;
assert.equal(deprecated, true, 'action is called with deprecation value of true');
assert.equal(note, '', 'action is called with an empty deprecation note');
});
this.set('decommissionTime', new Date());
await render(hbs`{{dataset-deprecation onUpdateDeprecation=(action submit) decommissionTime=decommissionTime}}`);
assert.equal(submitActionCallCount, 0, 'action is not called on render');
assert.equal(findInput('#dataset-is-deprecated').checked, false, 'deprecation checkbox is unchecked');
await click('#dataset-is-deprecated');
assert.equal(findInput('#dataset-is-deprecated').checked, true, 'deprecation checkbox is checked');
await click('#acknowledge-deprecation');
await click('.dataset-deprecation-toggle__actions [type=submit]');
assert.equal(submitActionCallCount, 1, 'action is called once');
});
});