Ghost/ghost/admin/tests/integration/components/gh-validation-status-container-test.js

72 lines
2.6 KiB
JavaScript
Raw Normal View History

import DS from 'ember-data';
import EmberObject from '@ember/object';
import hbs from 'htmlbars-inline-precompile';
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {find, render} from '@ember/test-helpers';
import {setupRenderingTest} from 'ember-mocha';
const {Errors} = DS;
2016-11-24 01:50:57 +03:00
describe('Integration: Component: gh-validation-status-container', function () {
setupRenderingTest();
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());
2016-11-24 01:50:57 +03:00
this.set('testObject', testObject);
});
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}}
`);
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
});
it('has success class when valid', async function () {
2016-11-24 01:50:57 +03:00
this.get('testObject.hasValidated').push('name');
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}}
`);
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
});
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');
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}}
`);
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
});
it('still renders if hasValidated is undefined', async function () {
2016-11-24 01:50:57 +03:00
this.set('testObject.hasValidated', undefined);
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}}
`);
expect(find('.gh-test')).to.exist;
2016-11-24 01:50:57 +03:00
});
});