b32da5daad
* add ember-concurrency-test-waiter * use withTestWaiter modifier in various parts of the application * more withTestWaiter * await instead of return for a few helpers * update ember-cli-flash * run ember generate ember-cli-flash * remove withFlash helper * fix typo and replication tests
27 lines
962 B
JavaScript
27 lines
962 B
JavaScript
import { currentRouteName } from '@ember/test-helpers';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import mountSecrets from 'vault/tests/pages/settings/mount-secret-backend';
|
|
import backendsPage from 'vault/tests/pages/secrets/backends';
|
|
import authPage from 'vault/tests/pages/auth';
|
|
|
|
module('Acceptance | gcpkms/enable', function(hooks) {
|
|
setupApplicationTest(hooks);
|
|
|
|
hooks.beforeEach(function() {
|
|
return authPage.login();
|
|
});
|
|
|
|
test('enable gcpkms', async function(assert) {
|
|
let enginePath = `gcpkms-${new Date().getTime()}`;
|
|
await mountSecrets.visit();
|
|
await mountSecrets.selectType('gcpkms');
|
|
await mountSecrets
|
|
.next()
|
|
.path(enginePath)
|
|
.submit();
|
|
assert.equal(currentRouteName(), 'vault.cluster.secrets.backends', 'redirects to the backends page');
|
|
assert.ok(backendsPage.rows.filterBy('path', `${enginePath}/`)[0], 'shows the gcpkms engine');
|
|
});
|
|
});
|