2018-09-25 16:28:26 +00:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
|
|
import { render, find, settled } from '@ember/test-helpers';
|
2018-07-13 02:35:58 +00:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
module('Integration | Component | secret edit', function(hooks) {
|
|
|
|
setupRenderingTest(hooks);
|
2018-07-13 02:35:58 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
hooks.beforeEach(function() {
|
|
|
|
this.codeMirror = this.owner.lookup('service:code-mirror');
|
2018-07-13 02:35:58 +00:00
|
|
|
});
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
test('it disables JSON toggle in show mode when is an advanced format', async function(assert) {
|
|
|
|
this.set('mode', 'show');
|
|
|
|
this.set('key', {
|
|
|
|
secretData: {
|
|
|
|
int: 2,
|
|
|
|
null: null,
|
|
|
|
float: 1.234,
|
|
|
|
},
|
|
|
|
});
|
2018-07-13 02:35:58 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
await render(hbs`{{secret-edit mode=mode key=key }}`);
|
|
|
|
assert.dom('[data-test-secret-json-toggle]').isDisabled();
|
2018-07-13 02:35:58 +00:00
|
|
|
});
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
test('it does JSON toggle in show mode when showing string data', async function(assert) {
|
|
|
|
this.set('mode', 'show');
|
|
|
|
this.set('key', {
|
|
|
|
secretData: {
|
|
|
|
int: '2',
|
|
|
|
null: 'null',
|
|
|
|
float: '1.234',
|
|
|
|
},
|
|
|
|
});
|
2018-09-05 16:07:39 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
await render(hbs`{{secret-edit mode=mode key=key }}`);
|
|
|
|
assert.dom('[data-test-secret-json-toggle]').isNotDisabled();
|
2018-09-05 16:07:39 +00:00
|
|
|
});
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
test('it shows an error when creating and data is not an object', async function(assert) {
|
|
|
|
this.set('mode', 'create');
|
|
|
|
this.set('key', {
|
|
|
|
secretData: {
|
|
|
|
int: '2',
|
|
|
|
null: 'null',
|
|
|
|
float: '1.234',
|
|
|
|
},
|
|
|
|
});
|
2018-09-05 16:07:39 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
await render(hbs`{{secret-edit mode=mode key=key preferAdvancedEdit=true }}`);
|
|
|
|
let instance = this.codeMirror.instanceFor(find('[data-test-component=json-editor]').id);
|
|
|
|
instance.setValue(JSON.stringify([{ foo: 'bar' }]));
|
|
|
|
await settled();
|
|
|
|
assert.dom('[data-test-error]').includesText('Vault expects data to be formatted as an JSON object');
|
2018-09-05 16:07:39 +00:00
|
|
|
});
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
test('it shows an error when editing and the data is not an object', async function(assert) {
|
|
|
|
this.set('mode', 'edit');
|
|
|
|
this.set('capabilities', {
|
|
|
|
canUpdate: true,
|
|
|
|
});
|
|
|
|
this.set('key', {
|
|
|
|
secretData: {
|
|
|
|
int: '2',
|
|
|
|
null: 'null',
|
|
|
|
float: '1.234',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await render(hbs`{{secret-edit capabilities=capabilities mode=mode key=key preferAdvancedEdit=true }}`);
|
|
|
|
let instance = this.codeMirror.instanceFor(find('[data-test-component=json-editor]').id);
|
|
|
|
instance.setValue(JSON.stringify([{ foo: 'bar' }]));
|
|
|
|
await settled();
|
|
|
|
assert.dom('[data-test-error]').includesText('Vault expects data to be formatted as an JSON object');
|
|
|
|
});
|
2018-09-05 16:07:39 +00:00
|
|
|
});
|