open-nomad/ui/tests/integration/components/gauge-chart-test.js
Jai Bhagat 3350f3fb11 ui: apply new qunit linting rules to tests
Async tests should use  in integrations tests.
Acceptance tests are using Mirage and can't use
since we can't know the number of assertions.
2022-01-20 10:01:35 -05:00

59 lines
1.6 KiB
JavaScript

import { find, render } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
import { componentA11yAudit } from 'nomad-ui/tests/helpers/a11y-audit';
import { create } from 'ember-cli-page-object';
import gaugeChart from 'nomad-ui/tests/pages/components/gauge-chart';
const GaugeChart = create(gaugeChart());
module('Integration | Component | gauge chart', function (hooks) {
setupRenderingTest(hooks);
const commonProperties = () => ({
value: 5,
total: 10,
label: 'Gauge',
});
test('presents as an svg, a formatted percentage, and a label', async function (assert) {
assert.expect(4);
const props = commonProperties();
this.setProperties(props);
await render(hbs`
<GaugeChart
@value={{value}}
@total={{total}}
@label={{label}} />
`);
assert.equal(GaugeChart.label, props.label);
assert.equal(GaugeChart.percentage, '50%');
assert.ok(GaugeChart.svgIsPresent);
await componentA11yAudit(this.element, assert);
});
test('the width of the chart is determined based on the container and the height is a function of the width', async function (assert) {
const props = commonProperties();
this.setProperties(props);
await render(hbs`
<div style="width:100px">
<GaugeChart
@value={{value}}
@total={{total}}
@label={{label}} />
</div>
`);
const svg = find('[data-test-gauge-svg]');
assert.equal(window.getComputedStyle(svg).width, '100px');
assert.equal(svg.getAttribute('height'), 50);
});
});