2015-10-14 14:34:32 +03:00
|
|
|
import DS from 'ember-data';
|
2017-08-22 10:53:26 +03:00
|
|
|
import EmberObject from '@ember/object';
|
2017-05-29 21:50:03 +03:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import {describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
2019-01-02 12:58:55 +03:00
|
|
|
import {find, render} from '@ember/test-helpers';
|
|
|
|
import {setupRenderingTest} from 'ember-mocha';
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2016-06-11 19:52:36 +03:00
|
|
|
const {Errors} = DS;
|
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
describe('Integration: Component: gh-validation-status-container', function () {
|
2019-01-02 12:58:55 +03:00
|
|
|
setupRenderingTest();
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
let testObject = EmberObject.create();
|
|
|
|
testObject.set('name', 'Test');
|
|
|
|
testObject.set('hasValidated', []);
|
|
|
|
testObject.set('errors', Errors.create());
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
this.set('testObject', testObject);
|
|
|
|
});
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('has no success/error class by default', async function () {
|
|
|
|
await render(hbs`
|
2016-11-24 01:50:57 +03:00
|
|
|
{{#gh-validation-status-container class="gh-test" property="name" errors=testObject.errors hasValidated=testObject.hasValidated}}
|
|
|
|
{{/gh-validation-status-container}}
|
|
|
|
`);
|
2017-01-31 22:27:11 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
expect(find('.gh-test')).to.exist;
|
|
|
|
expect(find('.gh-test')).to.not.have.class('success');
|
|
|
|
expect(find('.gh-test')).to.not.have.class('error');
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('has success class when valid', async function () {
|
2016-11-24 01:50:57 +03:00
|
|
|
this.get('testObject.hasValidated').push('name');
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
await render(hbs`
|
2016-11-24 01:50:57 +03:00
|
|
|
{{#gh-validation-status-container class="gh-test" property="name" errors=testObject.errors hasValidated=testObject.hasValidated}}
|
|
|
|
{{/gh-validation-status-container}}
|
|
|
|
`);
|
2017-01-31 22:27:11 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
expect(find('.gh-test')).to.exist;
|
|
|
|
expect(find('.gh-test')).to.have.class('success');
|
|
|
|
expect(find('.gh-test')).to.not.have.class('error');
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('has error class when invalid', async function () {
|
2016-11-24 01:50:57 +03:00
|
|
|
this.get('testObject.hasValidated').push('name');
|
|
|
|
this.get('testObject.errors').add('name', 'has error');
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
await render(hbs`
|
2016-11-24 01:50:57 +03:00
|
|
|
{{#gh-validation-status-container class="gh-test" property="name" errors=testObject.errors hasValidated=testObject.hasValidated}}
|
|
|
|
{{/gh-validation-status-container}}
|
|
|
|
`);
|
2017-01-31 22:27:11 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
expect(find('.gh-test')).to.exist;
|
|
|
|
expect(find('.gh-test')).to.not.have.class('success');
|
|
|
|
expect(find('.gh-test')).to.have.class('error');
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2015-10-14 14:34:32 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('still renders if hasValidated is undefined', async function () {
|
2016-11-24 01:50:57 +03:00
|
|
|
this.set('testObject.hasValidated', undefined);
|
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
await render(hbs`
|
2016-11-24 01:50:57 +03:00
|
|
|
{{#gh-validation-status-container class="gh-test" property="name" errors=testObject.errors hasValidated=testObject.hasValidated}}
|
|
|
|
{{/gh-validation-status-container}}
|
|
|
|
`);
|
2017-01-31 22:27:11 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
expect(find('.gh-test')).to.exist;
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
|
|
|
});
|