forked from p15670423/monkey
Island: Add TODO to return default config in reporting
Notes in services for not fixing the failing tests until we remove the ConfigService
This commit is contained in:
parent
9b23cc0bef
commit
16e8443134
|
@ -392,6 +392,7 @@ class ReportService:
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_config_exploits():
|
def get_config_exploits():
|
||||||
exploits_config_value = EXPLOITER_CLASSES_PATH
|
exploits_config_value = EXPLOITER_CLASSES_PATH
|
||||||
|
# TODO: Return default config here
|
||||||
default_exploits = ConfigService.get_default_config(False)
|
default_exploits = ConfigService.get_default_config(False)
|
||||||
for namespace in exploits_config_value:
|
for namespace in exploits_config_value:
|
||||||
default_exploits = default_exploits[namespace]
|
default_exploits = default_exploits[namespace]
|
||||||
|
|
|
@ -15,7 +15,9 @@ def PORT():
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
def config(monkeypatch):
|
def config(monkeypatch):
|
||||||
config = ConfigService.get_default_config(True)
|
# Note: ConfigService is going away, don't try to fix the UT using
|
||||||
|
# this fixture
|
||||||
|
config = ConfigService.get_config(True)
|
||||||
return config
|
return config
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,9 @@ fake_ip_address = "192.168.56.1"
|
||||||
def fake_mongo(monkeypatch, uses_encryptor):
|
def fake_mongo(monkeypatch, uses_encryptor):
|
||||||
mongo = mongoengine.connection.get_connection()
|
mongo = mongoengine.connection.get_connection()
|
||||||
monkeypatch.setattr("monkey_island.cc.services.config.mongo", mongo)
|
monkeypatch.setattr("monkey_island.cc.services.config.mongo", mongo)
|
||||||
config = ConfigService.get_default_config()
|
# Note: ConfigService is going away, don't try to fix UT using
|
||||||
|
# this fixture
|
||||||
|
config = ConfigService.get_config()
|
||||||
ConfigService.update_config(config, should_encrypt=True)
|
ConfigService.update_config(config, should_encrypt=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue