open-vault/ui/tests/acceptance/policy/show-test.js

24 lines
906 B
JavaScript

import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import page from 'vault/tests/pages/policy/show';
import authPage from 'vault/tests/pages/auth';
module('Acceptance | policy/acl/:name', function(hooks) {
setupApplicationTest(hooks);
hooks.beforeEach(function() {
return authPage.login();
});
test('it redirects to list if navigating to root', async function(assert) {
await page.visit({ type: 'acl', name: 'root' });
assert.equal(currentURL(), '/vault/policies/acl', 'navigation to root show redirects you to policy list');
});
test('it navigates to edit when the toggle is clicked', async function(assert) {
await page.visit({ type: 'acl', name: 'default' }).toggleEdit();
assert.equal(currentURL(), '/vault/policy/acl/default/edit', 'toggle navigates to edit page');
});
});