54 lines
1.8 KiB
JavaScript
54 lines
1.8 KiB
JavaScript
import { findAll, visit } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import authPage from 'vault/tests/pages/auth';
|
|
import logout from 'vault/tests/pages/logout';
|
|
import Ember from 'ember';
|
|
|
|
let adapterException;
|
|
let loggerError;
|
|
|
|
module('Acceptance | not-found', function(hooks) {
|
|
setupApplicationTest(hooks);
|
|
|
|
hooks.beforeEach(function() {
|
|
loggerError = Ember.Logger.error;
|
|
adapterException = Ember.Test.adapter.exception;
|
|
Ember.Test.adapter.exception = () => {};
|
|
Ember.Logger.error = () => {};
|
|
return authPage.login();
|
|
});
|
|
|
|
hooks.afterEach(function() {
|
|
Ember.Test.adapter.exception = adapterException;
|
|
Ember.Logger.error = loggerError;
|
|
return logout.visit();
|
|
});
|
|
|
|
test('top-level not-found', async function(assert) {
|
|
await visit('/404');
|
|
assert.ok(findAll('[data-test-not-found]').length, 'renders the not found component');
|
|
assert.ok(
|
|
findAll('[data-test-header-without-nav]').length,
|
|
'renders the not found component with a header'
|
|
);
|
|
});
|
|
|
|
test('vault route not-found', async function(assert) {
|
|
await visit('/vault/404');
|
|
assert.dom('[data-test-not-found]').exists('renders the not found component');
|
|
assert.ok(findAll('[data-test-header-with-nav]').length, 'renders header with nav');
|
|
});
|
|
|
|
test('cluster route not-found', async function(assert) {
|
|
await visit('/vault/secrets/secret/404/show');
|
|
assert.dom('[data-test-not-found]').exists('renders the not found component');
|
|
assert.ok(findAll('[data-test-header-with-nav]').length, 'renders header with nav');
|
|
});
|
|
|
|
test('secret not-found', async function(assert) {
|
|
await visit('/vault/secrets/secret/show/404');
|
|
assert.dom('[data-test-secret-not-found]').exists('renders the message about the secret not being found');
|
|
});
|
|
});
|