be632db682
* runs ember-cli-update to 4.4.0 * updates yarn.lock * updates dependencies causing runtime errors (#17135) * Inject Store Service When Accessed Implicitly (#17345) * adds codemod for injecting store service * adds custom babylon parser with decorators-legacy plugin for jscodeshift transforms * updates inject-store-service codemod to only look for .extend object expressions and adds recast options * runs inject-store-service codemod on js files * replace query-params helper with hash (#17404) * Updates/removes dependencies throwing errors in Ember 4.4 (#17396) * updates ember-responsive to latest * updates ember-composable-helpers to latest and uses includes helper since contains was removed * updates ember-concurrency to latest * updates ember-cli-clipboard to latest * temporary workaround for toolbar-link component throwing errors for using params arg with LinkTo * adds missing store injection to auth configure route * fixes issue with string-list component throwing error for accessing prop in same computation * fixes non-iterable query params issue in mfa methods controller * refactors field-to-attrs to handle belongsTo rather than fragments * converts mount-config fragment to belongsTo on auth-method model * removes ember-api-actions and adds tune method to auth-method adapter * converts cluster replication attributes from fragment to relationship * updates ember-data, removes ember-data-fragments and updates yarn to latest * removes fragments from secret-engine model * removes fragment from test-form-model * removes commented out code * minor change to inject-store-service codemod and runs again on js files * Remove LinkTo positional params (#17421) * updates ember-cli-page-object to latest version * update toolbar-link to support link-to args and not positional params * adds replace arg to toolbar-link component * Clean up js lint errors (#17426) * replaces assert.equal to assert.strictEqual * update eslint no-console to error and disables invididual intended uses of console * cleans up hbs lint warnings (#17432) * Upgrade bug and test fixes (#17500) * updates inject-service codemod to take arg for service name and runs for flashMessages service * fixes hbs lint error after merging main * fixes flash messages * updates more deps * bug fixes * test fixes * updates ember-cli-content-security-policy and prevents default form submission throwing errors * more bug and test fixes * removes commented out code * fixes issue with code-mirror modifier sending change event on setup causing same computation error * Upgrade Clean Up (#17543) * updates deprecation workflow and filter * cleans up build errors, removes unused ivy-codemirror and sass and updates ember-cli-sass and node-sass to latest * fixes control groups test that was skipped after upgrade * updates control group service tests * addresses review feedback * updates control group service handleError method to use router.currentURL rather that transition.intent.url * adds changelog entry
169 lines
5.8 KiB
JavaScript
169 lines
5.8 KiB
JavaScript
import { click, fillIn, find, findAll, currentURL, visit, settled, waitUntil } from '@ember/test-helpers';
|
|
import Pretender from 'pretender';
|
|
import { module, test } from 'qunit';
|
|
import { setupApplicationTest } from 'ember-qunit';
|
|
import { toolsActions } from 'vault/helpers/tools-actions';
|
|
import authPage from 'vault/tests/pages/auth';
|
|
import logout from 'vault/tests/pages/logout';
|
|
|
|
module('Acceptance | tools', function (hooks) {
|
|
setupApplicationTest(hooks);
|
|
|
|
hooks.beforeEach(function () {
|
|
return authPage.login();
|
|
});
|
|
|
|
hooks.afterEach(function () {
|
|
return logout.visit();
|
|
});
|
|
|
|
const DATA_TO_WRAP = JSON.stringify({ tools: 'tests' });
|
|
const TOOLS_ACTIONS = toolsActions();
|
|
|
|
/*
|
|
data-test-tools-input="wrapping-token"
|
|
data-test-tools-input="rewrapped-token"
|
|
data-test-tools="token-lookup-row"
|
|
data-test-tools-action-link=supportedAction
|
|
*/
|
|
|
|
var createTokenStore = () => {
|
|
let token;
|
|
return {
|
|
set(val) {
|
|
token = val;
|
|
},
|
|
get() {
|
|
return token;
|
|
},
|
|
};
|
|
};
|
|
test('tools functionality', async function (assert) {
|
|
var tokenStore = createTokenStore();
|
|
await visit('/vault/tools');
|
|
|
|
assert.strictEqual(currentURL(), '/vault/tools/wrap', 'forwards to the first action');
|
|
TOOLS_ACTIONS.forEach((action) => {
|
|
assert.dom(`[data-test-tools-action-link="${action}"]`).exists(`${action} link renders`);
|
|
});
|
|
|
|
const { CodeMirror } = await waitUntil(() => find('.CodeMirror'));
|
|
CodeMirror.setValue(DATA_TO_WRAP);
|
|
|
|
// wrap
|
|
await click('[data-test-tools-submit]');
|
|
const wrappedToken = await waitUntil(() => find('[data-test-tools-input="wrapping-token"]'));
|
|
tokenStore.set(wrappedToken.value);
|
|
assert
|
|
.dom('[data-test-tools-input="wrapping-token"]')
|
|
.hasValue(wrappedToken.value, 'has a wrapping token');
|
|
|
|
//lookup
|
|
await click('[data-test-tools-action-link="lookup"]');
|
|
|
|
await fillIn('[data-test-tools-input="wrapping-token"]', tokenStore.get());
|
|
await click('[data-test-tools-submit]');
|
|
await waitUntil(() => findAll('[data-test-tools="token-lookup-row"]').length >= 3);
|
|
const rows = findAll('[data-test-tools="token-lookup-row"]');
|
|
assert.dom(rows[0]).hasText(/Creation path/, 'show creation path row');
|
|
assert.dom(rows[1]).hasText(/Creation time/, 'show creation time row');
|
|
assert.dom(rows[2]).hasText(/Creation TTL/, 'show creation ttl row');
|
|
|
|
//rewrap
|
|
await click('[data-test-tools-action-link="rewrap"]');
|
|
|
|
await fillIn('[data-test-tools-input="wrapping-token"]', tokenStore.get());
|
|
await click('[data-test-tools-submit]');
|
|
const rewrappedToken = await waitUntil(() => find('[data-test-tools-input="rewrapped-token"]'));
|
|
assert.ok(rewrappedToken.value, 'has a new re-wrapped token');
|
|
assert.notEqual(rewrappedToken.value, tokenStore.get(), 're-wrapped token is not the wrapped token');
|
|
tokenStore.set(rewrappedToken.value);
|
|
await settled();
|
|
|
|
//unwrap
|
|
await click('[data-test-tools-action-link="unwrap"]');
|
|
|
|
await fillIn('[data-test-tools-input="wrapping-token"]', tokenStore.get());
|
|
await click('[data-test-tools-submit]');
|
|
assert.deepEqual(
|
|
JSON.parse(CodeMirror.getValue()),
|
|
JSON.parse(DATA_TO_WRAP),
|
|
'unwrapped data equals input data'
|
|
);
|
|
const buttonDetails = await waitUntil(() => find('[data-test-button-details]'));
|
|
await click(buttonDetails);
|
|
await click('[data-test-button-data]');
|
|
assert.dom('.CodeMirror').exists();
|
|
|
|
//random
|
|
await click('[data-test-tools-action-link="random"]');
|
|
|
|
assert.dom('[data-test-tools-input="bytes"]').hasValue('32', 'defaults to 32 bytes');
|
|
await click('[data-test-tools-submit]');
|
|
const randomBytes = await waitUntil(() => find('[data-test-tools-input="random-bytes"]'));
|
|
assert.ok(randomBytes.value, 'shows the returned value of random bytes');
|
|
|
|
//hash
|
|
await click('[data-test-tools-action-link="hash"]');
|
|
|
|
await fillIn('[data-test-tools-input="hash-input"]', 'foo');
|
|
await click('[data-test-transit-b64-toggle="input"]');
|
|
|
|
await click('[data-test-tools-submit]');
|
|
let sumInput = await waitUntil(() => find('[data-test-tools-input="sum"]'));
|
|
assert
|
|
.dom(sumInput)
|
|
.hasValue('LCa0a2j/xo/5m0U8HTBBNBNCLXBkg7+g+YpeiGJm564=', 'hashes the data, encodes input');
|
|
await click('[data-test-tools-back]');
|
|
|
|
await fillIn('[data-test-tools-input="hash-input"]', 'e2RhdGE6ImZvbyJ9');
|
|
|
|
await click('[data-test-tools-submit]');
|
|
sumInput = await waitUntil(() => find('[data-test-tools-input="sum"]'));
|
|
assert
|
|
.dom(sumInput)
|
|
.hasValue('JmSi2Hhbgu2WYOrcOyTqqMdym7KT3sohCwAwaMonVrc=', 'hashes the data, passes b64 input through');
|
|
});
|
|
|
|
const AUTH_RESPONSE = {
|
|
request_id: '39802bc4-235c-2f0b-87f3-ccf38503ac3e',
|
|
lease_id: '',
|
|
renewable: false,
|
|
lease_duration: 0,
|
|
data: null,
|
|
wrap_info: null,
|
|
warnings: null,
|
|
auth: {
|
|
client_token: 'ecfc2758-588e-981d-50f4-a25883bbf03c',
|
|
accessor: '6299780b-f2b2-1a3f-7b83-9d3d67629249',
|
|
policies: ['root'],
|
|
metadata: null,
|
|
lease_duration: 0,
|
|
renewable: false,
|
|
entity_id: '',
|
|
},
|
|
};
|
|
|
|
test('ensure unwrap with auth block works properly', async function (assert) {
|
|
this.server = new Pretender(function () {
|
|
this.post('/v1/sys/wrapping/unwrap', (response) => {
|
|
return [response, { 'Content-Type': 'application/json' }, JSON.stringify(AUTH_RESPONSE)];
|
|
});
|
|
});
|
|
await visit('/vault/tools');
|
|
|
|
//unwrap
|
|
await click('[data-test-tools-action-link="unwrap"]');
|
|
|
|
await fillIn('[data-test-tools-input="wrapping-token"]', 'sometoken');
|
|
await click('[data-test-tools-submit]');
|
|
|
|
assert.deepEqual(
|
|
JSON.parse(findAll('.CodeMirror')[0].CodeMirror.getValue()),
|
|
AUTH_RESPONSE.auth,
|
|
'unwrapped data equals input data'
|
|
);
|
|
this.server.shutdown();
|
|
});
|
|
});
|