X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=tests%2Fconftest.py;h=8ad34e6d9a914cc8b0ce1991e3299efa8418174e;hb=12486343219663d484705f05ab8d2ed3306f66d7;hp=dbff888c5a055155585e62bdf918a7c442453d77;hpb=9c09be1e9598d4e145faea412b047b64d38feb22;p=ric-plt%2Fxapp-frame-py.git diff --git a/tests/conftest.py b/tests/conftest.py index dbff888..8ad34e6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -17,6 +17,13 @@ import pytest from ricxappframe.entities.rnib.nb_identity_pb2 import NbIdentity +from ricxappframe.entities.rnib.cell_pb2 import Cell +import ricxappframe.entities.rnib.nb_identity_pb2 as pb_nb +import ricxappframe.entities.rnib.nodeb_info_pb2 as pb_nbi +import ricxappframe.entities.rnib.enb_pb2 as pb_enb +import ricxappframe.entities.rnib.gnb_pb2 as pb_gnb +import ricxappframe.entities.rnib.cell_pb2 as pb_cell +import ricxappframe.entities.rnib.ran_function_pb2 as pb_rf # These are here just to reduce the size of the code in test_rmr so those (important) tests are more readable; in theory these dicts could be large @@ -94,3 +101,94 @@ def rnib_information(): rnib1.connection_status = 6 return [rnib1.SerializeToString(), rnib2.SerializeToString()] + + +@pytest.fixture +def rnib_cellinformation(): + rnib_cell1 = Cell() + print(rnib_cell1) + rnib_cell1.type = Cell.LTE_CELL + + rnib_cell2 = Cell() + rnib_cell2.type = Cell.LTE_CELL + + return [rnib_cell2.SerializeToString(), rnib_cell2.SerializeToString()] + + +def createRanFunction(ran_function_id, definition, revision, oid): + r = pb_rf.RanFunction() + r.ran_function_id = ran_function_id + r.ran_function_definition = definition + r.ran_function_revision = revision + r.ran_function_oid = oid + return r + + +def createServedCellInfo(pci, cell_id, tac): + s = pb_enb.ServedCellInfo() + s.pci = pci + s.cell_id = cell_id + s.tac = tac + return s + + +def createServedNRCellInfo(pci, cell_id, tac): + s = pb_gnb.ServedNRCell() +# s = pb_gnb.ServedNRCellInformation() + s.served_nr_cell_information.nr_pci = pci + s.served_nr_cell_information.cell_id = cell_id + s.served_nr_cell_information.stac5g = tac + s.served_nr_cell_information.nr_mode = 2 + return s + + +class rnibHelpers: + @staticmethod + def createNodeb(name, plmn, nbid): + nb = pb_nb.NbIdentity() + nb.inventory_name = name + nb.global_nb_id.plmn_id = plmn + nb.global_nb_id.nb_id = nbid + nb.connection_status = 1 + return nb + + @staticmethod + def createNodebInfo(name, nbtype, ip, port): + nbi = pb_nbi.NodebInfo() + nbi.ip = ip + nbi.port = port + nbi.e2_application_protocol = 1 + nbi.connection_status = 1 + if nbtype == 'GNB': + nbi.node_type = 2 + rf1 = createRanFunction(1, b'te524367153', 1, "1.3.6.1.4.1.1.2.2.1") + rf2 = createRanFunction(1, b'te524367153', 1, "1.3.6.1.4.1.1.2.2.2") + rf3 = createRanFunction(1, b'te524367153', 1, "1.3.6.1.4.1.1.2.2.3") + nbi.gnb.ran_functions.extend([rf1, rf2, rf3]) + s1 = createServedNRCellInfo(1, b'822', b'1452') + s2 = createServedNRCellInfo(2, b'823', b'1453') + s3 = createServedNRCellInfo(3, b'824', b'1454') + nbi.gnb.served_nr_cells.extend([s1, s2, s3]) + else: + nbi.node_type = 1 + nbi.enb.enb_type = 1 + s1 = createServedCellInfo(1, b'822', b'1452') + s2 = createServedCellInfo(2, b'823', b'1453') + s3 = createServedCellInfo(3, b'824', b'1454') + nbi.enb.served_cells.extend([s1, s2, s3]) + return nbi + + @staticmethod + def createCell(name, pci): + c = pb_cell.Cell() + c.type = pb_cell.Cell.Type.Value('LTE_CELL') +# print(pb_cell.Cell.Type.Name(pb_cell.Cell.LTE_CELL)) + c.served_cell_info.pci = pci + c.served_cell_info.cell_id = b'822' + c.served_cell_info.tac = b'1452' + return c + + +@pytest.fixture +def rnib_helpers(): + return rnibHelpers