deb.open-vault/ui/tests/unit/adapters/pki/action-test.js

261 lines
8.8 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { module, test } from 'qunit';
import { setupTest } from 'vault/tests/helpers';
import { setupMirage } from 'ember-cli-mirage/test-support';
import { allowAllCapabilitiesStub } from 'vault/tests/helpers/stubs';
import { rootPem } from 'vault/tests/helpers/pki/values';
module('Unit | Adapter | pki/action', function (hooks) {
setupTest(hooks);
setupMirage(hooks);
hooks.beforeEach(function () {
this.store = this.owner.lookup('service:store');
this.secretMountPath = this.owner.lookup('service:secret-mount-path');
this.backend = 'pki-test';
this.secretMountPath.currentPath = this.backend;
this.server.post('/sys/capabilities-self', allowAllCapabilitiesStub());
this.emptyResponse = {
// Action adapter uses request_id as ember data id for response
request_id: '123',
data: {},
};
});
test('it exists', function (assert) {
const adapter = this.owner.lookup('adapter:pki/action');
assert.ok(adapter);
});
module('actionType import', function (hooks) {
hooks.beforeEach(function () {
this.payload = {
pem_bundle: rootPem,
};
});
test('it calls the correct endpoint when useIssuer = false', async function (assert) {
assert.expect(1);
this.server.post(`${this.backend}/config/ca`, () => {
assert.ok(true, 'request made to correct endpoint on create');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', this.payload)
.save({ adapterOptions: { actionType: 'import', useIssuer: false } });
});
test('it calls the correct endpoint when useIssuer = true', async function (assert) {
assert.expect(1);
this.server.post(`${this.backend}/issuers/import/bundle`, () => {
assert.ok(true, 'request made to correct endpoint on create');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', this.payload)
.save({ adapterOptions: { actionType: 'import', useIssuer: true } });
});
});
module('actionType generate-root', function () {
test('it calls the correct endpoint when useIssuer = false', async function (assert) {
assert.expect(4);
const adapterOptions = { adapterOptions: { actionType: 'generate-root', useIssuer: false } };
this.server.post(`${this.backend}/root/generate/internal`, () => {
assert.ok(true, 'request made correctly when type = internal');
return this.emptyResponse;
});
this.server.post(`${this.backend}/root/generate/exported`, () => {
assert.ok(true, 'request made correctly when type = exported');
return this.emptyResponse;
});
this.server.post(`${this.backend}/root/generate/existing`, () => {
assert.ok(true, 'request made correctly when type = exising');
return this.emptyResponse;
});
this.server.post(`${this.backend}/root/generate/kms`, () => {
assert.ok(true, 'request made correctly when type = kms');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', {
type: 'internal',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'exported',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'existing',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'kms',
})
.save(adapterOptions);
});
test('it calls the correct endpoint when useIssuer = true', async function (assert) {
assert.expect(4);
const adapterOptions = { adapterOptions: { actionType: 'generate-root', useIssuer: true } };
this.server.post(`${this.backend}/issuers/generate/root/internal`, () => {
assert.ok(true, 'request made correctly when type = internal');
return this.emptyResponse;
});
this.server.post(`${this.backend}/issuers/generate/root/exported`, () => {
assert.ok(true, 'request made correctly when type = exported');
return this.emptyResponse;
});
this.server.post(`${this.backend}/issuers/generate/root/existing`, () => {
assert.ok(true, 'request made correctly when type = exising');
return this.emptyResponse;
});
this.server.post(`${this.backend}/issuers/generate/root/kms`, () => {
assert.ok(true, 'request made correctly when type = kms');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', {
type: 'internal',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'exported',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'existing',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'kms',
})
.save(adapterOptions);
});
});
module('actionType generate-csr', function () {
test('it calls the correct endpoint when useIssuer = false', async function (assert) {
assert.expect(4);
const adapterOptions = { adapterOptions: { actionType: 'generate-csr', useIssuer: false } };
this.server.post(`${this.backend}/intermediate/generate/internal`, () => {
assert.ok(true, 'request made correctly when type = internal');
return this.emptyResponse;
});
this.server.post(`${this.backend}/intermediate/generate/exported`, () => {
assert.ok(true, 'request made correctly when type = exported');
return this.emptyResponse;
});
this.server.post(`${this.backend}/intermediate/generate/existing`, () => {
assert.ok(true, 'request made correctly when type = exising');
return this.emptyResponse;
});
this.server.post(`${this.backend}/intermediate/generate/kms`, () => {
assert.ok(true, 'request made correctly when type = kms');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', {
type: 'internal',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'exported',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'existing',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'kms',
})
.save(adapterOptions);
});
test('it calls the correct endpoint when useIssuer = true', async function (assert) {
assert.expect(4);
const adapterOptions = { adapterOptions: { actionType: 'generate-csr', useIssuer: true } };
this.server.post(`${this.backend}/issuers/generate/intermediate/internal`, () => {
assert.ok(true, 'request made correctly when type = internal');
return this.emptyResponse;
});
this.server.post(`${this.backend}/issuers/generate/intermediate/exported`, () => {
assert.ok(true, 'request made correctly when type = exported');
return this.emptyResponse;
});
this.server.post(`${this.backend}/issuers/generate/intermediate/existing`, () => {
assert.ok(true, 'request made correctly when type = exising');
return this.emptyResponse;
});
this.server.post(`${this.backend}/issuers/generate/intermediate/kms`, () => {
assert.ok(true, 'request made correctly when type = kms');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', {
type: 'internal',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'exported',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'existing',
})
.save(adapterOptions);
await this.store
.createRecord('pki/action', {
type: 'kms',
})
.save(adapterOptions);
});
});
module('actionType sign-intermediate', function () {
test('it overrides backend when adapter options specify a mount', async function (assert) {
assert.expect(1);
const mount = 'foo';
const issuerRef = 'ref';
const adapterOptions = {
adapterOptions: { actionType: 'sign-intermediate', mount, issuerRef },
};
this.server.post(`${mount}/issuer/${issuerRef}/sign-intermediate`, () => {
assert.ok(true, 'request made to correct mount');
return this.emptyResponse;
});
await this.store
.createRecord('pki/action', {
csr: '---BEGIN REQUEST---',
})
.save(adapterOptions);
});
});
});