UI: Fix oidc auth method missing default_role field (#28539)

* add auth-config/oidc to openapi model helper

* alphabetize

* update maskedinput selector to be standard data-test-input

* add test

* add changelog

* fix maskedinput test and kv selector

* final textarea selector!
This commit is contained in:
claire bontempo
2024-10-01 09:21:16 -07:00
committed by GitHub
parent b195342e51
commit 71422d4cdd
21 changed files with 335 additions and 108 deletions

View File

@@ -368,11 +368,7 @@ module('Acceptance | aws | configuration', function (hooks) {
// check all the form fields are present
await click(GENERAL.toggleGroup('Root config options'));
for (const key of expectedConfigKeys('aws-root-create')) {
if (key === 'secretKey') {
assert.dom(GENERAL.maskedInput(key)).exists(`${key} shows for root section.`);
} else {
assert.dom(GENERAL.inputByAttr(key)).exists(`${key} shows for root section.`);
}
assert.dom(GENERAL.inputByAttr(key)).exists(`${key} shows for root section.`);
}
for (const key of expectedConfigKeys('aws-lease')) {
assert.dom(`[data-test-ttl-form-label="${key}"]`).exists(`${key} shows for Lease section.`);