mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 12:37:02 +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>
95 lines
3.6 KiB
JavaScript
95 lines
3.6 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { render } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import { create } from 'ember-cli-page-object';
|
|
import kvObjectEditor from '../../pages/components/kv-object-editor';
|
|
|
|
import sinon from 'sinon';
|
|
const component = create(kvObjectEditor);
|
|
|
|
module('Integration | Component | kv-object-editor', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
this.spy = sinon.spy();
|
|
});
|
|
|
|
test('it renders with no initial value', async function (assert) {
|
|
await render(hbs`{{kv-object-editor onChange=this.spy}}`);
|
|
assert.strictEqual(component.rows.length, 1, 'renders a single row');
|
|
await component.addRow();
|
|
assert.strictEqual(component.rows.length, 1, 'will only render row with a blank key');
|
|
});
|
|
|
|
test('it calls onChange when the val changes', async function (assert) {
|
|
await render(hbs`{{kv-object-editor onChange=this.spy}}`);
|
|
await component.rows.objectAt(0).kvKey('foo').kvVal('bar');
|
|
assert.strictEqual(this.spy.callCount, 2, 'calls onChange each time change is triggered');
|
|
assert.deepEqual(
|
|
this.spy.lastCall.args[0],
|
|
{ foo: 'bar' },
|
|
'calls onChange with the JSON respresentation of the data'
|
|
);
|
|
await component.addRow();
|
|
assert.strictEqual(component.rows.length, 2, 'adds a row when there is no blank one');
|
|
});
|
|
|
|
test('it renders passed data', async function (assert) {
|
|
const metadata = { foo: 'bar', baz: 'bop' };
|
|
this.set('value', metadata);
|
|
await render(hbs`{{kv-object-editor value=this.value}}`);
|
|
assert.strictEqual(
|
|
component.rows.length,
|
|
Object.keys(metadata).length + 1,
|
|
'renders both rows of the metadata, plus an empty one'
|
|
);
|
|
});
|
|
|
|
test('it deletes a row', async function (assert) {
|
|
await render(hbs`{{kv-object-editor onChange=this.spy}}`);
|
|
await component.rows.objectAt(0).kvKey('foo').kvVal('bar');
|
|
await component.addRow();
|
|
assert.strictEqual(component.rows.length, 2);
|
|
assert.strictEqual(this.spy.callCount, 2, 'calls onChange for editing');
|
|
await component.rows.objectAt(0).deleteRow();
|
|
|
|
assert.strictEqual(component.rows.length, 1, 'only the blank row left');
|
|
assert.strictEqual(this.spy.callCount, 3, 'calls onChange deleting row');
|
|
assert.deepEqual(this.spy.lastCall.args[0], {}, 'last call to onChange is an empty object');
|
|
});
|
|
|
|
test('it shows a warning if there are duplicate keys', async function (assert) {
|
|
const metadata = { foo: 'bar', baz: 'bop' };
|
|
this.set('value', metadata);
|
|
await render(hbs`{{kv-object-editor value=this.value onChange=this.spy}}`);
|
|
await component.rows.objectAt(0).kvKey('foo');
|
|
|
|
assert.ok(component.showsDuplicateError, 'duplicate keys are allowed but an error message is shown');
|
|
});
|
|
|
|
test('it supports custom placeholders', async function (assert) {
|
|
await render(hbs`<KvObjectEditor @keyPlaceholder="foo" @valuePlaceholder="bar" />`);
|
|
assert.dom('input').hasAttribute('placeholder', 'foo', 'Placeholder applied to key input');
|
|
assert.dom('textarea').hasAttribute('placeholder', 'bar', 'Placeholder applied to value input');
|
|
});
|
|
|
|
test('it yields block in place of value input', async function (assert) {
|
|
await render(
|
|
hbs`
|
|
<KvObjectEditor>
|
|
<span data-test-yield></span>
|
|
</KvObjectEditor>
|
|
`
|
|
);
|
|
assert.dom('textarea').doesNotExist('Value input hidden when block is provided');
|
|
assert.dom('[data-test-yield]').exists('Component yields block');
|
|
});
|
|
});
|