
Hi all, This patch set depends on "[PATCH 00/17] Summary Ginger Base Plug in Code Changes" V7. It covers some issues found in the Ginger Base patches. With that, all tests cases for Wok and Kimchi passes successfully. There is only one test failing for Ginger Base. I will check it on Monday to provide a separated patch. Aline Manera (9): Fix PYTHONPATH to run tests for Ginger Base Get the right internal URI to Ginger Base plugin Fix Ginger Base tests Remove repositories tests from Kimchi Move host authorization tests from Kimchi to Ginger Base Keep /host/partitions on Kimchi Remove Host Resource from Kimchi Add src/wok/plugins directory to the Wok PEP8 backlist Add .gitignore file to gingerbase directory Makefile.am | 2 +- src/wok/plugins/gingerbase/.gitignore | 37 ++++ src/wok/plugins/gingerbase/control/debugreports.py | 2 +- src/wok/plugins/gingerbase/control/host.py | 33 ---- src/wok/plugins/gingerbase/disks.py | 198 --------------------- src/wok/plugins/gingerbase/docs/API.md | 26 --- src/wok/plugins/gingerbase/i18n.py | 5 - src/wok/plugins/gingerbase/mockmodel.py | 19 -- src/wok/plugins/gingerbase/model/host.py | 24 +-- src/wok/plugins/gingerbase/tests/run_tests.sh.in | 4 +- .../plugins/gingerbase/tests/test_authorization.py | 72 ++++++++ src/wok/plugins/gingerbase/tests/test_host.py | 13 -- src/wok/plugins/gingerbase/tests/test_rest.py | 2 +- .../plugins/gingerbase/ui/js/src/gingerbase.api.js | 11 -- src/wok/plugins/kimchi/control/host.py | 46 ++++- src/wok/plugins/kimchi/disks.py | 196 ++++++++++++++++++++ src/wok/plugins/kimchi/docs/API.md | 28 +++ src/wok/plugins/kimchi/i18n.py | 5 + src/wok/plugins/kimchi/mockmodel.py | 19 ++ src/wok/plugins/kimchi/model/host.py | 57 ++---- src/wok/plugins/kimchi/tests/test_authorization.py | 14 -- src/wok/plugins/kimchi/tests/test_host.py | 13 ++ src/wok/plugins/kimchi/tests/test_rest.py | 40 +---- 23 files changed, 436 insertions(+), 430 deletions(-) create mode 100644 src/wok/plugins/gingerbase/.gitignore delete mode 100644 src/wok/plugins/gingerbase/disks.py create mode 100644 src/wok/plugins/gingerbase/tests/test_authorization.py create mode 100644 src/wok/plugins/kimchi/disks.py -- 2.1.0