e9e52e0dfe
This doesn’t include Ember Data, as we are still back on 3.12. Most changes are deprecation updates, linting fixes, and dependencies. It can be read commit-by-commit, though many of them are mechanical and skimmable. For the new linting exclusions, I’ve added them to the Tech Debt list. The decrease in test count is because linting is no longer included in ember test. There’s a new deprecation warning in the logs that can be fixed by updating Ember Power Select but when I tried that it caused it to render incorrectly, so I decided to ignore it for now and address it separately.
102 lines
3.5 KiB
JavaScript
102 lines
3.5 KiB
JavaScript
import { currentURL } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
import JobDetail from 'nomad-ui/tests/pages/jobs/detail';
|
|
|
|
// eslint-disable-next-line ember/no-test-module-for
|
|
export default function moduleForJob(title, context, jobFactory, additionalTests) {
|
|
let job;
|
|
|
|
module(title, function(hooks) {
|
|
setupApplicationTest(hooks);
|
|
setupMirage(hooks);
|
|
hooks.before(function() {
|
|
if (context !== 'allocations' && context !== 'children') {
|
|
throw new Error(
|
|
`Invalid context provided to moduleForJob, expected either "allocations" or "children", got ${context}`
|
|
);
|
|
}
|
|
});
|
|
|
|
hooks.beforeEach(async function() {
|
|
server.create('node');
|
|
job = jobFactory();
|
|
await JobDetail.visit({ id: job.id });
|
|
});
|
|
|
|
test('visiting /jobs/:job_id', async function(assert) {
|
|
assert.equal(currentURL(), `/jobs/${job.id}`);
|
|
assert.equal(document.title, `Job ${job.name} - Nomad`);
|
|
});
|
|
|
|
test('the subnav links to overview', async function(assert) {
|
|
await JobDetail.tabFor('overview').visit();
|
|
assert.equal(currentURL(), `/jobs/${job.id}`);
|
|
});
|
|
|
|
test('the subnav links to definition', async function(assert) {
|
|
await JobDetail.tabFor('definition').visit();
|
|
assert.equal(currentURL(), `/jobs/${job.id}/definition`);
|
|
});
|
|
|
|
test('the subnav links to versions', async function(assert) {
|
|
await JobDetail.tabFor('versions').visit();
|
|
assert.equal(currentURL(), `/jobs/${job.id}/versions`);
|
|
});
|
|
|
|
test('the subnav links to evaluations', async function(assert) {
|
|
await JobDetail.tabFor('evaluations').visit();
|
|
assert.equal(currentURL(), `/jobs/${job.id}/evaluations`);
|
|
});
|
|
|
|
test('the title buttons are dependent on job status', async function(assert) {
|
|
if (job.status === 'dead') {
|
|
assert.ok(JobDetail.start.isPresent);
|
|
assert.notOk(JobDetail.stop.isPresent);
|
|
assert.notOk(JobDetail.execButton.isPresent);
|
|
} else {
|
|
assert.notOk(JobDetail.start.isPresent);
|
|
assert.ok(JobDetail.stop.isPresent);
|
|
assert.ok(JobDetail.execButton.isPresent);
|
|
}
|
|
});
|
|
|
|
if (context === 'allocations') {
|
|
test('allocations for the job are shown in the overview', async 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');
|
|
});
|
|
|
|
test('clicking in an allocation row navigates to that allocation', async function(assert) {
|
|
const allocationRow = JobDetail.allocations[0];
|
|
const allocationId = allocationRow.id;
|
|
|
|
await allocationRow.visitRow();
|
|
|
|
assert.equal(
|
|
currentURL(),
|
|
`/allocations/${allocationId}`,
|
|
'Allocation row links to allocation detail'
|
|
);
|
|
});
|
|
}
|
|
|
|
if (context === 'children') {
|
|
test('children for the job are shown in the overview', async 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, async function(assert) {
|
|
await additionalTests[testName].call(this, job, assert);
|
|
});
|
|
}
|
|
});
|
|
}
|