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

feat(x/genutil): add better error messages for genesis validation #21701

Merged
merged 7 commits into from
Sep 13, 2024

Conversation

ziscky
Copy link
Contributor

@ziscky ziscky commented Sep 13, 2024

Description

Closes: #17250

Add more specific errors for the following cases during simd genesis validate:

  • Invalid JSON
  • Missing app_state
  • Missing module configuration inside the app_state ( this is what the creator of the issue experienced, I managed to reproduce the exact error )

Author Checklist

All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.

I have...

  • included the correct type prefix in the PR title, you can find examples of the prefixes below:
  • confirmed ! in the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • reviewed "Files changed" and left comments if necessary
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • updated the relevant documentation or specification, including comments for documenting Go code
  • confirmed all CI checks have passed

Reviewers Checklist

All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.

Please see Pull Request Reviewer section in the contributing guide for more information on how to review a pull request.

I have...

  • confirmed the correct type prefix in the PR title
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic, API design and naming, documentation is accurate, tests and test coverage

Summary by CodeRabbit

  • New Features
    • Enhanced error messages for genesis validation, providing clearer feedback for developers.
  • Bug Fixes
    • Resolved an issue with block commits related to halt height, restoring expected functionality.
  • Tests
    • Improved test cases for genesis validation, including scenarios for invalid JSON and missing configurations.

Copy link
Contributor

coderabbitai bot commented Sep 13, 2024

Walkthrough

Walkthrough

The pull request introduces enhancements to the genutil module, focusing on improving error messages during genesis validation and fixing a bug in the baseapp module related to block commits. A new function for better error handling in JSON unmarshalling is added, along with comprehensive test cases for validating the genesis file. These changes aim to provide clearer feedback for developers and restore expected functionality in the application.

Changes

Files Change Summary
CHANGELOG.md, x/genutil/client/cli/validate_genesis.go, x/genutil/client/cli/validate_genesis_test.go Updated changelog to reflect improvements in error messages during genesis validation, added a new error handling function, and enhanced test cases for better validation coverage.

Assessment against linked issues

Objective Addressed Explanation
Advanced error trace for genesis.json validation (#17250)

Possibly related PRs

Suggested labels

backport/v0.52.x

Tip

OpenAI O1 model for chat
  • We have deployed OpenAI's latest O1 model for chat.
  • OpenAI claims that this model has superior reasoning capabilities than their GPT-4o model.
  • Please share any feedback with us in the discussions post.

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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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 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.

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.

@github-actions github-actions bot added C:CLI C:x/genutil genutil module issues labels Sep 13, 2024
@ziscky ziscky marked this pull request as ready for review September 13, 2024 07:25
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 and nitpick comments (2)
CHANGELOG.md (2)

Line range hint 568-605: Improvements Section is Comprehensive but Could Benefit from Categorization

The "Improvements" section provides an extensive list of enhancements made across the SDK and individual modules. The improvements span CLI commands, query/message types, performance optimizations, and more.

While the content appears to be accurately captured, the section is quite lengthy. To improve readability and organization, consider categorizing the improvements into subsections like:

  • CLI Improvements
  • API Improvements
  • Module-Specific Improvements
  • Performance Improvements
  • Miscellaneous Improvements

This will allow readers to more quickly find and parse relevant changes. Overall though, great job compiling this comprehensive list of improvements!


Line range hint 608-626: Bug Fixes Accurately Captured

The "Bug Fixes" section accurately lists the various bugs that were fixed across the SDK and individual modules. Each fix includes a brief description of the issue and a link to the relevant PR for more context.

Spot checking the PR links shows that they are all valid and point to relevant bug fix PRs. The descriptions concisely capture the core problem that was resolved.

One minor suggestion would be to group related fixes together to make the section even easier to parse. For example, you could have sub-sections for:

  • CLI Fixes
  • Panic/Crash Fixes
  • Error Handling Fixes
  • Other Fixes

But overall, this section looks great and comprehensively represents the bug fixing work done. Nice job!

Review details

Configuration used: .coderabbit.yml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 0064ccb and 3fdc329.

Files selected for processing (3)
  • CHANGELOG.md (1 hunks)
  • x/genutil/client/cli/validate_genesis.go (4 hunks)
  • x/genutil/client/cli/validate_genesis_test.go (4 hunks)
Additional context used
Path-based instructions (3)
x/genutil/client/cli/validate_genesis.go (1)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.

x/genutil/client/cli/validate_genesis_test.go (2)

Pattern **/*.go: Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations.


Pattern **/*_test.go: "Assess the unit test code assessing sufficient code coverage for the changes associated in the pull request"

CHANGELOG.md (1)

Pattern **/*.md: "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness"

Additional comments not posted (19)
x/genutil/client/cli/validate_genesis.go (5)

5-8: LGTM!

The new imports are necessary for the changes made in the file.


38-38: LGTM!

The change is intended to provide more informative error messages when JSON unmarshalling fails. The enrichUnmarshalError function is defined later in the file and needs to be reviewed separately.


47-49: LGTM!

The change improves the clarity of the error message when the app_state is missing in the genesis file.


55-59: LGTM!

The change improves the clarity of the error message when a section is missing in the app_state.


69-75: LGTM!

The enrichUnmarshalError function improves the clarity of the error messages when JSON unmarshalling fails. The function is used in the error handling for types.AppGenesisFromFile earlier in the file.

x/genutil/client/cli/validate_genesis_test.go (12)

9-11: LGTM!

The new imports are valid and necessary for the changes made in the test file.


13-18: LGTM!

The new imports are valid and necessary for the changes made in the test file.


42-42: LGTM!

The initialization of the cdc variable is correct and necessary for the changes made in the test file.


44-47: LGTM!

The changes to the testCases struct are valid and necessary for the new test cases added in the file.


49-54: LGTM!

The new test case for "invalid json" scenario is valid and tests the scenario of invalid JSON input during genesis validation.


55-67: LGTM!

The new test case for "invalid: missing module config in app_state" scenario is valid and tests the scenario of missing module configuration in the app state during genesis validation. The use of a custom module manager with a "custommod" module is appropriate for this test case.


71-72: LGTM!

The updated error message for the "exported 0.37 genesis file" test case is appropriate and provides a clear indication of the expected error.


82-83: LGTM!

The updated error message for the "valid 0.50 genesis file" test case is appropriate, indicating that no error is expected for a valid genesis file.


92-92: LGTM!

The changes to the clitestutil.ExecTestCLICmd function call are valid and necessary for executing the ValidateGenesisCmd with the appropriate module manager and genesis file.


93-94: LGTM!

The changes to the error handling logic are valid and necessary for verifying the expected error messages in the test cases. The use of require.Contains is appropriate for checking if the actual error contains the expected error string.


Line range hint 1-101: Test file conforms to the Uber Golang style guide.

The test file follows the best practices for writing Go tests and conforms to the Uber Golang style guide. It has a clear structure, descriptive naming, and uses common Go test patterns. No deviations or issues were found.


Line range hint 1-101: Unit test code provides sufficient coverage.

The unit test code provides sufficient code coverage for the changes associated with the pull request. The test cases cover the important scenarios and edge cases related to the genesis validation logic, including invalid JSON, missing module config, exported 0.37 genesis file, and valid 0.50 genesis file. The use of different module managers and genesis files ensures that the ValidateGenesisCmd function is tested with various configurations.

CHANGELOG.md (2)

Line range hint 301-324: State Machine Breaking Changes Look Good

The "State Machine Breaking" section provides a clear and comprehensive list of the breaking changes to the state machine across various modules. Each change includes a concise description and a link to the relevant PR for more details. The breaking changes appear to be accurately captured based on the information provided.


Line range hint 1-1186: Excellent Changelog - Comprehensive and Well-Organized

After reviewing the changelog in detail, I must say this is an excellent piece of documentation. The changelog comprehensively covers all the key changes made across multiple versions of the Cosmos SDK, including breaking changes, new features, improvements, bug fixes, and more.

The changes are logically grouped into clear sections and subsections, making it easy for readers to find the information they care about. Each change includes a concise yet informative description, along with links to the relevant PR(s) for those who want to dive into the details.

A few sections, like "Improvements" and "Bug Fixes", could potentially benefit from some additional sub-grouping to further enhance organization and readability. But this is a minor nitpick in the grand scheme of things.

Overall, this changelog is a shining example of what good documentation looks like. It's clear that significant effort went into compiling all these changes into a coherent, well-structured document. SDK users are lucky to have this as a reference to understand how the project has evolved over time.

To the authors (and reviewers and approvers) of this changelog - thank you for your diligence and hard work! This is the type of quality documentation that makes a huge difference to the developer experience.

Copy link
Member

@julienrbrt julienrbrt left a comment

Choose a reason for hiding this comment

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

ACK

@julienrbrt julienrbrt added backport/v0.50.x PR scheduled for inclusion in the v0.50's next stable release backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release labels Sep 13, 2024
@julienrbrt julienrbrt added this pull request to the merge queue Sep 13, 2024
Merged via the queue into main with commit 9c5cea0 Sep 13, 2024
73 checks passed
@julienrbrt julienrbrt deleted the ziscky/17250-validate-genesis-error-trace branch September 13, 2024 09:45
mergify bot pushed a commit that referenced this pull request Sep 13, 2024
…1701)

(cherry picked from commit 9c5cea0)

# Conflicts:
#	CHANGELOG.md
mergify bot pushed a commit that referenced this pull request Sep 13, 2024
…1701)

(cherry picked from commit 9c5cea0)

# Conflicts:
#	CHANGELOG.md
#	x/genutil/client/cli/validate_genesis.go
@julienrbrt
Copy link
Member

Ah my bad, I didn't see the introduced staking dep here in the tests.
@ziscky, could you remove it in a follow-up? We should use testutil/x/counter for such tests (feel free to extend that dummy module if it doesn't have a genesis).

julienrbrt added a commit that referenced this pull request Sep 13, 2024
…ckport #21701) (#21707)

Co-authored-by: Eric Mokaya <4112301+ziscky@users.noreply.github.com>
Co-authored-by: Julien Robert <julien@rbrt.fr>
tac0turtle added a commit that referenced this pull request Sep 13, 2024
…ckport #21701) (#21708)

Co-authored-by: Eric Mokaya <4112301+ziscky@users.noreply.github.com>
Co-authored-by: marbar3778 <marbar3778@yahoo.com>
alpe added a commit that referenced this pull request Sep 16, 2024
* main:
  test: fix sims (#21735)
  build: bump proto-builder (#21730)
  refactor(schema)!: rename IntegerStringKind and DecimalStringKind (#21694)
  feat(types/collections): add `LegacyDec` collection value (#21693)
  refactor(server): alias AppOptions to coreserver.DynamicConfig (#21711)
  refactor(simapp): simplify simapp di (#21718)
  feat: replace the cosmos-db usecases in the tests with `core/testing` (#21525)
  feat(runtime/v2): store loader on simappv2 (#21704)
  docs(x/auth): vesting (#21715)
  build(deps): Bump google.golang.org/grpc from 1.66.1 to 1.66.2 (#21670)
  refactor(systemtest): Add cli.RunAndWait for common operations (#21689)
  fix(runtime/v2): provide default factory options if unset in app builder (#21690)
  chore: remove duplicate proto files for the same proto file (#21648)
  feat(x/genutil): add better error messages for genesis validation (#21701)
  build(deps): Bump cosmossdk.io/core from 1.0.0-alpha.1 to 1.0.0-alpha.2 (#21698)
  test: migrate e2e/bank to system tests (#21607)
  chore: fix the gci lint issue in testutil (#21695)
  docs(x/authz): update grant docs (#21677)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport/v0.50.x PR scheduled for inclusion in the v0.50's next stable release backport/v0.52.x PR scheduled for inclusion in the v0.52's next stable release C:CLI C:x/genutil genutil module issues
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature]: genesis.json validation advanced error trace
4 participants