commit | 0145a22519adb4f7e6b79ba0f5446359713ea474 | [log] [tgz] |
---|---|---|
author | Anjaliintel-21 <anjali.ray@intel.com> | Fri Mar 25 03:38:28 2022 +0000 |
committer | Ed Tanous <ed@tanous.net> | Wed Apr 13 19:30:21 2022 +0000 |
tree | acd4174cdd5df869588e9a24ed5f60f12ff8314f | |
parent | 54417b02efbfe896d6ef442cfc6a721314aac3f8 [diff] |
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
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D
flags that correspond to options in bmcweb/meson_options.txt
and then compiling. For example, meson <builddir> -Dkvm=disabled ...
followed by ninja
in build directory. The option names become C++ preprocessor symbols that control which code is compiled into the program.
meson builddir ninja -C builddir
meson builddir -Dbuildtype=minsize -Db_lto=true -Dtests=disabled ninja -C buildir
If any of the dependencies are not found on the host system during configuration, meson automatically gets them via its wrap dependencies mentioned in bmcweb/subprojects
.
meson builddir -Dwrap_mode=nofallback ninja -C builddir
meson builddir -Dbuildtype=debug ninja -C builddir
meson builddir -Db_coverage=true -Dtests=enabled ninja -C builddir test ninja -C builddir coverage
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the secp384r1
algorithm. The certificate
C=US, O=OpenBMC, CN=testhost
,SHA-256
algorithm.