2017-09-26 07:47:16 +00:00
|
|
|
import Ember from 'ember';
|
2017-09-30 00:41:12 +00:00
|
|
|
import { click, find, findAll, currentURL, visit, fillIn } from 'ember-native-dom-helpers';
|
2017-09-19 14:47:10 +00:00
|
|
|
import { test } from 'qunit';
|
|
|
|
import moduleForAcceptance from 'nomad-ui/tests/helpers/module-for-acceptance';
|
|
|
|
|
2017-09-26 07:47:16 +00:00
|
|
|
const { $ } = Ember;
|
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
moduleForAcceptance('Acceptance | jobs list', {
|
|
|
|
beforeEach() {
|
|
|
|
// Required for placing allocations (a result of creating jobs)
|
|
|
|
server.create('node');
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
test('visiting /jobs', function(assert) {
|
|
|
|
visit('/jobs');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.equal(currentURL(), '/jobs');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('/jobs should list the first page of jobs sorted by modify index', function(assert) {
|
|
|
|
const jobsCount = 11;
|
|
|
|
const pageSize = 10;
|
|
|
|
server.createList('job', jobsCount, { createAllocations: false });
|
|
|
|
|
|
|
|
visit('/jobs');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
const sortedJobs = server.db.jobs.sortBy('modifyIndex').reverse();
|
2017-09-26 07:47:16 +00:00
|
|
|
assert.equal(findAll('.job-row').length, pageSize);
|
2017-09-19 14:47:10 +00:00
|
|
|
for (var jobNumber = 0; jobNumber < pageSize; jobNumber++) {
|
|
|
|
assert.equal(
|
2017-09-26 07:47:16 +00:00
|
|
|
$(`.job-row:eq(${jobNumber}) td:eq(0)`).text(),
|
2017-09-19 14:47:10 +00:00
|
|
|
sortedJobs[jobNumber].name,
|
|
|
|
'Jobs are ordered'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('each job row should contain information about the job', function(assert) {
|
|
|
|
server.createList('job', 2);
|
|
|
|
const job = server.db.jobs.sortBy('modifyIndex').reverse()[0];
|
|
|
|
const taskGroups = server.db.taskGroups.where({ jobId: job.id });
|
|
|
|
|
|
|
|
visit('/jobs');
|
|
|
|
|
|
|
|
andThen(() => {
|
2017-09-26 07:47:16 +00:00
|
|
|
const jobRow = $(findAll('.job-row')[0]);
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
assert.equal(jobRow.find('td:eq(0)').text(), job.name, 'Name');
|
|
|
|
assert.equal(jobRow.find('td:eq(0) a').attr('href'), `/ui/jobs/${job.id}`, 'Detail Link');
|
2017-09-26 07:47:16 +00:00
|
|
|
assert.equal(
|
|
|
|
jobRow
|
|
|
|
.find('td:eq(1)')
|
|
|
|
.text()
|
|
|
|
.trim(),
|
|
|
|
job.status,
|
|
|
|
'Status'
|
|
|
|
);
|
2017-09-19 14:47:10 +00:00
|
|
|
assert.equal(jobRow.find('td:eq(2)').text(), job.type, 'Type');
|
|
|
|
assert.equal(jobRow.find('td:eq(3)').text(), job.priority, 'Priority');
|
|
|
|
assert.equal(jobRow.find('td:eq(4)').text(), taskGroups.length, '# Groups');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('each job row should link to the corresponding job', function(assert) {
|
|
|
|
server.create('job');
|
|
|
|
const job = server.db.jobs[0];
|
|
|
|
|
|
|
|
visit('/jobs');
|
2017-09-26 07:47:16 +00:00
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
click($('.job-row:eq(0) td:eq(0) a').get(0));
|
|
|
|
});
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.equal(currentURL(), `/jobs/${job.id}`);
|
|
|
|
});
|
|
|
|
});
|
2017-09-30 00:41:12 +00:00
|
|
|
|
|
|
|
test('when there are no jobs, there is an empty message', function(assert) {
|
|
|
|
visit('/jobs');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.ok(find('.empty-message'));
|
|
|
|
assert.equal(find('.empty-message-headline').textContent, 'No Jobs');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('when there are jobs, but no matches for a search result, there is an empty message', function(
|
|
|
|
assert
|
|
|
|
) {
|
|
|
|
server.create('job', { name: 'cat 1' });
|
|
|
|
server.create('job', { name: 'cat 2' });
|
|
|
|
|
|
|
|
visit('/jobs');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
fillIn('.search-box input', 'dog');
|
|
|
|
});
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.ok(find('.empty-message'));
|
|
|
|
assert.equal(find('.empty-message-headline').textContent, 'No Matches');
|
|
|
|
});
|
|
|
|
});
|
2017-10-11 20:44:27 +00:00
|
|
|
|
|
|
|
test('when the namespace query param is set, only matching jobs are shown and the namespace value is forwarded to app state', function(
|
|
|
|
assert
|
|
|
|
) {
|
|
|
|
server.createList('namespace', 2);
|
|
|
|
const job1 = server.create('job', { namespaceId: server.db.namespaces[0].id });
|
|
|
|
const job2 = server.create('job', { namespaceId: server.db.namespaces[1].id });
|
|
|
|
|
|
|
|
visit('/jobs');
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.equal(findAll('.job-row').length, 1, 'One job in the default namespace');
|
|
|
|
assert.equal(find('.job-row td').textContent, job1.name, 'The correct job is shown');
|
|
|
|
});
|
|
|
|
|
|
|
|
const secondNamespace = server.db.namespaces[1];
|
|
|
|
visit(`/jobs?namespace=${secondNamespace.id}`);
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.equal(findAll('.job-row').length, 1, `One job in the ${secondNamespace.name} namespace`);
|
|
|
|
assert.equal(find('.job-row td').textContent, job2.name, 'The correct job is shown');
|
|
|
|
});
|
|
|
|
});
|