maddenj-ie
maddenj-ie
The 'Len' field of UPSISublist is not encoded when using 'to_bytes' The issue may be reproduced using the following test ```python def test_upsi_sublist_from_obj_to_bytes(self): upsi_sublist_obj = UPSISublist(val={ 'PLMN': '27201', 'Cont': [...
UEPolSectionMgmtSubresult has a length field which it sets to the length in octets of the results plus the length of the plmnId field rather than the number of results. https://github.com/P1sec/pycrate/blob/1824d90cd4815ccdf4070e76338009aa1a1e8097/pycrate_mobile/TS24501_UEPOL.py#L149...
Hi, I'm experimenting with the FG UE Policy Management Command to/from json functionality using the pytest below. ```python from pycrate_core.repr import show from pycrate_mobile.TS24501_UEPOL import FGUEPOLManageUEPolicyCommand class TestManageUePolicyCommandJson: def test_to_from_json(self):...
Hi, I observed the following issue. Details provided below. Thanks for the help. Regards. ### Environment Java : openjdk version "11.0.14" 2022-01-18 LTS Jmeter : 5.4.3 jmeter-bzm-http2-2.0 jmeter-plugins-casutg 2.10 ###...
The issue may be reproduced by using the following pytest. ```python from pycrate_core.repr import show from pycrate_mobile.TS24501_UEPOL import FGUEPOLStateInd class TestFguePolStateInd: def test_fgue_pol_state_ind_from_json_to_obj(self): fgue_pol_state_ind = FGUEPOLStateInd(val={ 'UPSIList': [ { 'PLMN':...
To illustrate I'll describe my scenario. I've created a custom Robotframework Resource module (packaged independently using Poetry etc. for distribution) which contains user keywords and resource files. Resource files not...