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';
|
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;
|
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
module('Acceptance | task logs', function(hooks) {
|
|
|
|
setupApplicationTest(hooks);
|
2019-03-13 01:09:19 +00:00
|
|
|
setupMirage(hooks);
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-03-14 06:44:53 +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
|
|
|
|
2018-11-10 01:13:08 +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
|
|
|
|
2019-03-14 06:44:53 +00:00
|
|
|
test('/allocation/:id/:task_name/logs should have a log component', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
assert.equal(currentURL(), `/allocations/${allocation.id}/${task.name}/logs`, 'No redirect');
|
|
|
|
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
|
|
|
|
2019-03-14 06:44:53 +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);
|
|
|
|
const logUrlRegex = new RegExp(`${node.httpAddr}/v1/client/fs/logs/${allocation.id}`);
|
|
|
|
assert.ok(
|
|
|
|
server.pretender.handledRequests.filter(req => logUrlRegex.test(req.url)).length,
|
|
|
|
'Log requests were made'
|
|
|
|
);
|
|
|
|
});
|
2017-11-16 02:13:28 +00:00
|
|
|
});
|