-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Expand file tree
/
Copy pathaccess-test.js
More file actions
83 lines (73 loc) · 2.53 KB
/
access-test.js
File metadata and controls
83 lines (73 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
import { stubFeaturesAndPermissions } from 'vault/tests/helpers/components/sidebar-nav';
import { setRunOptions } from 'ember-a11y-testing/test-support';
const renderComponent = () => {
return render(hbs`
<Sidebar::Frame @isVisible={{true}}>
<Sidebar::Nav::Access />
</Sidebar::Frame>
`);
};
module('Integration | Component | sidebar-nav-access', function (hooks) {
setupRenderingTest(hooks);
hooks.beforeEach(function () {
setRunOptions({
rules: {
// This is an issue with Hds::SideNav::Header::HomeLink
'aria-prohibited-attr': { enabled: false },
// TODO: fix use Dropdown on user-menu
'nested-interactive': { enabled: false },
},
});
});
test('it should render nav headings', async function (assert) {
const headings = ['Authentication', 'Access Control', 'Organization', 'Administration'];
stubFeaturesAndPermissions(this.owner);
await renderComponent();
assert
.dom('[data-test-sidebar-nav-heading]')
.exists({ count: headings.length }, 'Correct number of headings render');
headings.forEach((heading) => {
assert
.dom(`[data-test-sidebar-nav-heading="${heading}"]`)
.hasText(heading, `${heading} heading renders`);
});
});
test('it should hide links and headings user does not have access to', async function (assert) {
await renderComponent();
assert
.dom('[data-test-sidebar-nav-link]')
.exists({ count: 1 }, 'Nav links are hidden other than back link');
assert
.dom('[data-test-sidebar-nav-heading]')
.doesNotExist('Headings are hidden when user does not have access to links');
});
test('it should render nav links', async function (assert) {
const links = [
'Back to main navigation',
'Authentication Methods',
'Multi-Factor Authentication',
'OIDC Provider',
'Control Groups',
'Namespaces',
'Groups',
'Entities',
'Leases',
];
stubFeaturesAndPermissions(this.owner);
await renderComponent();
assert
.dom('[data-test-sidebar-nav-link]')
.exists({ count: links.length }, 'Correct number of links render');
links.forEach((link) => {
assert.dom(`[data-test-sidebar-nav-link="${link}"]`).hasText(link, `${link} link renders`);
});
});
});