Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI: Fix metadata tab not showing given policy #15824

Merged
merged 4 commits into from Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog/15824.txt
@@ -0,0 +1,3 @@
```release-note:bug
ui: Fix issue where metadata tab is hidden even though policy grants access
```
5 changes: 3 additions & 2 deletions ui/app/components/secret-edit.js
Expand Up @@ -78,8 +78,9 @@ export default class SecretEdit extends Component {
if (!context.args.model || !context.isV2) {
return;
}
let backend = context.args.model.backend;
let path = `${backend}/metadata/`;
const backend = context.args.model.backend;
const id = context.args.model.id;
const path = `${backend}/metadata/${id}`;
return {
id: path,
};
Expand Down
29 changes: 20 additions & 9 deletions ui/tests/acceptance/secrets/backend/kv/secret-test.js
Expand Up @@ -29,6 +29,18 @@ let writeSecret = async function (backend, path, key, val) {
return editPage.createSecret(path, key, val);
};

let deleteEngine = async function (enginePath, assert) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👏

await logout.visit();
await authPage.login();
await consoleComponent.runCommands([`delete sys/mounts/${enginePath}`]);
const response = consoleComponent.lastLogOutput;
assert.equal(
response,
`Success! Data deleted (if it existed) at: sys/mounts/${enginePath}`,
'Engine successfully deleted'
);
};

module('Acceptance | secrets/secret/create', function (hooks) {
setupApplicationTest(hooks);

Expand Down Expand Up @@ -528,18 +540,17 @@ module('Acceptance | secrets/secret/create', function (hooks) {
});

test('version 2 with no access to data but access to metadata shows metadata tab', async function (assert) {
assert.expect(5);
let enginePath = 'kv-metadata-access-only';
let secretPath = 'kv-metadata-access-only-secret-name';
let secretPath = 'nested/kv-metadata-access-only-secret-name';
const V2_POLICY = `
path "${enginePath}/metadata/*" {
capabilities = ["read", "update", "list"]
path "${enginePath}/metadata/nested/*" {
capabilities = ["read", "update"]
}
`;
await consoleComponent.runCommands([
`write sys/mounts/${enginePath} type=kv options=version=2`,
`write sys/policies/acl/kv-v2-degrade policy=${btoa(V2_POLICY)}`,
// delete any kv previously written here so that tests can be re-run
`delete ${enginePath}/metadata/${secretPath}`,
'write -field=client_token auth/token/create policies=kv-v2-degrade',
]);

Expand All @@ -548,15 +559,15 @@ module('Acceptance | secrets/secret/create', function (hooks) {
await logout.visit();
await authPage.login(userToken);
await settled();
await click(`[data-test-auth-backend-link=${enginePath}]`);

await click(`[data-test-secret-link="${secretPath}"]`);

await showPage.visit({ backend: enginePath, id: secretPath });
hashishaw marked this conversation as resolved.
Show resolved Hide resolved
assert.dom('[data-test-empty-state-title]').hasText('You do not have permission to read this secret.');
assert.dom('[data-test-secret-metadata-tab]').exists('Metadata tab exists');
await editPage.metadataTab();
await settled();
assert.dom('[data-test-empty-state-title]').hasText('No custom metadata');
assert.dom('[data-test-add-custom-metadata]').exists('it shows link to edit metadata');

await deleteEngine(enginePath, assert);
});

test('version 2: with metadata no read or list but with delete access and full access to the data endpoint', async function (assert) {
Expand Down