open-nomad/ui/tests/acceptance/task-logs-test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
2.9 KiB
JavaScript
Raw Normal View History

/* eslint-disable qunit/require-expect */
import { click, currentURL } from '@ember/test-helpers';
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';
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';
import percySnapshot from '@percy/ember';
import faker from 'nomad-ui/mirage/faker';
2017-11-16 02:13:28 +00:00
let allocation;
let task;
let job;
2017-11-16 02:13:28 +00:00
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 () {
faker.seed(1);
2017-11-16 02:13:28 +00:00
server.create('agent');
server.create('node', 'forceIPv4');
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-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) {
await TaskLogs.visit({ id: allocation.id, name: task.name });
await a11yAudit(assert);
2022-09-27 14:25:04 +00:00
await percySnapshot(assert);
});
2021-12-28 14:45:20 +00:00
test('/allocation/:id/:task_name/logs should have a log component', async function (assert) {
await TaskLogs.visit({ id: allocation.id, name: task.name });
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');
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) {
await TaskLogs.visit({ id: allocation.id, name: task.name });
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'
);
});
test('logs are accessible in a sidebar context', async function (assert) {
await TaskLogs.visitParentJob({
id: job.id,
allocationId: allocation.id,
name: task.name,
});
assert.notOk(TaskLogs.sidebarIsPresent, 'Sidebar is not present');
run.later(() => {
run.cancelTimers();
}, 500);
await click('button.logs-sidebar-trigger');
assert.ok(TaskLogs.sidebarIsPresent, 'Sidebar is present');
assert
.dom('.task-context-sidebar h1.title')
.includesText(task.name, 'Sidebar title is correct');
assert
.dom('.task-context-sidebar h1.title')
.includesText(task.state, 'Task state is correctly displayed');
await percySnapshot(assert);
await click('.sidebar button.close');
assert.notOk(TaskLogs.sidebarIsPresent, 'Sidebar is not present');
});
2017-11-16 02:13:28 +00:00
});