-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3475ad
commit 0a258b1
Showing
4 changed files
with
92 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { find, render } from '@ember/test-helpers'; | ||
import { module, test } from 'qunit'; | ||
import { setupRenderingTest } from 'ember-qunit'; | ||
import hbs from 'htmlbars-inline-precompile'; | ||
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) { | ||
const props = commonProperties(); | ||
this.setProperties(props); | ||
|
||
await render(hbs` | ||
{{gauge-chart | ||
value=value | ||
total=total | ||
label=label}} | ||
`); | ||
|
||
assert.equal(GaugeChart.label, props.label); | ||
assert.equal(GaugeChart.percentage, '50%'); | ||
assert.ok(GaugeChart.svgIsPresent); | ||
}); | ||
|
||
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"> | ||
{{gauge-chart | ||
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); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { isPresent, text } from 'ember-cli-page-object'; | ||
|
||
export default scope => ({ | ||
scope, | ||
|
||
svgIsPresent: isPresent('[data-test-gauge-svg]'), | ||
label: text('[data-test-label]'), | ||
percentage: text('[data-test-percentage]'), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { module, test } from 'qunit'; | ||
import { setupTest } from 'ember-qunit'; | ||
|
||
module('Unit | Component | gauge-chart', function(hooks) { | ||
setupTest(hooks); | ||
|
||
hooks.beforeEach(function() { | ||
this.subject = this.owner.factoryFor('component:gauge-chart'); | ||
}); | ||
|
||
test('percent is a function of value and total OR complement', function(assert) { | ||
const chart = this.subject.create(); | ||
chart.setProperties({ | ||
value: 5, | ||
total: 10, | ||
}); | ||
|
||
assert.equal(chart.percent, 0.5); | ||
|
||
chart.setProperties({ | ||
total: null, | ||
complement: 15, | ||
}); | ||
|
||
assert.equal(chart.percent, 0.25); | ||
}); | ||
}); |