fix(e2e-tests): oracle 19c rotation fix

This commit is contained in:
Daniel Hougaard
2025-08-12 00:30:32 +04:00
parent 368e00ea71
commit e13fc93bac
3 changed files with 28 additions and 51 deletions

View File

@@ -535,29 +535,29 @@ describe("Secret Rotations", async () => {
}
]
},
// {
// type: SecretRotationType.OracleDb,
// name: "OracleDB (19.3) Secret Rotation",
// dbCredentials: {
// database: "ORCLPDB1",
// host: "127.0.0.1",
// username: "system",
// password: "OrCAKF112aaSfAdfdA2Ac3@@!",
// port: 1522
// },
// secretMapping: {
// username: formatSqlUsername("ORACLEDB_USERNAME"),
// password: formatSqlUsername("ORACLEDB_PASSWORD")
// },
// userCredentials: [
// {
// username: formatSqlUsername("INFISICAL_USER_1")
// },
// {
// username: formatSqlUsername("INFISICAL_USER_2")
// }
// ]
// },
{
type: SecretRotationType.OracleDb,
name: "OracleDB (19.3) Secret Rotation",
dbCredentials: {
password: process.env.E2E_TEST_ORACLE_DB_PASSWORD!,
host: process.env.E2E_TEST_ORACLE_DB_HOST!,
username: process.env.E2E_TEST_ORACLE_DB_USERNAME!,
port: 1521,
database: "ORCLPDB1"
},
secretMapping: {
username: formatSqlUsername("ORACLEDB_USERNAME"),
password: formatSqlUsername("ORACLEDB_PASSWORD")
},
userCredentials: [
{
username: formatSqlUsername("INFISICAL_USER_1")
},
{
username: formatSqlUsername("INFISICAL_USER_2")
}
]
},
{
type: SecretRotationType.Postgres,
name: "Postgres (17) Secret Rotation",