mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-30 18:17:55 +00:00
* change currentPage to page to be consistent * replace pagination in listview and always show pagination * wip * fix query param issue * access identity aliases index * leases done and dusted * policies and secrets backend * remove list Pagination * changelog
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { currentRouteName } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
import page from 'vault/tests/pages/access/namespaces/index';
|
|
import authPage from 'vault/tests/pages/auth';
|
|
|
|
module('Acceptance | Enterprise | /access/namespaces', function (hooks) {
|
|
setupApplicationTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
return authPage.login();
|
|
});
|
|
|
|
test('it navigates to namespaces page', async function (assert) {
|
|
assert.expect(1);
|
|
await page.visit();
|
|
assert.strictEqual(
|
|
currentRouteName(),
|
|
'vault.cluster.access.namespaces.index',
|
|
'navigates to the correct route'
|
|
);
|
|
});
|
|
|
|
test('it should render correct number of namespaces', async function (assert) {
|
|
assert.expect(3);
|
|
await page.visit();
|
|
const store = this.owner.lookup('service:store');
|
|
// Default page size is 15
|
|
assert.strictEqual(store.peekAll('namespace').length, 15, 'Store has 15 namespaces records');
|
|
assert.dom('.list-item-row').exists({ count: 15 });
|
|
assert.dom('.hds-pagination').exists();
|
|
});
|
|
});
|