Remove oracle banner (#19532)

* remove oracle banner

* add back extra test coverage for other banner

* add description
This commit is contained in:
Angel Garbarino 2023-03-14 09:19:46 -06:00 committed by GitHub
parent 1553c310c4
commit 42f5894be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 21 deletions

View File

@ -1,3 +0,0 @@
```release-note: improvement
ui: Add alert-banner about configuring an Oracle DB secret engine if using SSL.
```

View File

@ -160,18 +160,7 @@
{{/if}}
</div>
{{/unless}}
{{#if (eq @model.plugin_name "vault-plugin-database-oracle")}}
<AlertBanner
@type="info"
@title="Connecting using SSL or TNS Names"
@message="To create database connections using SSL or TNS names you may need to provide additional Oracle configuration files for your Vault cluster. If you have already provided these files, they may need to updated if you are creating connections to database hosts not covered by the existing configuration files."
>
<DocLink @path="/vault/docs/secrets/databases/oracle">
<Icon @name="learn-link" />
Oracle Database Secrets Engine
</DocLink>
</AlertBanner>
{{/if}}
<div class="field is-grouped is-grouped-split is-fullwidth box is-bottomless">
<div class="field is-grouped">
<div class="control">

View File

@ -270,7 +270,7 @@ module('Acceptance | secrets/database/*', function (hooks) {
});
test('Connection create and edit form for each plugin', async function (assert) {
assert.expect(169);
assert.expect(161);
const backend = await mount();
for (const testCase of connectionTests) {
await connectionPage.visitCreate({ backend });
@ -293,11 +293,6 @@ module('Acceptance | secrets/database/*', function (hooks) {
testCase.requiredFields(assert, testCase.name);
continue;
}
if (testCase.plugin !== 'vault-plugin-database-oracle') {
assert
.dom('[data-test-alert-banner="alert"]')
.doesNotExist('Does not show alert-banners specific only to the Oracle db.');
}
testCase.requiredFields(assert, testCase.name);
await connectionPage.toggleVerify();
await connectionPage.save();