Ghost/ghost/admin/tests/integration/components/gh-task-button-test.js
Kevin Ansfield 2231dd84c2 Migrated to <AngleBracketSyntax /> (#1460)
no issue

Ember is migrating to `<AngleBracketSyntax />` for component invocation, see https://github.com/emberjs/rfcs/blob/master/text/0311-angle-bracket-invocation.md

We were in a half-way situation where some templates used angle bracket syntax in some places, this PR updates templates to use the syntax everywhere.

This simplifies the rules for what template code is referring to...

`<Component>` = a component
`{{helper}}` = a helper (or locally assigned handlebars variable)
`{{this.foo}}` = data on the template backing context (a component/controller)
`{{@foo}}` = a named argument passed into the component that the component backing class has not modified (note: this commit does not introduce any named arguments)

- ran codemod https://github.com/ember-codemods/ember-angle-brackets-codemod on the following directories:
  - `app/templates`
  - `lib/koenig-editor/addon/templates`
- removed positional params from components as angle bracket syntax does not support them
  - `gh-feature-flag`
  - `gh-tour-item`
  - `gh-cm-editor`
  - `gh-fullscreen-modal`
  - `gh-task-button`
- updates some code that was missed in 3c851293c1 to use explicit this
2020-01-16 15:14:03 +00:00

212 lines
6.8 KiB
JavaScript

import hbs from 'htmlbars-inline-precompile';
import {click, find, render, settled, waitFor} from '@ember/test-helpers';
import {defineProperty} from '@ember/object';
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {run} from '@ember/runloop';
import {setupRenderingTest} from 'ember-mocha';
import {task, timeout} from 'ember-concurrency';
describe('Integration: Component: gh-task-button', function () {
setupRenderingTest();
it('renders', async function () {
// sets button text using positional param
await render(hbs`<GhTaskButton @buttonText="Test" />`);
expect(find('button')).to.exist;
expect(find('button')).to.contain.text('Test');
expect(find('button').disabled).to.be.false;
await render(hbs`<GhTaskButton @class="testing" />`);
expect(find('button')).to.have.class('testing');
// default button text is "Save"
expect(find('button')).to.contain.text('Save');
// passes disabled attr
await render(hbs`<GhTaskButton @disabled={{true}} @buttonText="Test" />`);
expect(find('button').disabled).to.be.true;
// allows button text to be set via hash param
expect(find('button')).to.contain.text('Test');
// passes type attr
await render(hbs`<GhTaskButton @type="submit" />`);
expect(find('button')).to.have.attr('type', 'submit');
// passes tabindex attr
await render(hbs`<GhTaskButton @tabindex="-1" />`);
expect(find('button')).to.have.attr('tabindex', '-1');
});
it('shows spinner whilst running', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
}));
await render(hbs`<GhTaskButton @task={{myTask}} />`);
this.myTask.perform();
await waitFor('button svg', {timeout: 50});
await settled();
});
it('shows running text when passed whilst running', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
}));
await render(hbs`<GhTaskButton @task={{myTask}} @runningText="Running" />`);
this.myTask.perform();
await waitFor('button svg', {timeout: 50});
expect(find('button')).to.contain.text('Running');
await settled();
});
it('appears disabled whilst running', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
}));
await render(hbs`<GhTaskButton @task={{myTask}} />`);
expect(find('button'), 'initial class').to.not.have.class('appear-disabled');
this.myTask.perform();
await waitFor('button.appear-disabled', {timeout: 100});
await settled();
expect(find('button'), 'ended class').to.not.have.class('appear-disabled');
});
it('shows success on success', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
return true;
}));
await render(hbs`<GhTaskButton @task={{myTask}} />`);
await this.myTask.perform();
expect(find('button')).to.have.class('gh-btn-green');
expect(find('button')).to.contain.text('Saved');
});
it('assigns specified success class on success', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
return true;
}));
await render(hbs`<GhTaskButton @task={{myTask}} @successClass="im-a-success" />`);
await this.myTask.perform();
expect(find('button')).to.not.have.class('gh-btn-green');
expect(find('button')).to.have.class('im-a-success');
expect(find('button')).to.contain.text('Saved');
});
it('shows failure when task errors', async function () {
defineProperty(this, 'myTask', task(function* () {
try {
yield timeout(50);
throw new ReferenceError('test error');
} catch (error) {
// noop, prevent mocha triggering unhandled error assert
}
}));
await render(hbs`<GhTaskButton @task={{myTask}} @failureClass="is-failed" />`);
this.myTask.perform();
await waitFor('button.is-failed');
expect(find('button')).to.contain.text('Retry');
await settled();
});
it('shows failure on falsy response', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
return false;
}));
await render(hbs`<GhTaskButton @task={{myTask}} />`);
this.myTask.perform();
await waitFor('button.gh-btn-red', {timeout: 50});
expect(find('button')).to.contain.text('Retry');
await settled();
});
it('assigns specified failure class on failure', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
return false;
}));
await render(hbs`<GhTaskButton @task={{myTask}} @failureClass="im-a-failure" />`);
this.myTask.perform();
await waitFor('button.im-a-failure', {timeout: 50});
expect(find('button')).to.not.have.class('gh-btn-red');
expect(find('button')).to.contain.text('Retry');
await settled();
});
it('performs task on click', async function () {
let taskCount = 0;
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
taskCount = taskCount + 1;
}));
await render(hbs`<GhTaskButton @task={{myTask}} />`);
await click('button');
await settled();
expect(taskCount, 'taskCount').to.equal(1);
});
it.skip('keeps button size when showing spinner', async function () {
defineProperty(this, 'myTask', task(function* () {
yield timeout(50);
}));
await render(hbs`<GhTaskButton @task={{myTask}} />`);
let width = find('button').clientWidth;
let height = find('button').clientHeight;
expect(find('button')).to.not.have.attr('style');
this.myTask.perform();
run.later(this, function () {
// we can't test exact width/height because Chrome/Firefox use different rounding methods
// expect(find('button')).to.have.attr('style', `width: ${width}px; height: ${height}px;`);
let [widthInt] = width.toString().split('.');
let [heightInt] = height.toString().split('.');
expect(find('button')).to.have.attr('style', `width: ${widthInt}`);
expect(find('button')).to.have.attr('style', `height: ${heightInt}`);
}, 20);
run.later(this, function () {
expect(find('button').getAttribute('style')).to.be.empty;
}, 100);
await settled();
});
});