aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/golang/protobuf/proto/message_set_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/golang/protobuf/proto/message_set_test.go')
-rw-r--r--vendor/github.com/golang/protobuf/proto/message_set_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/golang/protobuf/proto/message_set_test.go b/vendor/github.com/golang/protobuf/proto/message_set_test.go
index 353a3ea..2c170c5 100644
--- a/vendor/github.com/golang/protobuf/proto/message_set_test.go
+++ b/vendor/github.com/golang/protobuf/proto/message_set_test.go
@@ -64,3 +64,14 @@ func TestUnmarshalMessageSetWithDuplicate(t *testing.T) {
t.Errorf("Combined extension is %q, want %q", got, want)
}
}
+
+func TestMarshalMessageSetJSON_UnknownType(t *testing.T) {
+ extMap := map[int32]Extension{12345: Extension{}}
+ got, err := MarshalMessageSetJSON(extMap)
+ if err != nil {
+ t.Fatalf("MarshalMessageSetJSON: %v", err)
+ }
+ if want := []byte("{}"); !bytes.Equal(got, want) {
+ t.Errorf("MarshalMessageSetJSON(%v) = %q, want %q", extMap, got, want)
+ }
+}