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: fixing unprotect logic in callout #34244

Merged
merged 1 commit into from
Jun 14, 2024
Merged

Conversation

brayn003
Copy link
Contributor

@brayn003 brayn003 commented Jun 14, 2024

Description

Clicking "Unprotect branch" in the branch protection callout was making all the branches as unprotected. This PR fixes that and only allows the current branch to be unprotected

Fixes #33310 #34005

Automation

/ok-to-test tags="@tag.Git"

🔍 Cypress test results

Tip

🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/9511853863
Commit: 1ccab8a
Cypress dashboard url: Click here!

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

  • New Features

    • Enhanced IDE with advanced branch protection management, including the ability to unprotect branches directly within the IDE.
  • Bug Fixes

    • Improved handling of current branch filtering to ensure accurate protected branch management.

Copy link
Contributor

coderabbitai bot commented Jun 14, 2024

Walkthrough

The changes ensure that unprotecting a branch in the IDE's protected branches management only unprotects the selected branch, avoiding issues where all branches get unprotected simultaneously. Key updates include improved hook usage for state management and the addition of relevant test cases to confirm the functionality.

Changes

File Change Summary
.../Editor/IDE/ProtectedCallout.test.tsx Modified getMockStore function signature, added mocking for useDispatch, and included a new test case.
.../Editor/IDE/ProtectedCallout.tsx Added new selectors, updated logic to filter current branch from protected branches list.

Sequence Diagram

sequenceDiagram
    participant User as User
    participant UI as User Interface
    participant Store as Redux Store
    participant Backend as Backend Service

    User->>UI: Clicks "Unprotect" on a specific branch
    UI->>Store: Dispatches action to unprotect specific branch
    Store->>Backend: API request to unprotect the branch
    Backend->>Store: Confirms branch unprotected
    Store->>UI: Updates state without the unprotected branch
    UI->>User: Displays updated branches list
Loading

Assessment against linked issues

Objective Addressed Explanation
Ensure unprotecting a branch does not unprotect all branches (#33310)

Poem

In our code, a branch did cry,
"Unprotect!" was the user's sigh.
One alone, no longer all,
We fixed the bug, made it small.
Cheers to branches, snug and sound,
Protected now, logic profound.


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 as 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.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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.

@github-actions github-actions bot added Branch protection Issues related to using a protected branch on git Bug Something isn't working Git Pod Anything related to git sync Git Version Control Issues related to version control High This issue blocks a user from building or impacts a lot of users Production labels Jun 14, 2024
@brayn003 brayn003 self-assigned this Jun 14, 2024
@brayn003 brayn003 requested a review from sneha122 June 14, 2024 06:42
@brayn003 brayn003 added the ok-to-test Required label for CI label Jun 14, 2024
@brayn003 brayn003 marked this pull request as ready for review June 14, 2024 06:46
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

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 8f0f4f9 and 1ccab8a.

Files selected for processing (2)
  • app/client/src/pages/Editor/IDE/ProtectedCallout.test.tsx (3 hunks)
  • app/client/src/pages/Editor/IDE/ProtectedCallout.tsx (3 hunks)
Additional comments not posted (6)
app/client/src/pages/Editor/IDE/ProtectedCallout.tsx (4)

30-31: The usage of useSelector to fetch currentBranch and protectedBranches looks correct and is consistent with Redux best practices.


38-43: Good implementation of filtering logic to handle branch unprotection correctly. This should resolve the issue where all branches were being unprotected.


56-62: The conditional rendering based on isLoading is a good practice to enhance user experience during asynchronous operations.


9-13: Ensure that the newly added selectors are properly tested.

Verification successful

The getProtectedBranchesSelector is implemented and used in multiple places within the codebase, including test-related files. This confirms that the new selectors are properly integrated into the codebase.

  • app/client/src/selectors/gitSyncSelectors.tsx: Implementation and export.
  • app/client/src/pages/Editor/gitSync/Tabs/Merge.tsx: Usage in useSelector.
  • app/client/src/pages/Editor/gitSync/components/BranchList.tsx: Usage in useSelector.
  • app/client/src/pages/Editor/gitSync/GitSettingsModal/TabBranch/GitProtectedBranches.tsx: Usage in useSelector.
  • app/client/src/pages/Editor/IDE/ProtectedCallout.tsx: Usage in useSelector.
Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Search for test cases involving the new selectors.

# Test: Search for the new selectors in test files.
ast-grep --lang typescript --pattern $'import { getCurrentGitBranch, getProtectedBranchesSelector } from "selectors/gitSyncSelectors"; $$$'

Length of output: 662



Script:

#!/bin/bash
# Description: Search for test cases involving the new selectors.

# Test: Search for `getCurrentGitBranch` selector in test files.
ast-grep --lang typescript --pattern 'import { getCurrentGitBranch } from "selectors/gitSyncSelectors"; $$$'

# Test: Search for `getProtectedBranchesSelector` selector in test files.
ast-grep --lang typescript --pattern 'import { getProtectedBranchesSelector } from "selectors/gitSyncSelectors"; $$$'

Length of output: 1223



Script:

#!/bin/bash
# Description: Search for test cases involving the new selectors.

# Test: Search for `getCurrentGitBranch` selector in test files.
ast-grep --lang typescript --pattern 'import { getCurrentGitBranch } from "selectors/gitSyncSelectors";'

# Test: Search for `getProtectedBranchesSelector` selector in test files.
ast-grep --lang typescript --pattern 'import { getProtectedBranchesSelector } from "selectors/gitSyncSelectors";'

Length of output: 1273



Script:

#!/bin/bash
# Description: Verify the implementation and usage of `getProtectedBranchesSelector`.

# Test: Search for the implementation of `getProtectedBranchesSelector`.
ast-grep --lang typescript --pattern 'function getProtectedBranchesSelector($_) { $$$ }'

# Test: Search for any usage of `getProtectedBranchesSelector` in the codebase.
rg 'getProtectedBranchesSelector'

Length of output: 1233

app/client/src/pages/Editor/IDE/ProtectedCallout.test.tsx (2)

43-50: Good use of mocking for useDispatch to isolate the component behavior in tests.


91-118: The new test case effectively checks that only the current branch is unprotected, which aligns with the PR's objectives. However, ensure that the test covers all edge cases, such as when the current branch is not in the list of protected branches.

@brayn003 brayn003 merged commit cae0114 into release Jun 14, 2024
50 of 51 checks passed
@brayn003 brayn003 deleted the fix/unprotect-branches branch June 14, 2024 11:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Branch protection Issues related to using a protected branch on git Bug Something isn't working Git Pod Anything related to git sync Git Version Control Issues related to version control High This issue blocks a user from building or impacts a lot of users ok-to-test Required label for CI Production
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: Unprotect branch option unprotects all branches
2 participants