open-nomad/ui/tests/integration/components/primary-metric/task-test.js

73 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-03-22 06:02:39 +00:00
import { setupRenderingTest } from 'ember-qunit';
import { module, test } from 'qunit';
import { render } from '@ember/test-helpers';
import { initialize as fragmentSerializerInitializer } from 'nomad-ui/initializers/fragment-serializer';
import hbs from 'htmlbars-inline-precompile';
import { setupPrimaryMetricMocks, primaryMetric } from './primary-metric';
import { componentA11yAudit } from 'nomad-ui/tests/helpers/a11y-audit';
import { startMirage } from 'nomad-ui/initializers/ember-cli-mirage';
const mockTasks = [
{ task: 'One', reservedCPU: 200, reservedMemory: 500, cpu: [], memory: [] },
{ task: 'Two', reservedCPU: 100, reservedMemory: 200, cpu: [], memory: [] },
{ task: 'Three', reservedCPU: 300, reservedMemory: 100, cpu: [], memory: [] },
];
2021-12-28 14:45:20 +00:00
module('Integration | Component | PrimaryMetric::Task', function (hooks) {
2021-03-22 06:02:39 +00:00
setupRenderingTest(hooks);
setupPrimaryMetricMocks(hooks, [...mockTasks]);
2021-12-28 14:45:20 +00:00
hooks.beforeEach(function () {
2021-03-22 06:02:39 +00:00
fragmentSerializerInitializer(this.owner);
this.store = this.owner.lookup('service:store');
this.server = startMirage();
this.server.create('namespace');
this.server.create('node');
const job = this.server.create('job', {
groupsCount: 1,
groupTaskCount: 3,
createAllocations: false,
});
// Update job > group > task names to match mockTasks
job.taskGroups.models[0].tasks.models.forEach((task, index) => {
task.update({ name: mockTasks[index].task });
});
this.server.create('allocation', { forceRunningClientStatus: true });
});
2021-12-28 14:45:20 +00:00
hooks.afterEach(function () {
2021-03-22 06:02:39 +00:00
this.server.shutdown();
});
const template = hbs`
<PrimaryMetric::Task
@taskState={{this.resource}}
@metric={{this.metric}} />
`;
2021-12-28 14:45:20 +00:00
const preload = async (store) => {
2021-03-22 06:02:39 +00:00
await store.findAll('allocation');
};
2021-12-28 16:08:12 +00:00
const findResource = (store) =>
store.peekAll('allocation').get('firstObject.states.firstObject');
2021-03-22 06:02:39 +00:00
2021-12-28 14:45:20 +00:00
test('Must pass an accessibility audit', async function (assert) {
2021-03-22 06:02:39 +00:00
await preload(this.store);
const resource = findResource(this.store);
this.setProperties({ resource, metric: 'cpu' });
await render(template);
await componentA11yAudit(this.element, assert);
});
primaryMetric({
template,
preload,
findResource,
});
});