open-nomad/ui/tests/helpers/module-for-job.js

78 lines
2.3 KiB
JavaScript
Raw Normal View History

import { test } from 'qunit';
import moduleForAcceptance from 'nomad-ui/tests/helpers/module-for-acceptance';
2018-07-11 02:20:02 +00:00
import JobDetail from 'nomad-ui/tests/pages/jobs/detail';
export default function moduleForJob(title, context, jobFactory, additionalTests) {
let job;
moduleForAcceptance(title, {
before() {
if (context !== 'allocations' && context !== 'children') {
throw new Error(
`Invalid context provided to moduleForJob, expected either "allocations" or "children", got ${context}`
);
}
},
beforeEach() {
server.create('node');
job = jobFactory();
2018-07-11 02:20:02 +00:00
JobDetail.visit({ id: job.id });
},
});
test('visiting /jobs/:job_id', function(assert) {
assert.equal(currentURL(), `/jobs/${job.id}`);
});
test('the subnav links to overview', function(assert) {
2018-07-11 02:20:02 +00:00
JobDetail.tabFor('overview').visit();
andThen(() => {
assert.equal(currentURL(), `/jobs/${job.id}`);
});
});
test('the subnav links to definition', function(assert) {
2018-07-11 02:20:02 +00:00
JobDetail.tabFor('definition').visit();
andThen(() => {
assert.equal(currentURL(), `/jobs/${job.id}/definition`);
});
});
test('the subnav links to versions', function(assert) {
2018-07-11 02:20:02 +00:00
JobDetail.tabFor('versions').visit();
andThen(() => {
assert.equal(currentURL(), `/jobs/${job.id}/versions`);
});
});
2018-07-11 02:28:54 +00:00
test('the subnav links to evaluations', function(assert) {
JobDetail.tabFor('evaluations').visit();
andThen(() => {
assert.equal(currentURL(), `/jobs/${job.id}/evaluations`);
});
});
if (context === 'allocations') {
test('allocations for the job are shown in the overview', function(assert) {
assert.ok(JobDetail.allocationsSummary, 'Allocations are shown in the summary section');
assert.notOk(JobDetail.childrenSummary, 'Children are not shown in the summary section');
});
}
if (context === 'children') {
test('children for the job are shown in the overview', function(assert) {
assert.ok(JobDetail.childrenSummary, 'Children are shown in the summary section');
assert.notOk(
JobDetail.allocationsSummary,
'Allocations are not shown in the summary section'
);
});
}
for (var testName in additionalTests) {
test(testName, function(assert) {
additionalTests[testName](job, assert);
});
}
}