2018-09-25 16:28:26 +00:00
|
|
|
import { module, test, skip } from 'qunit';
|
|
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
|
|
import { render } from '@ember/test-helpers';
|
2018-06-26 21:35:47 +00:00
|
|
|
import { create } from 'ember-cli-page-object';
|
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import copyButton from 'vault/tests/pages/components/hover-copy-button';
|
|
|
|
const component = create(copyButton);
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
module('Integration | Component | hover copy button', function(hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
2018-06-26 21:35:47 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
// ember-cli-clipboard helpers don't like the new style
|
|
|
|
skip('it shows success message in tooltip', async function(assert) {
|
|
|
|
this.set('copyValue', 'foo');
|
|
|
|
await render(
|
|
|
|
hbs`<div class="has-copy-button" tabindex="-1">
|
|
|
|
<HoverCopyButton @copyValue={{copyValue}} />
|
|
|
|
</div>`
|
|
|
|
);
|
2018-06-26 21:35:47 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
await component.focusContainer();
|
|
|
|
assert.ok(component.buttonIsVisible);
|
|
|
|
await component.mouseEnter();
|
|
|
|
assert.equal(component.tooltipText, 'Copy', 'shows copy');
|
|
|
|
await component.click();
|
|
|
|
assert.equal(component.tooltipText, 'Copied!', 'shows success message');
|
|
|
|
});
|
2018-06-26 21:35:47 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
test('it has the correct class when alwaysShow is true', async function(assert) {
|
|
|
|
this.set('copyValue', 'foo');
|
|
|
|
await render(hbs`{{hover-copy-button alwaysShow=true copyValue=copyValue}}`);
|
|
|
|
assert.ok(component.buttonIsVisible);
|
|
|
|
assert.ok(component.wrapperClass.includes('hover-copy-button-static'));
|
|
|
|
});
|
2018-06-26 21:35:47 +00:00
|
|
|
});
|