2016-02-26 16:25:47 +03:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import sinon from 'sinon';
|
2019-01-02 12:58:55 +03:00
|
|
|
import {click, find, findAll, render} from '@ember/test-helpers';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
2019-01-02 12:58:55 +03:00
|
|
|
import {setupRenderingTest} from 'ember-mocha';
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2018-01-05 18:38:23 +03:00
|
|
|
describe('Integration: Component: gh-image-uploader-with-preview', function () {
|
2019-01-02 12:58:55 +03:00
|
|
|
setupRenderingTest();
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('renders image if provided', async function () {
|
2022-01-22 02:44:40 +03:00
|
|
|
let remove = sinon.spy();
|
|
|
|
this.set('remove', remove);
|
2016-11-24 01:50:57 +03:00
|
|
|
this.set('image', 'http://example.com/test.png');
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2023-01-04 12:39:32 +03:00
|
|
|
await render(hbs`<GhImageUploaderWithPreview @image={{this.image}} @remove={{this.remove}} />`);
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
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
|
|
|
});
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('renders upload form when no image provided', async function () {
|
2023-01-04 12:39:32 +03:00
|
|
|
await render(hbs`<GhImageUploaderWithPreview @image={{this.image}} />`);
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
expect(findAll('input[type="file"]').length).to.equal(1);
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2019-01-02 12:58:55 +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');
|
2016-02-26 16:25:47 +03:00
|
|
|
|
2023-01-04 12:39:32 +03:00
|
|
|
await render(hbs`<GhImageUploaderWithPreview @image={{this.image}} @remove={{this.remove}} />`);
|
2021-06-16 19:56:25 +03:00
|
|
|
await click('.image-delete');
|
2016-11-24 01:50:57 +03:00
|
|
|
|
|
|
|
expect(remove.calledOnce).to.be.true;
|
|
|
|
});
|
|
|
|
});
|