open-vault/ui/tests/acceptance/not-found-test.js
Angel Garbarino 993f30618e
Addressing various Ember depreciations required for 4.0 (#14532)
* remove Ember Logger

* remove jquery

* prevent setting ember string methods on string

* remove reopen class

* Revert "remove reopen class"

This reverts commit d6a48f148617694cf7b0fc95feb30771ef982c59.

* redo

* clean up

* fix test

* Update ui/app/styles/components/tabs.scss

Co-authored-by: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com>

* fix test

* test clean up

* clean up cont.

Co-authored-by: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com>
2022-03-16 18:36:48 -06:00

50 lines
1.7 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;
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;
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');
});
});