Skip to content

correcting the version ranges of RemoteAnonymousRmiiiopEnabled and RemoteAnonymousRmit3Enabled for 12.2.1.x PSU versions #1122

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

Merged
merged 1 commit into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1418,11 +1418,11 @@
"RealmBootStrapVersion": [ {"version": "[10,12.2.1)", "wlst_mode": "offline", "wlst_name": "RealmBootStrapVersion", "wlst_path": "WP001", "default_value": null, "wlst_type": "string", "get_method": "GET", "restart_required": "true" } ,
{"version": "[10,)", "wlst_mode": "online", "wlst_name": "RealmBootStrapVersion", "wlst_path": "WP001", "default_value": "1", "wlst_type": "string", "get_method": "GET", "restart_required": "true" } ],
"RemoteAnonymousJndiEnabled": [ {"version": "[12.2.1.3,)", "wlst_mode": "both", "wlst_name": "RemoteAnonymous${Jndi:JNDI}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean", "restart_required": "true" } ],
"RemoteAnonymousRmiiiopEnabled": [ {"version": "[12.2.1.3.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
{"version": "[12.2.1.4.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" },
"RemoteAnonymousRmiiiopEnabled": [ {"version": "[12.2.1.3.0.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
{"version": "[12.2.1.4.0.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" },
{"version": "[14.1.1,)", "wlst_mode": "both", "wlst_name": "RemoteAnonymous${Rmiiiop:RMIIIOP}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ],
"RemoteAnonymousRmit3Enabled": [ {"version": "[12.2.1.3.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
{"version": "[12.2.1.4.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
"RemoteAnonymousRmit3Enabled": [ {"version": "[12.2.1.3.0.210630,12.2.1.4)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
{"version": "[12.2.1.4.0.210629,14.1.1)", "wlst_mode": "online", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ,
{"version": "[14.1.1,)", "wlst_mode": "both", "wlst_name": "RemoteAnonymous${Rmit3:RMIT3}Enabled", "wlst_path": "WP001", "default_value": "true", "wlst_type": "boolean" } ],
"UseKSSForDemo": [ {"version": "[12.1.2,)", "wlst_mode": "both", "wlst_name": "UseKSSForDemo", "wlst_path": "WP001", "default_value": "false", "wlst_type": "boolean", "restart_required": "true" } ],
"WebAppFilesCaseInsensitive": [ {"version": "[10,)", "wlst_mode": "both", "wlst_name": "WebAppFilesCaseInsensitive", "wlst_path": "WP001", "default_value": "${__NULL__:false}", "wlst_type": "string", "restart_required": "true" } ]
Expand Down
6 changes: 3 additions & 3 deletions core/src/test/python/aliases_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,11 +448,11 @@ def testIsWlstModelAttributeName(self):
return

def testIsPSUMatch(self):
wls_version = '12.2.1.3.210929'
wls_version = '12.2.1.3.0.210929'
arg_map = {
CommandLineArgUtil.ORACLE_HOME_SWITCH: '/oracleHome',
CommandLineArgUtil.DOMAIN_HOME_SWITCH: '',
CommandLineArgUtil.TARGET_VERSION_SWITCH: '12.2.1.3.210929'
CommandLineArgUtil.TARGET_VERSION_SWITCH: '12.2.1.3.0.210929'
}

this_model_context = ModelContext("test", arg_map)
Expand All @@ -467,7 +467,7 @@ def testIsPSUMatch(self):

self.assertEqual(value, 2)

wls_version = '12.2.1.4'
wls_version = '12.2.1.4.0'
arg_map = {
CommandLineArgUtil.ORACLE_HOME_SWITCH: '/oracleHome',
CommandLineArgUtil.DOMAIN_HOME_SWITCH: '',
Expand Down