2019-03-13 00:40:39 +00:00
|
|
|
|
import { currentURL } from '@ember/test-helpers';
|
2019-03-13 00:04:16 +00:00
|
|
|
|
import { module, test } from 'qunit';
|
|
|
|
|
import { setupApplicationTest } from 'ember-qunit';
|
2019-09-26 18:47:07 +00:00
|
|
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
2018-07-11 02:20:02 +00:00
|
|
|
|
import JobDetail from 'nomad-ui/tests/pages/jobs/detail';
|
2022-01-13 02:26:02 +00:00
|
|
|
|
import Tokens from 'nomad-ui/tests/pages/settings/tokens';
|
2018-02-02 01:22:09 +00:00
|
|
|
|
|
2021-02-17 21:01:44 +00:00
|
|
|
|
// eslint-disable-next-line ember/no-test-module-for
|
2021-12-28 16:08:12 +00:00
|
|
|
|
export default function moduleForJob(
|
|
|
|
|
title,
|
|
|
|
|
context,
|
|
|
|
|
jobFactory,
|
|
|
|
|
additionalTests
|
|
|
|
|
) {
|
2018-02-02 01:22:09 +00:00
|
|
|
|
let job;
|
|
|
|
|
|
2019-03-13 00:40:39 +00:00
|
|
|
|
module(title, function(hooks) {
|
|
|
|
|
setupApplicationTest(hooks);
|
2019-03-13 01:09:19 +00:00
|
|
|
|
setupMirage(hooks);
|
2019-03-13 00:40:39 +00:00
|
|
|
|
hooks.before(function() {
|
2018-11-08 05:04:27 +00:00
|
|
|
|
if (context !== 'allocations' && context !== 'children') {
|
|
|
|
|
throw new Error(
|
|
|
|
|
`Invalid context provided to moduleForJob, expected either "allocations" or "children", got ${context}`
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-03-13 00:40:39 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
|
hooks.beforeEach(async function() {
|
2018-02-02 01:22:09 +00:00
|
|
|
|
server.create('node');
|
|
|
|
|
job = jobFactory();
|
2021-09-01 18:40:25 +00:00
|
|
|
|
if (!job.namespace || job.namespace === 'default') {
|
|
|
|
|
await JobDetail.visit({ id: job.id });
|
|
|
|
|
} else {
|
|
|
|
|
await JobDetail.visit({ id: job.id, namespace: job.namespace });
|
|
|
|
|
}
|
2019-03-13 00:40:39 +00:00
|
|
|
|
});
|
2018-02-02 01:22:09 +00:00
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('visiting /jobs/:job_id', async function(assert) {
|
2022-01-13 02:26:02 +00:00
|
|
|
|
const expectedURL = new URL(
|
|
|
|
|
urlWithNamespace(`/jobs/${encodeURIComponent(job.id)}`, job.namespace),
|
|
|
|
|
window.location
|
2021-09-01 18:40:25 +00:00
|
|
|
|
);
|
2022-01-13 02:26:02 +00:00
|
|
|
|
const gotURL = new URL(currentURL(), window.location);
|
|
|
|
|
|
|
|
|
|
assert.deepEqual(gotURL.path, expectedURL.path);
|
|
|
|
|
assert.deepEqual(gotURL.searchParams, expectedURL.searchParams);
|
2019-07-17 20:02:58 +00:00
|
|
|
|
assert.equal(document.title, `Job ${job.name} - Nomad`);
|
2018-02-02 01:22:09 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('the subnav links to overview', async function(assert) {
|
|
|
|
|
await JobDetail.tabFor('overview').visit();
|
2022-01-13 02:26:02 +00:00
|
|
|
|
|
|
|
|
|
const expectedURL = new URL(
|
|
|
|
|
urlWithNamespace(`/jobs/${encodeURIComponent(job.id)}`, job.namespace),
|
|
|
|
|
window.location
|
2021-09-01 18:40:25 +00:00
|
|
|
|
);
|
2022-01-13 02:26:02 +00:00
|
|
|
|
const gotURL = new URL(currentURL(), window.location);
|
|
|
|
|
|
|
|
|
|
assert.deepEqual(gotURL.path, expectedURL.path);
|
|
|
|
|
assert.deepEqual(gotURL.searchParams, expectedURL.searchParams);
|
2018-02-02 01:22:09 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('the subnav links to definition', async function(assert) {
|
|
|
|
|
await JobDetail.tabFor('definition').visit();
|
2021-09-01 18:40:25 +00:00
|
|
|
|
assert.equal(
|
|
|
|
|
currentURL(),
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${encodeURIComponent(job.id)}/definition`,
|
|
|
|
|
job.namespace
|
|
|
|
|
)
|
2021-09-01 18:40:25 +00:00
|
|
|
|
);
|
2018-02-02 01:22:09 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('the subnav links to versions', async function(assert) {
|
|
|
|
|
await JobDetail.tabFor('versions').visit();
|
2021-09-01 18:40:25 +00:00
|
|
|
|
assert.equal(
|
|
|
|
|
currentURL(),
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${encodeURIComponent(job.id)}/versions`,
|
|
|
|
|
job.namespace
|
|
|
|
|
)
|
2021-09-01 18:40:25 +00:00
|
|
|
|
);
|
2018-07-11 02:28:54 +00:00
|
|
|
|
});
|
|
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('the subnav links to evaluations', async function(assert) {
|
|
|
|
|
await JobDetail.tabFor('evaluations').visit();
|
2021-09-01 18:40:25 +00:00
|
|
|
|
assert.equal(
|
|
|
|
|
currentURL(),
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${encodeURIComponent(job.id)}/evaluations`,
|
|
|
|
|
job.namespace
|
|
|
|
|
)
|
2021-09-01 18:40:25 +00:00
|
|
|
|
);
|
2018-11-08 05:04:27 +00:00
|
|
|
|
});
|
|
|
|
|
|
2020-05-11 16:29:30 +00:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2019-03-13 00:40:39 +00:00
|
|
|
|
if (context === 'allocations') {
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('allocations for the job are shown in the overview', async function(assert) {
|
2022-01-12 16:21:01 +00:00
|
|
|
|
assert.ok(
|
|
|
|
|
JobDetail.allocationsSummary.isPresent,
|
|
|
|
|
'Allocations are shown in the summary section'
|
|
|
|
|
);
|
|
|
|
|
assert.ok(
|
|
|
|
|
JobDetail.childrenSummary.isHidden,
|
|
|
|
|
'Children are not shown in the summary section'
|
|
|
|
|
);
|
2019-03-13 00:40:39 +00:00
|
|
|
|
});
|
2019-08-08 14:26:46 +00:00
|
|
|
|
|
|
|
|
|
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'
|
|
|
|
|
);
|
|
|
|
|
});
|
2022-01-12 16:21:01 +00:00
|
|
|
|
|
|
|
|
|
test('clicking legend item navigates to a pre-filtered allocations table', async function(assert) {
|
2021-12-28 16:08:12 +00:00
|
|
|
|
const legendItem =
|
|
|
|
|
JobDetail.allocationsSummary.legend.clickableItems[1];
|
2022-01-12 16:21:01 +00:00
|
|
|
|
const status = legendItem.label;
|
|
|
|
|
await legendItem.click();
|
|
|
|
|
|
|
|
|
|
const encodedStatus = encodeURIComponent(JSON.stringify([status]));
|
|
|
|
|
const expectedURL = new URL(
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${job.name}/clients?status=${encodedStatus}`,
|
|
|
|
|
job.namespace
|
|
|
|
|
),
|
2022-01-12 16:21:01 +00:00
|
|
|
|
window.location
|
|
|
|
|
);
|
|
|
|
|
const gotURL = new URL(currentURL(), window.location);
|
|
|
|
|
assert.deepEqual(gotURL.path, expectedURL.path);
|
|
|
|
|
assert.deepEqual(gotURL.searchParams, expectedURL.searchParams);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('clicking in a slice takes you to a pre-filtered allocations table', async function(assert) {
|
|
|
|
|
const slice = JobDetail.allocationsSummary.slices[1];
|
|
|
|
|
const status = slice.label;
|
|
|
|
|
await slice.click();
|
|
|
|
|
|
|
|
|
|
const encodedStatus = encodeURIComponent(JSON.stringify([status]));
|
|
|
|
|
const expectedURL = new URL(
|
2022-01-18 15:36:10 +00:00
|
|
|
|
urlWithNamespace(
|
2021-12-28 16:08:12 +00:00
|
|
|
|
`/jobs/${encodeURIComponent(
|
|
|
|
|
job.name
|
|
|
|
|
)}/allocations?status=${encodedStatus}`,
|
2022-01-18 15:36:10 +00:00
|
|
|
|
job.namespace
|
|
|
|
|
),
|
2022-01-12 16:21:01 +00:00
|
|
|
|
window.location
|
|
|
|
|
);
|
|
|
|
|
const gotURL = new URL(currentURL(), window.location);
|
|
|
|
|
assert.deepEqual(gotURL.pathname, expectedURL.pathname);
|
|
|
|
|
|
|
|
|
|
// Sort and compare URL query params.
|
|
|
|
|
gotURL.searchParams.sort();
|
|
|
|
|
expectedURL.searchParams.sort();
|
2021-12-28 16:08:12 +00:00
|
|
|
|
assert.equal(
|
|
|
|
|
gotURL.searchParams.toString(),
|
|
|
|
|
expectedURL.searchParams.toString()
|
|
|
|
|
);
|
2022-01-12 16:21:01 +00:00
|
|
|
|
});
|
2019-03-13 00:40:39 +00:00
|
|
|
|
}
|
2018-11-08 05:04:27 +00:00
|
|
|
|
|
2019-03-13 00:40:39 +00:00
|
|
|
|
if (context === 'children') {
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test('children for the job are shown in the overview', async function(assert) {
|
2021-12-28 16:08:12 +00:00
|
|
|
|
assert.ok(
|
|
|
|
|
JobDetail.childrenSummary.isPresent,
|
|
|
|
|
'Children are shown in the summary section'
|
|
|
|
|
);
|
2022-01-12 16:21:01 +00:00
|
|
|
|
assert.ok(
|
|
|
|
|
JobDetail.allocationsSummary.isHidden,
|
2019-03-13 00:40:39 +00:00
|
|
|
|
'Allocations are not shown in the summary section'
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (var testName in additionalTests) {
|
2019-03-14 06:44:53 +00:00
|
|
|
|
test(testName, async function(assert) {
|
2020-09-19 05:20:09 +00:00
|
|
|
|
await additionalTests[testName].call(this, job, assert);
|
2019-03-13 00:40:39 +00:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
2018-02-02 01:22:09 +00:00
|
|
|
|
}
|
2021-09-01 18:40:25 +00:00
|
|
|
|
|
2021-10-07 21:11:38 +00:00
|
|
|
|
// eslint-disable-next-line ember/no-test-module-for
|
2021-12-28 16:08:12 +00:00
|
|
|
|
export function moduleForJobWithClientStatus(
|
|
|
|
|
title,
|
|
|
|
|
jobFactory,
|
|
|
|
|
additionalTests
|
|
|
|
|
) {
|
2021-10-07 21:11:38 +00:00
|
|
|
|
let job;
|
|
|
|
|
|
|
|
|
|
module(title, function(hooks) {
|
|
|
|
|
setupApplicationTest(hooks);
|
|
|
|
|
setupMirage(hooks);
|
|
|
|
|
|
|
|
|
|
hooks.beforeEach(async function() {
|
2022-01-13 02:26:02 +00:00
|
|
|
|
// Displaying the job status in client requires node:read permission.
|
|
|
|
|
const policy = server.create('policy', {
|
|
|
|
|
id: 'node-read',
|
|
|
|
|
name: 'node-read',
|
|
|
|
|
rulesJSON: {
|
|
|
|
|
Node: {
|
2021-12-28 16:08:12 +00:00
|
|
|
|
Policy: 'read'
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-01-13 02:26:02 +00:00
|
|
|
|
});
|
|
|
|
|
const clientToken = server.create('token', { type: 'client' });
|
|
|
|
|
clientToken.policyIds = [policy.id];
|
|
|
|
|
clientToken.save();
|
|
|
|
|
|
|
|
|
|
window.localStorage.clear();
|
|
|
|
|
window.localStorage.nomadTokenSecret = clientToken.secretId;
|
|
|
|
|
|
2021-10-07 21:11:38 +00:00
|
|
|
|
const clients = server.createList('node', 3, {
|
|
|
|
|
datacenter: 'dc1',
|
2021-12-28 16:08:12 +00:00
|
|
|
|
status: 'ready'
|
2021-10-07 21:11:38 +00:00
|
|
|
|
});
|
|
|
|
|
job = jobFactory();
|
|
|
|
|
clients.forEach(c => {
|
|
|
|
|
server.create('allocation', { jobId: job.id, nodeId: c.id });
|
|
|
|
|
});
|
|
|
|
|
if (!job.namespace || job.namespace === 'default') {
|
|
|
|
|
await JobDetail.visit({ id: job.id });
|
|
|
|
|
} else {
|
|
|
|
|
await JobDetail.visit({ id: job.id, namespace: job.namespace });
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2022-01-13 02:26:02 +00:00
|
|
|
|
test('job status summary is collapsed when not authorized', async function(assert) {
|
|
|
|
|
const clientToken = server.create('token', { type: 'client' });
|
|
|
|
|
await Tokens.visit();
|
|
|
|
|
await Tokens.secret(clientToken.secretId).submit();
|
|
|
|
|
|
|
|
|
|
await JobDetail.visit({ id: job.id, namespace: job.namespace });
|
|
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
|
JobDetail.jobClientStatusSummary.toggle.isDisabled,
|
|
|
|
|
'Job client status summar is disabled'
|
|
|
|
|
);
|
|
|
|
|
assert.equal(
|
|
|
|
|
JobDetail.jobClientStatusSummary.toggle.tooltip,
|
|
|
|
|
'You don’t have permission to read clients'
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2021-10-07 21:11:38 +00:00
|
|
|
|
test('the subnav links to clients', async function(assert) {
|
|
|
|
|
await JobDetail.tabFor('clients').visit();
|
|
|
|
|
assert.equal(
|
|
|
|
|
currentURL(),
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${encodeURIComponent(job.id)}/clients`,
|
|
|
|
|
job.namespace
|
|
|
|
|
)
|
2021-10-07 21:11:38 +00:00
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('job status summary is shown in the overview', async function(assert) {
|
|
|
|
|
assert.ok(
|
2022-01-13 02:26:02 +00:00
|
|
|
|
JobDetail.jobClientStatusSummary.statusBar.isPresent,
|
2021-10-07 21:11:38 +00:00
|
|
|
|
'Summary bar is displayed in the Job Status in Client summary section'
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('clicking legend item navigates to a pre-filtered clients table', async function(assert) {
|
2021-12-28 16:08:12 +00:00
|
|
|
|
const legendItem =
|
|
|
|
|
JobDetail.jobClientStatusSummary.statusBar.legend.clickableItems[0];
|
2021-10-07 21:11:38 +00:00
|
|
|
|
const status = legendItem.label;
|
|
|
|
|
await legendItem.click();
|
|
|
|
|
|
|
|
|
|
const encodedStatus = encodeURIComponent(JSON.stringify([status]));
|
|
|
|
|
const expectedURL = new URL(
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${job.name}/clients?status=${encodedStatus}`,
|
|
|
|
|
job.namespace
|
|
|
|
|
),
|
2021-10-07 21:11:38 +00:00
|
|
|
|
window.location
|
|
|
|
|
);
|
|
|
|
|
const gotURL = new URL(currentURL(), window.location);
|
|
|
|
|
assert.deepEqual(gotURL.path, expectedURL.path);
|
|
|
|
|
assert.deepEqual(gotURL.searchParams, expectedURL.searchParams);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test('clicking in a slice takes you to a pre-filtered clients table', async function(assert) {
|
2022-01-13 02:26:02 +00:00
|
|
|
|
const slice = JobDetail.jobClientStatusSummary.statusBar.slices[0];
|
2021-10-07 21:11:38 +00:00
|
|
|
|
const status = slice.label;
|
|
|
|
|
await slice.click();
|
|
|
|
|
|
|
|
|
|
const encodedStatus = encodeURIComponent(JSON.stringify([status]));
|
|
|
|
|
const expectedURL = new URL(
|
2021-12-28 16:08:12 +00:00
|
|
|
|
urlWithNamespace(
|
|
|
|
|
`/jobs/${job.name}/clients?status=${encodedStatus}`,
|
|
|
|
|
job.namespace
|
|
|
|
|
),
|
2021-10-07 21:11:38 +00:00
|
|
|
|
window.location
|
|
|
|
|
);
|
|
|
|
|
const gotURL = new URL(currentURL(), window.location);
|
|
|
|
|
assert.deepEqual(gotURL.pathname, expectedURL.pathname);
|
|
|
|
|
|
|
|
|
|
// Sort and compare URL query params.
|
|
|
|
|
gotURL.searchParams.sort();
|
|
|
|
|
expectedURL.searchParams.sort();
|
2021-12-28 16:08:12 +00:00
|
|
|
|
assert.equal(
|
|
|
|
|
gotURL.searchParams.toString(),
|
|
|
|
|
expectedURL.searchParams.toString()
|
|
|
|
|
);
|
2021-10-07 21:11:38 +00:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
for (var testName in additionalTests) {
|
|
|
|
|
test(testName, async function(assert) {
|
|
|
|
|
await additionalTests[testName].call(this, job, assert);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-01 18:40:25 +00:00
|
|
|
|
function urlWithNamespace(url, namespace) {
|
|
|
|
|
if (!namespace || namespace === 'default') {
|
|
|
|
|
return url;
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-07 21:11:38 +00:00
|
|
|
|
const parts = url.split('?');
|
|
|
|
|
const params = new URLSearchParams(parts[1]);
|
|
|
|
|
params.set('namespace', namespace);
|
|
|
|
|
|
|
|
|
|
return `${parts[0]}?${params.toString()}`;
|
2021-09-01 18:40:25 +00:00
|
|
|
|
}
|