Skip to content
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

Enhancement | Catch and handle HCL parsing errors #296

Merged
merged 6 commits into from
Feb 10, 2025

Conversation

Franr
Copy link
Contributor

@Franr Franr commented Feb 9, 2025

What?

Catch the potential errors we could have while parsing HCL files, and return a user-friendly error.

Why?

To enhance the user experience.

References

closes #294

Summary by CodeRabbit

  • New Features

    • Users now receive clearer, more actionable error messages when issues occur while loading configuration files.
    • Enhanced AWS CLI credentials management with new options for configuration.
    • Improved error handling for task execution, including specific exceptions for better clarity.
  • Refactor

    • Streamlined the process for handling Terraform configuration files across multiple modules for a more unified and dependable experience.
    • Improved validation and error handling mechanisms in project management.
    • Enhanced path retrieval functions with precise error handling related to Git repository checks.

Copy link
Contributor

coderabbitai bot commented Feb 9, 2025

Walkthrough

The pull request introduces a new utility function, parse_tf_file, in the _utils.py module. This function is designed to parse Terraform files using pathlib.Path, hcl2, and lark, and to catch and report parsing errors with a user-friendly ExitError. The auth and terraform modules have been updated to replace direct calls to hcl2.load with the parse_tf_file function, streamlining the parsing process and improving error reporting for malformed HCL files.

Changes

File(s) Change Summary
leverage/_utils.py Added new imports (pathlib.Path, hcl2, lark) and introduced the parse_tf_file(file: Path) function with error handling.
leverage/modules/auth.py, leverage/modules/terraform.py Updated import statements and replaced direct hcl2.load calls with parse_tf_file to manage Terraform file parsing.
leverage/_internals.py Added wraps import and introduced pass_container(command) decorator function.
leverage/logger.py Added wraps import and introduced initialize_logger(log_func) decorator for logging functions.
leverage/modules/credentials.py Enhanced AWS CLI credentials management with new imports and updated _ask_for_credentials_location function.
leverage/modules/project.py Updated validate_config(config) and load_project_config() with new validation and error handling.
leverage/modules/run.py Introduced MalformedTaskArgumentError and TaskNotFoundError exceptions for better error handling.
leverage/path.py Added NotARepositoryError(RuntimeError) for Git repository checks.
leverage/tasks.py Added MissingParensInDecoratorError and NotATaskError exceptions for task decorator validation.
tests/test_modules/test_auth.py Updated data_dict structure to use PosixPath objects for paths.

Sequence Diagram(s)

sequenceDiagram
    participant Caller as Auth/Terraform Module
    participant Util as parse_tf_file()
    participant HCL as hcl2.load

    Caller ->> Util: Call parse_tf_file(filePath)
    Util ->> HCL: Attempt to parse file
    HCL -->> Util: Return parsed content or error
    alt Successful Parsing
        Util -->> Caller: Return parsed data
    else Malformed HCL
        Util -->> Caller: Raise ExitError with a user-friendly message
    end
Loading

Assessment against linked issues

Objective Addressed Explanation
Gracefully handle malformed HCL in config.tf/locals.tf [#294]

Poem

I'm a rabbit leaping through lines of code,
Hopping past errors down a smooth parse road.
With each TF file now parsed with care,
No more crashes make me stop and stare.
Code carrots crunch in delight, hopping on with all my might!
🐰✨


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 5410137 and 4575b64.

📒 Files selected for processing (1)
  • tests/test_modules/test_auth.py (2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: integration_tests_cli_refarch (3.9.15, 1.3.5-0.2.0)
🔇 Additional comments (2)
tests/test_modules/test_auth.py (2)

2-2: LGTM!

The addition of PosixPath import aligns with the changes in the test data dictionary.


194-195: LGTM!

Converting the Terraform file paths to PosixPath objects maintains consistency with the new parse_tf_file function implementation while preserving the test's functionality.

✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 11774f0 and 0f56d03.

📒 Files selected for processing (3)
  • leverage/_utils.py (2 hunks)
  • leverage/modules/auth.py (3 hunks)
  • leverage/modules/terraform.py (2 hunks)
🧰 Additional context used
🪛 Ruff (0.8.2)
leverage/_utils.py

127-127: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

leverage/modules/auth.py

6-6: hcl2 imported but unused

Remove unused import: hcl2

(F401)

🪛 GitHub Actions: Tests | Lint w/ Black
leverage/_utils.py

[warning] 1-1: 1 file would be reformatted. Please run Black to format the code.

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: integration_tests_cli_refarch (3.9.15, 1.3.5-0.2.0)
🔇 Additional comments (3)
leverage/_utils.py (1)

4-4: LGTM!

The imports are correctly organized and necessary for the new functionality.

Also applies to: 8-9

leverage/modules/auth.py (1)

69-70: LGTM!

The changes correctly use the new parse_tf_file function to handle HCL parsing errors gracefully.

Also applies to: 78-79

leverage/modules/terraform.py (1)

515-516: LGTM!

The changes correctly use the new parse_tf_file function to handle HCL parsing errors gracefully, with a fallback to an empty dict if the file doesn't exist.

Comment on lines +118 to +129
def parse_tf_file(file: Path):
"""
Open and parse an HCL file.
In case of a parsing error, raise a user-friendly error.
"""
with open(file) as f:
try:
parsed = hcl2.load(f)
except lark.exceptions.UnexpectedInput:
raise ExitError(1, f"There is a parsing error with the {f.name} file. Please review it.")
else:
return parsed
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Improve error handling in parse_tf_file.

The error handling can be enhanced to:

  1. Catch FileNotFoundError for missing files
  2. Include the original error message for better debugging
  3. Chain exceptions using raise ... from err

Apply this diff to improve error handling:

 def parse_tf_file(file: Path):
     """
     Open and parse an HCL file.
     In case of a parsing error, raise a user-friendly error.
     """
     with open(file) as f:
         try:
             parsed = hcl2.load(f)
-        except lark.exceptions.UnexpectedInput:
-            raise ExitError(1, f"There is a parsing error with the {f.name} file. Please review it.")
+        except FileNotFoundError as err:
+            raise ExitError(1, f"The file {f.name} does not exist.") from err
+        except lark.exceptions.UnexpectedInput as err:
+            raise ExitError(1, f"There is a parsing error with the {f.name} file. Please review it.\nError: {err}") from err
         else:
             return parsed

Committable suggestion skipped: line range outside the PR's diff.

🧰 Tools
🪛 Ruff (0.8.2)

127-127: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 0f56d03 and 221624a.

📒 Files selected for processing (1)
  • leverage/modules/auth.py (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: integration_tests_cli_refarch (3.9.15, 1.3.5-0.2.0)
🔇 Additional comments (1)
leverage/modules/auth.py (1)

7-7: LGTM! Import changes are well-structured.

The imports are properly organized and align with the new functionality.

Also applies to: 10-10

Comment on lines +77 to 78
backend_config = parse_tf_file(cli.paths.local_backend_tfvars)
tf_profile = backend_config["profile"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Add error handling for backend configuration parsing.

While the layer configuration files have error handling (try-except), the backend configuration parsing lacks similar protection. A malformed backend.tfvars could lead to unclear errors.

Consider wrapping the backend configuration parsing in a try-except block:

-    backend_config = parse_tf_file(cli.paths.local_backend_tfvars)
-    tf_profile = backend_config["profile"]
+    try:
+        backend_config = parse_tf_file(cli.paths.local_backend_tfvars)
+        tf_profile = backend_config["profile"]
+    except FileNotFoundError:
+        raise ExitError(40, f"Backend configuration file not found: {cli.paths.local_backend_tfvars}")
+    except KeyError:
+        raise ExitError(40, "Missing 'profile' in backend configuration")
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
backend_config = parse_tf_file(cli.paths.local_backend_tfvars)
tf_profile = backend_config["profile"]
try:
backend_config = parse_tf_file(cli.paths.local_backend_tfvars)
tf_profile = backend_config["profile"]
except FileNotFoundError:
raise ExitError(40, f"Backend configuration file not found: {cli.paths.local_backend_tfvars}")
except KeyError:
raise ExitError(40, "Missing 'profile' in backend configuration")

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🔭 Outside diff range comments (1)
leverage/modules/credentials.py (1)

453-470: Strengthen credential validation security.

The function assumes credentials are invalid only if the error code is 255 and contains "InvalidClientTokenId". This might miss other security-related errors.

-    return error_code != 255 and "InvalidClientTokenId" not in output
+    if error_code != 0:
+        logger.debug(f"Credential validation failed with error: {output}")
+        return False
+    return True
♻️ Duplicate comments (1)
leverage/_utils.py (1)

119-130: ⚠️ Potential issue

Improve error handling in parse_tf_file.

The error handling can be enhanced to:

  1. Catch FileNotFoundError for missing files
  2. Include the original error message for better debugging
  3. Chain exceptions using raise ... from err

Apply this diff to improve error handling:

 def parse_tf_file(file: Path):
     """
     Open and parse an HCL file.
     In case of a parsing error, raise a user-friendly error.
     """
     with open(file) as f:
         try:
             parsed = hcl2.load(f)
-        except lark.exceptions.UnexpectedInput:
-            raise ExitError(1, f"There is a parsing error with the {f.name} file. Please review it.")
+        except FileNotFoundError as err:
+            raise ExitError(1, f"The file {f.name} does not exist.") from err
+        except lark.exceptions.UnexpectedInput as err:
+            raise ExitError(1, f"There is a parsing error with the {f.name} file. Please review it.\nError: {err}") from err
         else:
             return parsed
🧰 Tools
🪛 Ruff (0.8.2)

128-128: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

🧹 Nitpick comments (5)
leverage/modules/run.py (1)

30-31: Add a docstring for TaskNotFoundError.

Add a docstring to describe when this exception is raised, similar to the docstring in MalformedTaskArgumentError.

Apply this diff to add the docstring:

 class TaskNotFoundError(RuntimeError):
+    """When a task specified by the user is not found in the build script"""
     pass
leverage/tasks.py (1)

26-27: Add a docstring for MissingParensInDecoratorError.

Add a docstring to describe when this exception is raised.

Apply this diff to add the docstring:

 class MissingParensInDecoratorError(ImportError):
+    """When the @task decorator is used without parentheses"""
     pass
leverage/modules/project.py (1)

281-298: Enhance the docstring for validate_config.

The docstring should include details about the validation rules for project name and short name.

Apply this diff to improve the docstring:

 def validate_config(config: dict):
     """
-    Run a battery of validations over the config file (project.yaml).
+    Validate the configuration in project.yaml file.
+
+    Args:
+        config (dict): Project configuration dictionary.
+
+    Raises:
+        ExitError: If project_name is not a valid name (25 chars max, lowercase alphanumeric and hyphens only).
+        ExitError: If short_name is not valid (2-4 chars, lowercase alphabetic only).
+
+    Returns:
+        bool: True if all validations pass.
     """
leverage/modules/credentials.py (2)

148-182: Consider enhancing file permission checks.

While the function validates file existence, it should also verify read permissions to prevent potential permission-related errors later.

-                "validate": lambda value: (Path(value).expanduser().is_file() and Path(value).expanduser().exists())
-                or "Path must be an existing file",
+                "validate": lambda value: (
+                    path := Path(value).expanduser(),
+                    path.is_file() and path.exists() and os.access(path, os.R_OK)
+                )[1] or "Path must be an existing readable file",

702-714: Add type hints to improve code maintainability.

Consider adding type hints to function parameters and return values for better code maintainability and IDE support.

-def configure(
+def configure(
     type: str,
-    credentials_file,
+    credentials_file: Optional[Path],
-    fetch_mfa_device,
+    fetch_mfa_device: bool,
-    overwrite_existing_credentials,
+    overwrite_existing_credentials: bool,
-    skip_access_keys_setup,
+    skip_access_keys_setup: bool,
-    skip_assumable_roles_setup,
+    skip_assumable_roles_setup: bool,
-):
+) -> None:
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 221624a and 5410137.

📒 Files selected for processing (11)
  • leverage/__init__.py (1 hunks)
  • leverage/_internals.py (1 hunks)
  • leverage/_utils.py (2 hunks)
  • leverage/conf.py (1 hunks)
  • leverage/leverage.py (1 hunks)
  • leverage/logger.py (1 hunks)
  • leverage/modules/credentials.py (1 hunks)
  • leverage/modules/project.py (1 hunks)
  • leverage/modules/run.py (1 hunks)
  • leverage/path.py (1 hunks)
  • leverage/tasks.py (1 hunks)
✅ Files skipped from review due to trivial changes (2)
  • leverage/init.py
  • leverage/conf.py
🧰 Additional context used
🪛 Ruff (0.8.2)
leverage/_utils.py

128-128: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: integration_tests_cli_refarch (3.9.15, 1.3.5-0.2.0)
🔇 Additional comments (11)
leverage/leverage.py (1)

4-4: LGTM!

leverage/_internals.py (1)

4-4: LGTM!

leverage/logger.py (1)

4-4: LGTM!

leverage/_utils.py (1)

5-5: LGTM!

The imports are appropriate for the new functionality.

Also applies to: 9-10

leverage/modules/run.py (2)

66-68: LGTM!

The error handling is consistent with the codebase's error handling patterns, and the error message is properly logged before exiting.

🧰 Tools
🪛 Ruff (0.8.2)

68-68: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)


83-122: LGTM!

The function's error handling has been improved with descriptive error messages and proper documentation of the exceptions in the docstring.

🧰 Tools
🪛 Ruff (0.8.2)

113-113: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

leverage/tasks.py (1)

30-71: LGTM!

The function's error handling has been improved with descriptive error messages and proper documentation of the exceptions in the docstring.

leverage/path.py (2)

16-18: LGTM!

The exception class is well-defined with a descriptive docstring.


38-58: LGTM!

The function's error handling has been improved with proper exception handling and documentation.

🧰 Tools
🪛 Ruff (0.8.2)

54-54: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)


55-55: Local variable exc is assigned to but never used

Remove assignment to unused variable exc

(F841)


56-56: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

leverage/modules/project.py (1)

259-279: LGTM!

The function's error handling has been improved with proper exception handling and documentation.

🧰 Tools
🪛 Ruff (0.8.2)

278-278: Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling

(B904)

leverage/modules/credentials.py (1)

1-68: LGTM! Well-organized imports and constants.

The imports are properly organized, and the regex patterns are well-documented with references to AWS documentation.

@coveralls
Copy link
Collaborator

Pull Request Test Coverage Report for Build 13227561880

Details

  • 14 of 18 (77.78%) changed or added relevant lines in 3 files are covered.
  • 183 unchanged lines in 10 files lost coverage.
  • Overall coverage increased (+0.04%) to 60.209%

Changes Missing Coverage Covered Lines Changed/Added Lines %
leverage/_utils.py 8 10 80.0%
leverage/modules/terraform.py 2 4 50.0%
Files with Coverage Reduction New Missed Lines %
logger.py 1 98.44%
leverage/modules/auth.py 1 95.12%
leverage.py 2 84.62%
modules/auth.py 4 95.12%
_utils.py 11 83.7%
tasks.py 16 71.3%
path.py 16 73.65%
modules/run.py 22 50.54%
modules/project.py 50 31.21%
modules/credentials.py 60 54.67%
Totals Coverage Status
Change from base Build 13089174087: 0.04%
Covered Lines: 2464
Relevant Lines: 3950

💛 - Coveralls

@exequielrafaela exequielrafaela added enhancement New feature or request patch labels Feb 10, 2025
@exequielrafaela exequielrafaela changed the title BL-294 | Catch and handle HCL parsing errors Enhancement | Catch and handle HCL parsing errors Feb 10, 2025
@Franr Franr merged commit 9cbfa4c into master Feb 10, 2025
31 checks passed
@exequielrafaela exequielrafaela deleted the BL-294-friendly-parsing-errors branch February 19, 2025 14:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request patch
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants