Ghost/ghost/admin/tests/integration/components/gh-image-uploader-with-preview-test.js

39 lines
1.4 KiB
JavaScript
Raw Normal View History

import hbs from 'htmlbars-inline-precompile';
import sinon from 'sinon';
import {click, find, findAll, render} from '@ember/test-helpers';
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupRenderingTest} from 'ember-mocha';
describe('Integration: Component: gh-image-uploader-with-preview', function () {
setupRenderingTest();
it('renders image if provided', async function () {
let remove = sinon.spy();
this.set('remove', remove);
2016-11-24 01:50:57 +03:00
this.set('image', 'http://example.com/test.png');
await render(hbs`<GhImageUploaderWithPreview @image={{this.image}} @remove={{this.remove}} />`);
expect(findAll('.gh-image-uploader.-with-image').length).to.equal(1);
expect(find('img').getAttribute('src')).to.equal('http://example.com/test.png');
2016-11-24 01:50:57 +03:00
});
it('renders upload form when no image provided', async function () {
await render(hbs`<GhImageUploaderWithPreview @image={{this.image}} />`);
expect(findAll('input[type="file"]').length).to.equal(1);
2016-11-24 01:50:57 +03:00
});
it('triggers remove action when delete icon is clicked', async function () {
2016-11-24 01:50:57 +03:00
let remove = sinon.spy();
this.set('remove', remove);
this.set('image', 'http://example.com/test.png');
await render(hbs`<GhImageUploaderWithPreview @image={{this.image}} @remove={{this.remove}} />`);
await click('.image-delete');
2016-11-24 01:50:57 +03:00
expect(remove.calledOnce).to.be.true;
});
});