-
Notifications
You must be signed in to change notification settings - Fork 286
mcp: add tests for UnmarshalJSON handling of nil Content pointers #275
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
Merged
findleyr
merged 2 commits into
modelcontextprotocol:main
from
MrGossett:tg/content-unmarshal-on-nil
Aug 14, 2025
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,224 @@ | ||
| // Copyright 2025 The Go MCP SDK Authors. All rights reserved. | ||
| // Use of this source code is governed by an MIT-style | ||
| // license that can be found in the LICENSE file. | ||
|
|
||
| // This file contains tests to verify that UnmarshalJSON methods for Content types | ||
| // don't panic when unmarshaling onto nil pointers, as requested in GitHub issue #205. | ||
| // | ||
| // NOTE: The contentFromWire function has been fixed to handle nil wire.Content | ||
| // gracefully by returning an error instead of panicking. | ||
|
|
||
| package mcp_test | ||
|
|
||
| import ( | ||
| "encoding/json" | ||
| "testing" | ||
|
|
||
| "github.com/google/go-cmp/cmp" | ||
| "github.com/modelcontextprotocol/go-sdk/mcp" | ||
| ) | ||
|
|
||
| func TestContentUnmarshalNil(t *testing.T) { | ||
| tests := []struct { | ||
| name string | ||
| json string | ||
| content interface{} | ||
| want interface{} | ||
| }{ | ||
| { | ||
| name: "CallToolResult nil Content", | ||
| json: `{"content":[{"type":"text","text":"hello"}]}`, | ||
| content: &mcp.CallToolResult{}, | ||
| want: &mcp.CallToolResult{Content: []mcp.Content{&mcp.TextContent{Text: "hello"}}}, | ||
| }, | ||
| { | ||
| name: "CreateMessageResult nil Content", | ||
| json: `{"content":{"type":"text","text":"hello"},"model":"test","role":"user"}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| want: &mcp.CreateMessageResult{Content: &mcp.TextContent{Text: "hello"}, Model: "test", Role: "user"}, | ||
| }, | ||
| { | ||
| name: "PromptMessage nil Content", | ||
| json: `{"content":{"type":"text","text":"hello"},"role":"user"}`, | ||
| content: &mcp.PromptMessage{}, | ||
| want: &mcp.PromptMessage{Content: &mcp.TextContent{Text: "hello"}, Role: "user"}, | ||
| }, | ||
| { | ||
| name: "SamplingMessage nil Content", | ||
| json: `{"content":{"type":"text","text":"hello"},"role":"user"}`, | ||
| content: &mcp.SamplingMessage{}, | ||
| want: &mcp.SamplingMessage{Content: &mcp.TextContent{Text: "hello"}, Role: "user"}, | ||
| }, | ||
| { | ||
| name: "CallToolResultFor nil Content", | ||
| json: `{"content":[{"type":"text","text":"hello"}]}`, | ||
| content: &mcp.CallToolResultFor[string]{}, | ||
| want: &mcp.CallToolResultFor[string]{Content: []mcp.Content{&mcp.TextContent{Text: "hello"}}}, | ||
| }, | ||
| } | ||
|
|
||
| for _, tt := range tests { | ||
| t.Run(tt.name, func(t *testing.T) { | ||
| // Test that unmarshaling doesn't panic on nil Content fields | ||
| defer func() { | ||
| if r := recover(); r != nil { | ||
| t.Errorf("UnmarshalJSON panicked: %v", r) | ||
| } | ||
| }() | ||
|
|
||
| err := json.Unmarshal([]byte(tt.json), tt.content) | ||
| if err != nil { | ||
| t.Errorf("UnmarshalJSON failed: %v", err) | ||
| } | ||
|
|
||
| // Verify that the Content field was properly populated | ||
| if cmp.Diff(tt.want, tt.content) != "" { | ||
| t.Errorf("Content is not equal: %v", cmp.Diff(tt.content, tt.content)) | ||
| } | ||
| }) | ||
| } | ||
| } | ||
|
|
||
| func TestContentUnmarshalNilWithDifferentTypes(t *testing.T) { | ||
| tests := []struct { | ||
| name string | ||
| json string | ||
| content interface{} | ||
| expectError bool | ||
| }{ | ||
| { | ||
| name: "ImageContent", | ||
| json: `{"content":{"type":"image","mimeType":"image/png","data":"YTFiMmMz"}}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: false, | ||
| }, | ||
| { | ||
| name: "AudioContent", | ||
| json: `{"content":{"type":"audio","mimeType":"audio/wav","data":"YTFiMmMz"}}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: false, | ||
| }, | ||
| { | ||
| name: "ResourceLink", | ||
| json: `{"content":{"type":"resource_link","uri":"file:///test","name":"test"}}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: true, // CreateMessageResult only allows text, image, audio | ||
| }, | ||
| { | ||
| name: "EmbeddedResource", | ||
| json: `{"content":{"type":"resource","resource":{"uri":"file://test","text":"test"}}}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: true, // CreateMessageResult only allows text, image, audio | ||
| }, | ||
| } | ||
|
|
||
| for _, tt := range tests { | ||
| t.Run(tt.name, func(t *testing.T) { | ||
| // Test that unmarshaling doesn't panic on nil Content fields | ||
| defer func() { | ||
| if r := recover(); r != nil { | ||
| t.Errorf("UnmarshalJSON panicked: %v", r) | ||
| } | ||
| }() | ||
|
|
||
| err := json.Unmarshal([]byte(tt.json), tt.content) | ||
| if tt.expectError && err == nil { | ||
| t.Error("Expected error but got none") | ||
| } | ||
| if !tt.expectError && err != nil { | ||
| t.Errorf("Unexpected error: %v", err) | ||
| } | ||
|
|
||
| // Verify that the Content field was properly populated for successful cases | ||
| if !tt.expectError { | ||
| if result, ok := tt.content.(*mcp.CreateMessageResult); ok { | ||
| if result.Content == nil { | ||
| t.Error("CreateMessageResult.Content was not populated") | ||
| } | ||
| } | ||
| } | ||
| }) | ||
| } | ||
| } | ||
|
|
||
| func TestContentUnmarshalNilWithEmptyContent(t *testing.T) { | ||
| tests := []struct { | ||
| name string | ||
| json string | ||
| content interface{} | ||
| expectError bool | ||
| }{ | ||
| { | ||
| name: "Empty Content array", | ||
| json: `{"content":[]}`, | ||
| content: &mcp.CallToolResult{}, | ||
| expectError: false, | ||
| }, | ||
| { | ||
| name: "Missing Content field", | ||
| json: `{"model":"test","role":"user"}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: true, // Content field is required for CreateMessageResult | ||
| }, | ||
| } | ||
|
|
||
| for _, tt := range tests { | ||
| t.Run(tt.name, func(t *testing.T) { | ||
| // Test that unmarshaling doesn't panic on nil Content fields | ||
| defer func() { | ||
| if r := recover(); r != nil { | ||
| t.Errorf("UnmarshalJSON panicked: %v", r) | ||
| } | ||
| }() | ||
|
|
||
| err := json.Unmarshal([]byte(tt.json), tt.content) | ||
| if tt.expectError && err == nil { | ||
| t.Error("Expected error but got none") | ||
| } | ||
| if !tt.expectError && err != nil { | ||
| t.Errorf("Unexpected error: %v", err) | ||
| } | ||
| }) | ||
| } | ||
| } | ||
|
|
||
| func TestContentUnmarshalNilWithInvalidContent(t *testing.T) { | ||
| tests := []struct { | ||
| name string | ||
| json string | ||
| content interface{} | ||
| expectError bool | ||
| }{ | ||
| { | ||
| name: "Invalid content type", | ||
| json: `{"content":{"type":"invalid","text":"hello"}}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: true, | ||
| }, | ||
| { | ||
| name: "Missing type field", | ||
| json: `{"content":{"text":"hello"}}`, | ||
| content: &mcp.CreateMessageResult{}, | ||
| expectError: true, | ||
| }, | ||
| } | ||
|
|
||
| for _, tt := range tests { | ||
| t.Run(tt.name, func(t *testing.T) { | ||
| // Test that unmarshaling doesn't panic on nil Content fields | ||
| defer func() { | ||
| if r := recover(); r != nil { | ||
| t.Errorf("UnmarshalJSON panicked: %v", r) | ||
| } | ||
| }() | ||
|
|
||
| err := json.Unmarshal([]byte(tt.json), tt.content) | ||
| if tt.expectError && err == nil { | ||
| t.Error("Expected error but got none") | ||
| } | ||
| if !tt.expectError && err != nil { | ||
| t.Errorf("Unexpected error: %v", err) | ||
| } | ||
| }) | ||
| } | ||
| } |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test failed without this change, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's correct. One of the tests that I added failed without this change.
The test is unmarshaling
{"model":"test","role":"user"}(missing"content"), which causes the*wireContentparameter here to be nil.Below is the test output without this change: