Skip to content
Snippets Groups Projects
Commit 78e52d60 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

fix test

parent 54261ade
No related branches found
No related tags found
1 merge request!1036make productfectcher use default threads capo property
Pipeline #6420 passed
This commit is part of merge request !1036. Comments created here will be created in the context of that merge request.
...@@ -88,27 +88,29 @@ def test_multiple_locator_fetching(capsys, resource_path_root): ...@@ -88,27 +88,29 @@ def test_multiple_locator_fetching(capsys, resource_path_root):
:param capsys: :param capsys:
:return: :return:
""" """
img = resource_path_root / "location_files" / "IMG.json" with patch("productfetcher.product_fetcher.CapoConfig") as mocked_capo:
cal = resource_path_root / "location_files" / "CALIBRATION.json" mocked_capo.return_value.settings.return_value.defaultThreadsPerHost = 1
img = resource_path_root / "location_files" / "IMG.json"
# parse the command line with these two cal = resource_path_root / "location_files" / "CALIBRATION.json"
fc = FetchContext.parse_commandline([CLIParam.FILE.value, str(img), CLIParam.FILE.value, str(cal)])
assert len(fc.locators) == 2 # parse the command line with these two
fc = FetchContext.parse_commandline([CLIParam.FILE.value, str(img), CLIParam.FILE.value, str(cal)])
# let's make the plan and ensure we have all the stuff we expect from both assert len(fc.locators) == 2
plan = fc.generate_plan()
# let's make the plan and ensure we have all the stuff we expect from both
# we'll need to open these files ourselves to figure out what fetchers we expect plan = fc.generate_plan()
for locator_file in [img, cal]:
for file in FileLocator(locator_file).locate().files: # we'll need to open these files ourselves to figure out what fetchers we expect
seen = False for locator_file in [img, cal]:
for file in FileLocator(locator_file).locate().files:
# there may be a more "test friendly" way of doing this, such as by asking the plan seen = False
# if it is fetching a certain file, but it seems like a lot of refactoring for this
# one test, so I'm going to leave it alone for now # there may be a more "test friendly" way of doing this, such as by asking the plan
for hostgroup_fetcher in plan.fetchers: # if it is fetching a certain file, but it seems like a lot of refactoring for this
seen = seen or file in [fetcher.file for fetcher in hostgroup_fetcher.fetchers] # one test, so I'm going to leave it alone for now
assert seen for hostgroup_fetcher in plan.fetchers:
seen = seen or file in [fetcher.file for fetcher in hostgroup_fetcher.fetchers]
assert seen
def test_argument_parsing(capsys): def test_argument_parsing(capsys):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment