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

47 lines
1.2 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, jobFactory, additionalTests) {
let job;
moduleForAcceptance(title, {
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`);
});
});
for (var testName in additionalTests) {
test(testName, function(assert) {
additionalTests[testName](job, assert);
});
}
}