Update odata.type version of /redfish/v1/AccountService/
Redfish validator was failing and throwing below error:
*** /redfish/v1/AccountService
AccountService.v1_10_0.ExternalAccountProvider:OAuth2Service :
Could not get details on this property (argument of type 'NoneType' is not iterable)
Type (#AccountService.v1_5_0.AccountService), GET SUCCESS (time: 1.283549)
complex @odata.id: Expected @odata.id to match URI link
/redfish/v1/AccountService#/Oem/OpenBMC
FAIL...
"OAuth2Service" is added in v1_7_x+ versions of AccountService schema. Even though
schema's are updated to v1_10_x, Still source is pointing to v1_5_x which is causing
undefined type and failing Redfish validator.
So I updated odata.type to AccountService.v1_10_0.AccountService".
Tested:
*** /redfish/v1/AccountService
Type (#AccountService.v1_10_0.AccountService), GET SUCCESS (time: 1.306433)
complex @odata.id: Expected @odata.id to match URI link /redfish/v1/AccountService#/Oem/OpenBMC
PASS
After change OAuth2Service property error got disappeared - Redfish validator
does not show any such error.
But, Due to increased version number, there can be any new properties
(deprecated or new) error shown in redfish validator.
( Note: odata.id error exist before and after the fix, which can be fixed as separate commit)
All AccountService related URI's worked as expected and validation got succeeded.
Signed-off-by: Anjaliintel-21 <anjali.ray@intel.com>
Change-Id: Ic73319cd649ecebbf7108863b2a72bcd2768d477
diff --git a/redfish-core/lib/account_service.hpp b/redfish-core/lib/account_service.hpp
index 435d890..19352e8 100644
--- a/redfish-core/lib/account_service.hpp
+++ b/redfish-core/lib/account_service.hpp
@@ -1277,7 +1277,7 @@
asyncResp->res.jsonValue = {
{"@odata.id", "/redfish/v1/AccountService"},
{"@odata.type", "#AccountService."
- "v1_5_0.AccountService"},
+ "v1_10_0.AccountService"},
{"Id", "AccountService"},
{"Name", "Account Service"},
{"Description", "Account Service"},