mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-12-28 00:05:25 +00:00
* redirect for deshow/details view * test coverage * not found test fix * changelog * test fixes and amend for create route with no secret * handle router with no secret * add more coverage * Update 24339.txt * Update secret-edit.js * Update secret-edit.js * restructure conditional because list-directory will never be a thing in this view * Update secret-edit.js * remove show for directory. that doesn't exists * blah fix test * fix conditional * remove meep
52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { visit } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import authPage from 'vault/tests/pages/auth';
|
|
import Ember from 'ember';
|
|
|
|
let adapterException;
|
|
|
|
module('Acceptance | not-found', function (hooks) {
|
|
setupApplicationTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
adapterException = Ember.Test.adapter.exception;
|
|
Ember.Test.adapter.exception = () => {};
|
|
return authPage.login();
|
|
});
|
|
|
|
hooks.afterEach(function () {
|
|
Ember.Test.adapter.exception = adapterException;
|
|
});
|
|
|
|
test('top-level not-found', async function (assert) {
|
|
await visit('/404');
|
|
assert
|
|
.dom('[data-test-error-description]')
|
|
.hasText(
|
|
'Sorry, we were unable to find any content at that URL. Double check it or go back home.',
|
|
'renders cluster error template'
|
|
);
|
|
});
|
|
|
|
test('vault route not-found', async function (assert) {
|
|
await visit('/vault/404');
|
|
assert.dom('[data-test-not-found]').exists('renders the not found component');
|
|
});
|
|
|
|
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');
|
|
});
|
|
|
|
test('secret not-found', async function (assert) {
|
|
await visit('/vault/secrets/cubbyhole/show/404');
|
|
assert.dom('[data-test-secret-not-found]').exists('renders the message about the secret not being found');
|
|
});
|
|
});
|