mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-14 18:47:01 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
111 lines
3.5 KiB
JavaScript
111 lines
3.5 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'vault/tests/helpers';
|
|
import { click, fillIn, render } from '@ember/test-helpers';
|
|
import { hbs } from 'ember-cli-htmlbars';
|
|
|
|
const SELECTORS = {
|
|
createForm: '[data-test-transit-create-form]',
|
|
editForm: '[data-test-transit-edit-form]',
|
|
ttlToggle: '[data-test-ttl-toggle="Auto-rotation period"]',
|
|
ttlValue: '[data-test-ttl-value="Auto-rotation period"]',
|
|
};
|
|
module('Integration | Component | transit-edit', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
this.store = this.owner.lookup('service:store');
|
|
this.model = this.store.createRecord('transit-key');
|
|
this.backendCrumb = {
|
|
label: 'transit',
|
|
text: 'transit',
|
|
path: 'vault.cluster.secrets.backend.list-root',
|
|
model: 'transit',
|
|
};
|
|
});
|
|
|
|
test('it renders in create mode and updates model', async function (assert) {
|
|
await render(hbs`
|
|
<TransitEdit
|
|
@key={{this.model}}
|
|
@model={{this.model}}
|
|
@mode="create"
|
|
@root={{this.backendCrumb}}
|
|
@preferAdvancedEdit={{false}}
|
|
/>`);
|
|
|
|
assert.dom(SELECTORS.createForm).exists();
|
|
assert.dom(SELECTORS.ttlToggle).isNotChecked();
|
|
|
|
// confirm model params update when ttl changes
|
|
assert.strictEqual(this.model.autoRotatePeriod, '0');
|
|
await click(SELECTORS.ttlToggle);
|
|
|
|
assert.dom(SELECTORS.ttlValue).hasValue('30'); // 30 days
|
|
assert.strictEqual(this.model.autoRotatePeriod, '720h');
|
|
|
|
await fillIn(SELECTORS.ttlValue, '10'); // 10 days
|
|
assert.strictEqual(this.model.autoRotatePeriod, '240h');
|
|
});
|
|
|
|
test('it renders edit form correctly when key has autoRotatePeriod=0', async function (assert) {
|
|
this.model.autoRotatePeriod = 0;
|
|
this.model.keys = {
|
|
1: 1684882652000,
|
|
};
|
|
await render(hbs`
|
|
<TransitEdit
|
|
@key={{this.model}}
|
|
@model={{this.model}}
|
|
@mode="edit"
|
|
@root={{this.backendCrumb}}
|
|
@preferAdvancedEdit={{false}}
|
|
/>`);
|
|
|
|
assert.dom(SELECTORS.editForm).exists();
|
|
assert.dom(SELECTORS.ttlToggle).isNotChecked();
|
|
|
|
assert.strictEqual(this.model.autoRotatePeriod, 0);
|
|
|
|
await click(SELECTORS.ttlToggle);
|
|
assert.dom(SELECTORS.ttlToggle).isChecked();
|
|
assert.dom(SELECTORS.ttlValue).hasValue('30');
|
|
assert.strictEqual(this.model.autoRotatePeriod, '720h', 'model value changes with toggle');
|
|
|
|
await click(SELECTORS.ttlToggle);
|
|
assert.strictEqual(this.model.autoRotatePeriod, 0); // reverts to original value when toggled back on
|
|
});
|
|
|
|
test('it renders edit form correctly when key has non-zero rotation period', async function (assert) {
|
|
this.model.autoRotatePeriod = '5h';
|
|
this.model.keys = {
|
|
1: 1684882652000,
|
|
};
|
|
await render(hbs`
|
|
<TransitEdit
|
|
@key={{this.model}}
|
|
@model={{this.model}}
|
|
@mode="edit"
|
|
@root={{this.backendCrumb}}
|
|
@preferAdvancedEdit={{false}}
|
|
/>`);
|
|
|
|
assert.dom(SELECTORS.editForm).exists();
|
|
assert.dom(SELECTORS.ttlToggle).isChecked();
|
|
|
|
await click(SELECTORS.ttlToggle);
|
|
assert.dom(SELECTORS.ttlToggle).isNotChecked();
|
|
assert.strictEqual(this.model.autoRotatePeriod, 0, 'model value changes back to 0 when toggled off');
|
|
|
|
await click(SELECTORS.ttlToggle);
|
|
assert.strictEqual(this.model.autoRotatePeriod, '5h'); // reverts to original value when toggled back on
|
|
|
|
await fillIn(SELECTORS.ttlValue, '10');
|
|
assert.strictEqual(this.model.autoRotatePeriod, '10h');
|
|
});
|
|
});
|