2019-03-13 00:04:16 +00:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupRenderingTest } from 'ember-qunit';
|
2019-07-23 19:40:32 +00:00
|
|
|
import { click, find, findAll, render } from '@ember/test-helpers';
|
2018-02-02 02:54:23 +00:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import { startMirage } from 'nomad-ui/initializers/ember-cli-mirage';
|
2018-08-24 20:18:10 +00:00
|
|
|
import {
|
|
|
|
jobURL,
|
|
|
|
stopJob,
|
|
|
|
startJob,
|
|
|
|
expectError,
|
|
|
|
expectDeleteRequest,
|
|
|
|
expectStartRequest,
|
|
|
|
} from './helpers';
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
module('Integration | Component | job-page/periodic', function(hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
|
|
|
|
|
|
|
hooks.beforeEach(function() {
|
2018-02-02 02:54:23 +00:00
|
|
|
window.localStorage.clear();
|
2019-03-13 00:04:16 +00:00
|
|
|
this.store = this.owner.lookup('service:store');
|
2018-02-02 02:54:23 +00:00
|
|
|
this.server = startMirage();
|
|
|
|
this.server.create('namespace');
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
hooks.afterEach(function() {
|
2018-02-02 02:54:23 +00:00
|
|
|
this.server.shutdown();
|
|
|
|
window.localStorage.clear();
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
const commonTemplate = hbs`
|
|
|
|
{{job-page/periodic
|
|
|
|
job=job
|
|
|
|
sortProperty=sortProperty
|
|
|
|
sortDescending=sortDescending
|
|
|
|
currentPage=currentPage
|
|
|
|
gotoJob=gotoJob}}
|
|
|
|
`;
|
|
|
|
|
|
|
|
const commonProperties = job => ({
|
|
|
|
job,
|
|
|
|
sortProperty: 'name',
|
|
|
|
sortDescending: true,
|
|
|
|
currentPage: 1,
|
|
|
|
gotoJob: () => {},
|
|
|
|
});
|
2018-04-19 18:56:11 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
test('Clicking Force Launch launches a new periodic child job', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
const childrenCount = 3;
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
this.server.create('job', 'periodic', {
|
|
|
|
id: 'parent',
|
|
|
|
childrenCount,
|
|
|
|
createAllocations: false,
|
|
|
|
});
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await this.store.findAll('job');
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const job = this.store.peekAll('job').findBy('plainId', 'parent');
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
this.setProperties(commonProperties(job));
|
|
|
|
await this.render(commonTemplate);
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const currentJobCount = server.db.jobs.length;
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
assert.equal(
|
|
|
|
findAll('[data-test-job-name]').length,
|
|
|
|
childrenCount,
|
|
|
|
'The new periodic job launch is in the children list'
|
|
|
|
);
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await click('[data-test-force-launch]');
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const expectedURL = jobURL(job, '/periodic/force');
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
assert.ok(
|
|
|
|
this.server.pretender.handledRequests
|
|
|
|
.filterBy('method', 'POST')
|
|
|
|
.find(req => req.url === expectedURL),
|
|
|
|
'POST URL was correct'
|
|
|
|
);
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
assert.equal(server.db.jobs.length, currentJobCount + 1, 'POST request was made');
|
2018-03-21 00:44:16 +00:00
|
|
|
});
|
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
test('Clicking force launch without proper permissions shows an error message', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
this.server.pretender.post('/v1/job/:id/periodic/force', () => [403, {}, null]);
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
this.server.create('job', 'periodic', {
|
|
|
|
id: 'parent',
|
|
|
|
childrenCount: 1,
|
|
|
|
createAllocations: false,
|
|
|
|
status: 'running',
|
|
|
|
});
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await this.store.findAll('job');
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const job = this.store.peekAll('job').findBy('plainId', 'parent');
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
this.setProperties(commonProperties(job));
|
|
|
|
await this.render(commonTemplate);
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
assert.notOk(find('[data-test-job-error-title]'), 'No error message yet');
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await click('[data-test-force-launch]');
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
assert.equal(
|
|
|
|
find('[data-test-job-error-title]').textContent,
|
|
|
|
'Could Not Force Launch',
|
|
|
|
'Appropriate error is shown'
|
|
|
|
);
|
|
|
|
assert.ok(
|
|
|
|
find('[data-test-job-error-body]').textContent.includes('ACL'),
|
|
|
|
'The error message mentions ACLs'
|
|
|
|
);
|
2018-03-21 00:44:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await click('[data-test-job-error-close]');
|
2018-02-02 02:54:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
assert.notOk(find('[data-test-job-error-title]'), 'Error message is dismissable');
|
2018-04-19 18:13:23 +00:00
|
|
|
});
|
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
test('Stopping a job sends a delete request for the job', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
const mirageJob = this.server.create('job', 'periodic', {
|
|
|
|
childrenCount: 0,
|
|
|
|
createAllocations: false,
|
|
|
|
status: 'running',
|
|
|
|
});
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
let job;
|
2019-07-23 19:40:32 +00:00
|
|
|
await this.store.findAll('job');
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
job = this.store.peekAll('job').findBy('plainId', mirageJob.id);
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
this.setProperties(commonProperties(job));
|
|
|
|
await render(commonTemplate);
|
|
|
|
await stopJob();
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
expectDeleteRequest(assert, this.server, job);
|
2018-04-19 18:13:23 +00:00
|
|
|
});
|
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
test('Stopping a job without proper permissions shows an error message', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
this.server.pretender.delete('/v1/job/:id', () => [403, {}, null]);
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
const mirageJob = this.server.create('job', 'periodic', {
|
|
|
|
childrenCount: 0,
|
|
|
|
createAllocations: false,
|
|
|
|
status: 'running',
|
|
|
|
});
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await this.store.findAll('job');
|
2018-04-19 18:13:23 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const job = this.store.peekAll('job').findBy('plainId', mirageJob.id);
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
this.setProperties(commonProperties(job));
|
|
|
|
await render(commonTemplate);
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await stopJob();
|
|
|
|
expectError(assert, 'Could Not Stop Job');
|
2018-08-24 20:18:10 +00:00
|
|
|
});
|
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
test('Starting a job sends a post request for the job using the current definition', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
const mirageJob = this.server.create('job', 'periodic', {
|
|
|
|
childrenCount: 0,
|
|
|
|
createAllocations: false,
|
|
|
|
status: 'dead',
|
|
|
|
});
|
2019-07-23 19:40:32 +00:00
|
|
|
await this.store.findAll('job');
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const job = this.store.peekAll('job').findBy('plainId', mirageJob.id);
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
this.setProperties(commonProperties(job));
|
|
|
|
await render(commonTemplate);
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await startJob();
|
|
|
|
expectStartRequest(assert, this.server, job);
|
2018-08-24 20:18:10 +00:00
|
|
|
});
|
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
test('Starting a job without proper permissions shows an error message', async function(assert) {
|
2019-03-13 00:04:16 +00:00
|
|
|
this.server.pretender.post('/v1/job/:id', () => [403, {}, null]);
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-03-13 00:04:16 +00:00
|
|
|
const mirageJob = this.server.create('job', 'periodic', {
|
|
|
|
childrenCount: 0,
|
|
|
|
createAllocations: false,
|
|
|
|
status: 'dead',
|
|
|
|
});
|
2019-07-23 19:40:32 +00:00
|
|
|
await this.store.findAll('job');
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
const job = this.store.peekAll('job').findBy('plainId', mirageJob.id);
|
2018-08-24 20:18:10 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
this.setProperties(commonProperties(job));
|
|
|
|
await render(commonTemplate);
|
2019-03-13 00:04:16 +00:00
|
|
|
|
2019-07-23 19:40:32 +00:00
|
|
|
await startJob();
|
|
|
|
expectError(assert, 'Could Not Start Job');
|
2019-03-13 00:04:16 +00:00
|
|
|
});
|
2018-02-02 02:54:23 +00:00
|
|
|
});
|