open-nomad/ui/tests/acceptance/application-errors-test.js

57 lines
1.4 KiB
JavaScript
Raw Normal View History

import { find, visit } from 'ember-native-dom-helpers';
import moduleForAcceptance from 'nomad-ui/tests/helpers/module-for-acceptance';
import { test } from 'qunit';
moduleForAcceptance('Acceptance | application errors ', {
beforeEach() {
server.create('agent');
server.create('node');
server.create('job');
},
});
test('transitioning away from an error page resets the global error', function(assert) {
server.pretender.get('/v1/nodes', () => [500, {}, null]);
2017-10-28 01:23:41 +00:00
visit('/clients');
andThen(() => {
assert.ok(find('[data-test-error]'), 'Application has errored');
});
visit('/jobs');
andThen(() => {
assert.notOk(find('[data-test-error]'), 'Application is no longer in an error state');
});
});
test('the 403 error page links to the ACL tokens page', function(assert) {
const job = server.db.jobs[0];
server.pretender.get(`/v1/job/${job.id}`, () => [403, {}, null]);
visit(`/jobs/${job.id}`);
andThen(() => {
assert.ok(find('[data-test-error]'), 'Error message is shown');
assert.equal(
find('[data-test-error] .title').textContent,
'Not Authorized',
'Error message is for 403'
);
});
andThen(() => {
click('[data-test-error-acl-link]');
});
andThen(() => {
assert.equal(
currentURL(),
'/settings/tokens',
'Error message contains a link to the tokens page'
);
});
});