2019-03-13 00:08:16 +00:00
|
|
|
import { currentURL } from '@ember/test-helpers';
|
2017-12-15 21:39:18 +00:00
|
|
|
import { run } from '@ember/runloop';
|
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';
|
2020-07-28 17:59:14 +00:00
|
|
|
import a11yAudit from 'nomad-ui/tests/helpers/a11y-audit';
|
2018-07-11 19:31:37 +00:00
|
|
|
import TaskLogs from 'nomad-ui/tests/pages/allocations/task/logs';
|
2017-11-16 02:13:28 +00:00
|
|
|
|
|
|
|
let allocation;
|
|
|
|
let task;
|
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
module('Acceptance | task logs', function (hooks) {
|
2019-03-13 00:04:16 +00:00
|
|
|
setupApplicationTest(hooks);
|
2019-03-13 01:09:19 +00:00
|
|
|
setupMirage(hooks);
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
hooks.beforeEach(async function () {
|
2017-11-16 02:13:28 +00:00
|
|
|
server.create('agent');
|
|
|
|
server.create('node', 'forceIPv4');
|
2018-11-10 01:13:08 +00:00
|
|
|
const job = server.create('job', { createAllocations: false });
|
2017-11-16 02:13:28 +00:00
|
|
|
|
2021-12-28 16:08:12 +00:00
|
|
|
allocation = server.create('allocation', {
|
|
|
|
jobId: job.id,
|
|
|
|
clientStatus: 'running',
|
|
|
|
});
|
2017-11-16 02:13:28 +00:00
|
|
|
task = server.db.taskStates.where({ allocationId: allocation.id })[0];
|
|
|
|
|
|
|
|
run.later(run, run.cancelTimers, 1000);
|
2019-03-14 06:44:53 +00:00
|
|
|
await TaskLogs.visit({ id: allocation.id, name: task.name });
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2017-11-16 02:13:28 +00:00
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
test('it passes an accessibility audit', async function (assert) {
|
2020-08-25 15:56:02 +00:00
|
|
|
await a11yAudit(assert);
|
2020-07-28 17:59:14 +00:00
|
|
|
});
|
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
test('/allocation/:id/:task_name/logs should have a log component', async function (assert) {
|
2021-12-28 16:08:12 +00:00
|
|
|
assert.equal(
|
|
|
|
currentURL(),
|
|
|
|
`/allocations/${allocation.id}/${task.name}/logs`,
|
|
|
|
'No redirect'
|
|
|
|
);
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.ok(TaskLogs.hasTaskLog, 'Task log component found');
|
2019-07-17 20:02:58 +00:00
|
|
|
assert.equal(document.title, `Task ${task.name} logs - Nomad`);
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2017-11-16 02:13:28 +00:00
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
test('the stdout log immediately starts streaming', async function (assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
const node = server.db.nodes.find(allocation.nodeId);
|
2021-12-28 16:08:12 +00:00
|
|
|
const logUrlRegex = new RegExp(
|
|
|
|
`${node.httpAddr}/v1/client/fs/logs/${allocation.id}`
|
|
|
|
);
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.ok(
|
2021-12-28 16:08:12 +00:00
|
|
|
server.pretender.handledRequests.filter((req) =>
|
|
|
|
logUrlRegex.test(req.url)
|
|
|
|
).length,
|
2019-03-13 00:04:16 +00:00
|
|
|
'Log requests were made'
|
|
|
|
);
|
|
|
|
});
|
2017-11-16 02:13:28 +00:00
|
|
|
});
|