open-vault/ui/tests/integration/components/hover-copy-button-test.js

36 lines
1.3 KiB
JavaScript
Raw Normal View History

import { module, test, skip } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
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);
module('Integration | Component | hover copy button', function(hooks) {
setupRenderingTest(hooks);
// 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>`
);
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');
});
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'));
});
});