open-nomad/ui/tests/integration/list-table-test.js

97 lines
2.7 KiB
JavaScript
Raw Normal View History

import { findAll, find } from 'ember-native-dom-helpers';
2017-09-19 14:47:10 +00:00
import { test, skip, moduleForComponent } from 'ember-qunit';
import { faker } from 'ember-cli-mirage';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('list-table', 'Integration | Component | list table', {
integration: true,
});
const commonTable = Array(10)
.fill(null)
.map(() => ({
firstName: faker.name.firstName(),
lastName: faker.name.lastName(),
age: faker.random.number({ min: 18, max: 60 }),
}));
2017-09-19 14:47:10 +00:00
// thead
test('component exposes a thead contextual component', function(assert) {
this.set('source', commonTable);
this.render(hbs`
{{#list-table source=source sortProperty=sortProperty sortDescending=sortDescending as |t|}}
{{#t.head class="head"}}
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
{{/t.head}}
{{/list-table}}
`);
assert.ok(findAll('.head').length, 'Table head is rendered');
assert.equal(find('.head').tagName.toLowerCase(), 'thead', 'Table head is a thead element');
2017-09-19 14:47:10 +00:00
});
// tbody
test('component exposes a tbody contextual component', function(assert) {
this.setProperties({
source: commonTable,
sortProperty: 'firstName',
sortDescending: false,
});
this.render(hbs`
{{#list-table source=source sortProperty=sortProperty sortDescending=sortDescending as |t|}}
{{#t.body class="body" as |row|}}
<tr class="item">
<td>{{row.model.firstName}}</td>
<td>{{row.model.lastName}}</td>
<td>{{row.model.age}}</td>
</tr>
{{/t.body}}
{{/list-table}}
`);
assert.ok(findAll('.body').length, 'Table body is rendered');
assert.equal(find('.body').tagName.toLowerCase(), 'tbody', 'Table body is a tbody element');
2017-09-19 14:47:10 +00:00
assert.equal(findAll('.item').length, this.get('source.length'), 'Each item gets its own row');
2017-09-19 14:47:10 +00:00
// list-table is not responsible for sorting, only dispatching sort events. The table is still
// rendered in index-order.
this.get('source').forEach((item, index) => {
const $item = this.$(`.item:eq(${index})`);
assert.equal(
$item
.find('td:eq(0)')
.text()
.trim(),
item.firstName,
'First name'
);
assert.equal(
$item
.find('td:eq(1)')
.text()
.trim(),
item.lastName,
'Last name'
);
assert.equal(
$item
.find('td:eq(2)')
.text()
.trim(),
item.age,
'Age'
);
2017-09-19 14:47:10 +00:00
});
});
// Ember doesn't support query params (or controllers or routes) in integration tests,
// so sorting links can only be tested in acceptance tests.
// Leaving this test here for posterity.
skip(
'sort-by creates links using the appropriate links given sort property and sort descending',
function() {}
);