Fix find test fixture using uppercase CALLS relationship type#77
Merged
greynewell merged 1 commit intomainfrom Apr 8, 2026
Merged
Fix find test fixture using uppercase CALLS relationship type#77greynewell merged 1 commit intomainfrom
greynewell merged 1 commit intomainfrom
Conversation
The shared test fixture used CALLS (uppercase) while production code only
handles lowercase relationship types ("calls", "contains_call"). This
meant any future test using makeGraph() and checking callers would
silently get empty results — a silent trap for new tests.
Also adds TestSearch_SharedFixtureCallers to guard this invariant: it
verifies that fn3("main") →calls→ fn1("handleRequest") is correctly
indexed so "handleRequest" shows "main" as a caller.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughThis PR adds a new test case to verify that the search function correctly identifies callers of a specific function, and updates a test fixture to use consistent lowercase relationship type naming across all tests. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
makeGraph()test fixture ininternal/find/handler_test.gousedType: "CALLS"(uppercase), but production code only handles lowercase relationship types ("calls","contains_call")makeGraph()and checks.Callersor.Calleeswould silently get empty results — a silent trapFix
"CALLS"→"calls"inmakeGraph()TestSearch_SharedFixtureCallersto lock in the invariant: the fixture'sfn3("main") → fn1("handleRequest")edge must actually produce a caller relationshipTest plan
go test ./internal/find/...passesTestSearch_SharedFixtureCallersverifies "handleRequest" has "main" as a caller🤖 Generated with Claude Code
Summary by CodeRabbit