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

Fix generator tests #1706

Merged
merged 5 commits into from
Mar 18, 2025
Merged

Fix generator tests #1706

merged 5 commits into from
Mar 18, 2025

Conversation

alexeyr-ci
Copy link
Collaborator

@alexeyr-ci alexeyr-ci commented Mar 5, 2025

Summary

Make generator tests work with the checked-out version of React on Rails, not the last released one.

Pull Request checklist

  • Add/update test to cover these changes
  • [ ] Update documentation
  • [ ] Update CHANGELOG file

This change is Reviewable

Summary by CodeRabbit

  • Documentation
    • Updated contributor guidelines with revised test commands and clearer descriptions.
  • Refactor
    • Enhanced dependency configuration processes to ensure more reliable installation.
    • Improved script adaptability for updating dependency versions, promoting stability and easier maintainability.

These improvements not only clarify developer instructions but also strengthen the update mechanisms, resulting in a more dependable and robust experience for end users.

Copy link
Contributor

coderabbitai bot commented Mar 5, 2025

Walkthrough

This pull request updates documentation and scripts to enhance clarity and robustness. In the documentation file, test commands are updated, and a typo is corrected. The generator code now parses and updates the package.json file using structured JSON manipulation rather than string replacement. Additionally, the conversion script is modified to use regular expressions for matching the shakapacker gem version, making the version substitution process more flexible.

Changes

File(s) Change Summary
CONTRIBUTING.md Updated test commands from rake run_rspec:example_basic to rake run_rspec:shakapacker_examples_basic and from rake run_rspec:examples to rake run_rspec:shakapacker_examples; fixed typo ("hug number" → "huge number").
lib/generators/react_on_rails/dev_tests_generator.rb Refactored add_yarn_relative_install_script_in_package_json to parse package.json as JSON, initialize/update the scripts key with a postinstall command, and write the file with JSON.pretty_generate.
script/convert Changed gsub_file_content calls to use regex patterns for matching any version of "shakapacker" in both Gemfile.development_dependencies and spec/dummy/package.json, enabling flexible version substitution.

Possibly related PRs

Suggested reviewers

  • G-Rath
  • justin808

Poem

I'm a rabbit with hops so light,
Commands and scripts now shining bright.
JSON dances with graceful cheer,
And regex sings so clear and dear.
Hop along, let progress ignite! 🐰

Tip

⚡🧪 Multi-step agentic review comment chat (experimental)
  • We're introducing multi-step agentic chat in review comments. This experimental feature enhances review discussions with the CodeRabbit agentic chat by enabling advanced interactions, including the ability to create pull requests directly from comments.
    - To enable this feature, set early_access to true under in the settings.

📜 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 beb70fa and adf52d2.

📒 Files selected for processing (1)
  • CONTRIBUTING.md (1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • CONTRIBUTING.md
⏰ Context from checks skipped due to timeout of 90000ms (3)
  • GitHub Check: dummy-app-integration-tests (newest)
  • GitHub Check: dummy-app-integration-tests (oldest)
  • GitHub Check: examples (newest)

🪧 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.
  • @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.

@alexeyr-ci alexeyr-ci changed the title Alexeyr/fix generator tests Fix generator tests Mar 5, 2025
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

🧹 Nitpick comments (2)
lib/generators/react_on_rails/dev_tests_generator.rb (1)

49-54: Improved JSON handling with proper parsing instead of string manipulation.

This is a significant improvement in how the package.json file is modified. The previous implementation (not shown) likely used string replacement which can be brittle for JSON files. The new approach:

  1. Properly parses the JSON file
  2. Ensures the "scripts" object exists (initializing if needed)
  3. Sets the postinstall script to use Yalc for linking
  4. Writes back the JSON with proper formatting

This change makes the generator more robust and less prone to errors when modifying package.json.

Consider adding error handling for the JSON parsing operation, as malformed JSON in the package.json file would cause the generator to fail:

 def add_yarn_relative_install_script_in_package_json
   package_json = File.join(destination_root, "package.json")
-  contents = JSON.parse(File.read(package_json))
-  contents["scripts"] ||= {}
-  contents["scripts"]["postinstall"] = "yalc link react-on-rails"
-  File.open(package_json, "w+") { |f| f.puts JSON.pretty_generate(contents) }
+  begin
+    contents = JSON.parse(File.read(package_json))
+    contents["scripts"] ||= {}
+    contents["scripts"]["postinstall"] = "yalc link react-on-rails"
+    File.open(package_json, "w+") { |f| f.puts JSON.pretty_generate(contents) }
+  rescue JSON::ParserError => e
+    say_status :error, "Failed to parse package.json: #{e.message}", :red
+  end
 end
script/convert (1)

4-9: Consider adding error handling to the gsub_file_content function.

The gsub_file_content function is used for critical file modifications but lacks error handling for file operations and pattern matching failures.

Consider adding error handling to make the script more robust:

 def gsub_file_content(path, old_content, new_content)
   path = File.expand_path(path, __dir__)
-  content = File.binread(path)
-  content.gsub!(old_content, new_content)
-  File.binwrite(path, content)
+  begin
+    content = File.binread(path)
+    if content.match?(old_content)
+      content.gsub!(old_content, new_content)
+      File.binwrite(path, content)
+      puts "Updated #{path}"
+    else
+      puts "Warning: Pattern not found in #{path}"
+    end
+  rescue => e
+    puts "Error processing #{path}: #{e.message}"
+  end
 end
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between a8b8c03 and e1d1c24.

📒 Files selected for processing (3)
  • CONTRIBUTING.md (1 hunks)
  • lib/generators/react_on_rails/dev_tests_generator.rb (1 hunks)
  • script/convert (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (5)
  • GitHub Check: rspec-package-tests (newest)
  • GitHub Check: examples (newest)
  • GitHub Check: rspec-package-tests (oldest)
  • GitHub Check: build-dummy-app-webpack-test-bundles (oldest)
  • GitHub Check: examples (oldest)
🔇 Additional comments (3)
CONTRIBUTING.md (1)

219-219: Updated test commands to use Shakapacker-specific targets.

The command names have been appropriately updated to reference the Shakapacker-specific test targets, which aligns with the PR objective of making generator tests work with the checked-out version rather than the released version. The text also fixes a typo from "hug number" to "huge number" of files.

script/convert (2)

16-16: Improved version string matching with regex pattern.

The change from a hardcoded string to a regex pattern for matching the Shakapacker gem version is a good improvement. This makes the script more flexible as it will match any version string, not just an exact version.


22-22: Consistent approach for package.json version replacement using regex.

Similar to the change in line 16, this modification uses a regex pattern to match any version string for the Shakapacker npm package. This ensures consistency between how the gem and npm package versions are handled.

@alexeyr-ci alexeyr-ci force-pushed the alexeyr/fix-generator-tests branch from e1d1c24 to 6ed25e4 Compare March 7, 2025 11:08
@alexeyr-ci2 alexeyr-ci2 requested a review from Judahmeek March 17, 2025 19:45
@Judahmeek Judahmeek force-pushed the alexeyr/fix-generator-tests branch from f2c05cd to adf52d2 Compare March 18, 2025 03:48
@Judahmeek Judahmeek merged commit e28e56a into master Mar 18, 2025
11 checks passed
@Judahmeek Judahmeek deleted the alexeyr/fix-generator-tests branch March 18, 2025 04:01
@coderabbitai coderabbitai bot mentioned this pull request Mar 20, 2025
1 task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants