feat(pull): reply to and resolve review comments (#220)

Adds `reply_comment`, `resolve_thread` and `unresolve_thread` to `pull_request_review_write`, using the endpoints from https://github.com/go-gitea/gitea/pull/36683 and https://github.com/go-gitea/gitea/pull/36441 (SDK v1.2.0, no dependency change).

`review_id` is now optional for `pull_request_read` `get_review_comments`, so finding a comment to reply to takes one call instead of one per review. Review comments gained `review_id` and `resolved_by`.

Fixes https://gitea.com/gitea/gitea-mcp/issues/129

Verified against gitea.com (1.27.0+dev). Written by Claude (Opus 5).

Reviewed-on: https://gitea.com/gitea/gitea-mcp/pulls/220
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
silverwind
2026-07-28 05:26:17 +00:00
committed by silverwind
parent 21aa4684d9
commit 80114e32e6
6 changed files with 285 additions and 23 deletions
+144
View File
@@ -1042,3 +1042,147 @@ func Test_reopenPullRequestFn(t *testing.T) {
t.Fatalf("expected content in result")
}
}
// serveStub points the client at a test server that answers the SDK version
// probe, leaving every other route to handler.
func serveStub(t *testing.T, handler http.HandlerFunc) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path == "/api/v1/version" {
w.Header().Set("Content-Type", "application/json")
_, _ = w.Write([]byte(`{"version":"1.27.0"}`))
return
}
handler(w, r)
}))
t.Cleanup(server.Close)
origHost, origToken := flag.Host, flag.Token
flag.Host, flag.Token = server.URL, "test-token"
t.Cleanup(func() { flag.Host, flag.Token = origHost, origToken })
}
func Test_pullRequestReviewWriteFn_comments(t *testing.T) {
const (
owner = "octo"
repo = "demo"
index = 7
commentID = 42
)
for _, tc := range []struct {
method string
path string
wantBody string
}{
{"reply_comment", fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/comments/%d/replies", owner, repo, index, commentID), "sure"},
{"resolve_thread", fmt.Sprintf("/api/v1/repos/%s/%s/pulls/comments/%d/resolve", owner, repo, commentID), ""},
{"unresolve_thread", fmt.Sprintf("/api/v1/repos/%s/%s/pulls/comments/%d/unresolve", owner, repo, commentID), ""},
} {
t.Run(tc.method, func(t *testing.T) {
var gotPath, gotBody string
serveStub(t, func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != tc.path {
t.Errorf("unexpected request: %s %s", r.Method, r.URL.Path)
w.WriteHeader(http.StatusNotFound)
return
}
if r.Method != http.MethodPost {
t.Errorf("expected POST method, got %s", r.Method)
}
gotPath = r.URL.Path
var body map[string]any
_ = json.NewDecoder(r.Body).Decode(&body)
gotBody, _ = body["body"].(string)
if tc.wantBody == "" {
w.WriteHeader(http.StatusNoContent)
return
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
_, _ = w.Write([]byte(`{"id":43,"body":"sure","path":"main.go","position":3}`))
})
req := mcp.CallToolRequest{
Params: mcp.CallToolParams{
Arguments: map[string]any{
"method": tc.method,
"owner": owner,
"repo": repo,
"pull_number": float64(index),
"comment_id": float64(commentID),
"body": "sure",
},
},
}
result, err := pullRequestReviewWriteFn(context.Background(), req)
if err != nil {
t.Fatalf("pullRequestReviewWriteFn() error = %v", err)
}
if gotPath != tc.path {
t.Errorf("expected request to %s, got %q", tc.path, gotPath)
}
// resolve and unresolve send no body, reply sends the reply text
if gotBody != tc.wantBody {
t.Errorf("expected body %q, got %q", tc.wantBody, gotBody)
}
if len(result.Content) == 0 {
t.Fatalf("expected content in result")
}
})
}
}
func Test_listPullRequestReviewCommentsFn_allReviews(t *testing.T) {
const (
owner = "octo"
repo = "demo"
index = 7
)
var gotReviewPaths []string
serveStub(t, func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
switch r.URL.Path {
case fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/reviews", owner, repo, index):
// the middle review has no review comments and must not be fetched
_, _ = w.Write([]byte(`[{"id":1,"comments_count":1},{"id":2,"comments_count":0},{"id":3,"comments_count":2}]`))
case fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/reviews/1/comments", owner, repo, index),
fmt.Sprintf("/api/v1/repos/%s/%s/pulls/%d/reviews/3/comments", owner, repo, index):
gotReviewPaths = append(gotReviewPaths, r.URL.Path)
_, _ = w.Write([]byte(`[{"id":11,"body":"nit","path":"main.go","position":3}]`))
default:
t.Errorf("unexpected request: %s %s", r.Method, r.URL.Path)
w.WriteHeader(http.StatusNotFound)
}
})
req := mcp.CallToolRequest{
Params: mcp.CallToolParams{
Arguments: map[string]any{
"method": "get_review_comments",
"owner": owner,
"repo": repo,
"pull_number": float64(index),
},
},
}
result, err := pullRequestReadFn(context.Background(), req)
if err != nil {
t.Fatalf("pullRequestReadFn() error = %v", err)
}
if len(gotReviewPaths) != 2 {
t.Errorf("expected comments of 2 reviews to be fetched, got %v", gotReviewPaths)
}
if len(result.Content) == 0 {
t.Fatalf("expected content in result")
}
}