-
Notifications
You must be signed in to change notification settings - Fork 881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor and mypy up ibm datasource #5509
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice updates!
I think we can simplify the metadata transformation a bit more. Would something like this work?
diff --git a/cloudinit/sources/DataSourceIBMCloud.py b/cloudinit/sources/DataSourceIBMCloud.py
index c86d68516..05ca8f056 100644
--- a/cloudinit/sources/DataSourceIBMCloud.py
+++ b/cloudinit/sources/DataSourceIBMCloud.py
@@ -341,7 +341,7 @@ def metadata_from_dir(source_dir: str) -> Dict[str, Any]:
keys.
This function has a lot in common with ConfigDriveReader.read_v2 but
- there are a number of inconsistencies, such as key renames and only
+ there are a number of inconsistencies, such as key renames and only
presenting a 'latest' version, which make it an unlikely candidate to share
code.
@@ -356,11 +356,11 @@ def metadata_from_dir(source_dir: str) -> Dict[str, Any]:
return json.loads(blob.decode("utf-8"))
def load_file(
- path: str, translator: Optional[Callable[[bytes], Any]] = None
+ path: str, translator: Callable[[bytes], Any]
) -> Any:
try:
raw = util.load_binary_file(path)
- return translator(raw) if translator else raw
+ return translator(raw)
except IOError as e:
LOG.debug("Failed reading path '%s': %s", path, e)
return None
@@ -370,32 +370,27 @@ def metadata_from_dir(source_dir: str) -> Dict[str, Any]:
files = [
# tuples of (results_name, path, translator)
("metadata_raw", opath("meta_data.json"), load_json_bytes),
- ("userdata", opath("user_data"), None),
+ ("userdata", opath("user_data"), lambda x: x),
("vendordata", opath("vendor_data.json"), load_json_bytes),
("networkdata", opath("network_data.json"), load_json_bytes),
]
- raw_results: Dict[str, Optional[bytes]] = {}
- translated_results: Dict[str, Any] = {}
+ results: Dict[str, Any] = {}
for name, path, transl in files:
fpath = os.path.join(source_dir, path)
- raw_results[name] = load_file(fpath)
- if raw_results[name] is not None and transl is not None:
- translated_results[name] = load_file(fpath, transl)
- else:
- translated_results[name] = raw_results[name]
+ results[name] = load_file(fpath, transl)
- if raw_results["metadata_raw"] is None:
+ if results["metadata_raw"] is None:
raise sources.BrokenMetadata(
"%s missing required file 'meta_data.json'",
source_dir,
)
- translated_results["metadata"] = {}
+ results["metadata"] = {}
- md_raw = translated_results["metadata_raw"]
- md = translated_results["metadata"]
+ md_raw = results["metadata_raw"]
+ md = results["metadata"]
if "random_seed" in md_raw:
try:
@@ -416,7 +411,7 @@ def metadata_from_dir(source_dir: str) -> Dict[str, Any]:
if old_key in md_raw:
md[new_key] = md_raw[old_key]
- return translated_results
+ return results
# Used to match classes to dependencies
@TheRealFalcon Thank you for the patch! I really appreciate that since i was definitely still not nearly satisfied with how messy that was even after the refactor. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a few more minor comments inline.
@a-dubs , the changes here look good to me, but you still have some linter failures to fix first |
@@ -272,6 +272,8 @@ def test_template_live(self, m_platform, m_sysuuid): | |||
) | |||
|
|||
ret = ibm.read_md() | |||
if ret is None: # this is needed for mypy - ensures ret is not None | |||
self.fail("read_md returned None unexpectedly") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@TheRealFalcon is there a better way I should be doing this? I think this is pretty okay but just curious. thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm tempted to disable mypy for tests, but for mypy complaining this looks good!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well now that you mention it, mypy is supposed to be disabled for tests. All I did in this PR was remove the line disabling mypy checks for the ibm datasource file, not the unit test file for it.
LGTM except there's a lint check failing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Proposed Commit Message
Merge type