Ghost/ghost/admin/tests/integration/components/gh-trim-focus-input-test.js

76 lines
2.7 KiB
JavaScript
Raw Normal View History

import hbs from 'htmlbars-inline-precompile';
import {blur, find, render} from '@ember/test-helpers';
2016-11-24 01:50:57 +03:00
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupRenderingTest} from 'ember-mocha';
2016-11-24 01:50:57 +03:00
describe('Integration: Component: gh-trim-focus-input', function () {
setupRenderingTest();
it('trims value on focusOut', async function () {
2016-11-24 01:50:57 +03:00
this.set('text', 'some random stuff ');
this.set('onInput', (event) => {
this.set('text', event.target.value);
});
await render(hbs`
{{!-- template-lint-disable no-passed-in-event-handlers --}}
<GhTrimFocusInput
@value={{readonly this.text}}
@input={{this.onInput}}
/>
`);
await blur('input');
expect(this.text).to.equal('some random stuff');
});
it('trims value on focusOut before calling custom focus-out', async function () {
this.set('text', 'some random stuff ');
this.set('onInput', (event) => {
this.set('text', event.target.value);
});
this.set('customFocusOut', function (value) {
expect(find('.gh-input').value, 'input value').to.equal('some random stuff');
expect(value, 'value').to.equal('some random stuff');
});
await render(hbs`
{{!-- template-lint-disable no-passed-in-event-handlers --}}
<GhTrimFocusInput
@value={{readonly this.text}}
@input={{this.onInput}}
@focus-out={{this.customFocusOut}}
/>
`);
await blur('input');
expect(this.text).to.equal('some random stuff');
2016-11-24 01:50:57 +03:00
});
it('does not have the autofocus attribute if not set to focus', async function () {
2016-11-24 01:50:57 +03:00
this.set('text', 'some text');
await render(hbs`<GhTrimFocusInput @value={{readonly this.text}} @shouldFocus={{false}} />`);
expect(find('input').autofocus).to.not.be.ok;
2016-11-24 01:50:57 +03:00
});
it('has the autofocus attribute if set to focus', async function () {
2016-11-24 01:50:57 +03:00
this.set('text', 'some text');
await render(hbs`<GhTrimFocusInput @value={{readonly this.text}} @shouldFocus={{true}} />`);
expect(find('input').autofocus).to.be.ok;
2016-11-24 01:50:57 +03:00
});
it('handles undefined values', async function () {
2016-11-24 01:50:57 +03:00
this.set('text', undefined);
await render(hbs`<GhTrimFocusInput @value={{readonly this.text}} @shouldFocus={{true}} />`);
expect(find('input').autofocus).to.be.ok;
2016-11-24 01:50:57 +03:00
});
it('handles non-string values', async function () {
2016-11-24 01:50:57 +03:00
this.set('text', 10);
await render(hbs`<GhTrimFocusInput @value={{readonly this.text}} @shouldFocus={{true}} />`);
expect(find('input').value).to.equal('10');
2016-11-24 01:50:57 +03:00
});
});