Move rmr python here. 72/3172/3
authorTommy Carpenter <tc677g@att.com>
Mon, 6 Apr 2020 18:42:57 +0000 (14:42 -0400)
committerTommy Carpenter <tc677g@att.com>
Mon, 6 Apr 2020 20:45:23 +0000 (16:45 -0400)
commit3a6ac016f65db3fc255f950f96f4768470d584d8
tree40540fab1ec25863689f7560a5683e2a9066d7c7
parent64c9299356bada25ee01bf9eda0036fccc86a85b
Move rmr python here.

The decision was made to move rmr python into the xapp frame.
The module name has not been changed otherwise, so apps transitioning
to this should only need to prefix "rmr" with "ricxappframe." to
transition (and, replace rmr with ricxappframe if they are not already
using the framework).

Some small changes have been made in the unit tests, such as port
numbers and monkeypatching statements, but otherwise all "new" code is
identical to rmr python.

Issue-ID: RIC-228
Change-Id: I5e80cfd39c1511db93b95ac5e442a2acfc0733a2
Signed-off-by: Tommy Carpenter <tc677g@att.com>
15 files changed:
docs/release-notes.rst
ricxappframe/rmr/__init__.py [new file with mode: 0644]
ricxappframe/rmr/exceptions.py [new file with mode: 0644]
ricxappframe/rmr/helpers.py [new file with mode: 0644]
ricxappframe/rmr/rmr.py [new file with mode: 0644]
ricxappframe/rmr/rmr_mocks/__init__.py [new file with mode: 0644]
ricxappframe/rmr/rmr_mocks/rmr_mocks.py [new file with mode: 0644]
ricxappframe/xapp_frame.py
ricxappframe/xapp_rmr.py
setup.py
tests/conftest.py [new file with mode: 0644]
tests/fixtures/test_local.rt
tests/test_init.py
tests/test_rmr.py [new file with mode: 0644]
tests/test_rmr_mocks.py [new file with mode: 0644]