// Copyright (C) MongoDB, Inc. 2017-present. // // Licensed under the Apache License, Version 2.0 (the "License"); you may // not use this file except in compliance with the License. You may obtain // a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 package bson import ( "reflect" "testing" "github.com/google/go-cmp/cmp" "go.mongodb.org/mongo-driver/bson/bsoncodec" "go.mongodb.org/mongo-driver/bson/bsonrw" ) func TestUnmarshal(t *testing.T) { for _, tc := range unmarshalingTestCases { t.Run(tc.name, func(t *testing.T) { if tc.reg != nil { t.Skip() // test requires custom registry } got := reflect.New(tc.sType).Interface() err := Unmarshal(tc.data, got) noerr(t, err) if !cmp.Equal(got, tc.want) { t.Errorf("Did not unmarshal as expected. got %v; want %v", got, tc.want) } }) } } func TestUnmarshalWithRegistry(t *testing.T) { for _, tc := range unmarshalingTestCases { t.Run(tc.name, func(t *testing.T) { var reg *bsoncodec.Registry if tc.reg != nil { reg = tc.reg } else { reg = DefaultRegistry } got := reflect.New(tc.sType).Interface() err := UnmarshalWithRegistry(reg, tc.data, got) noerr(t, err) if !cmp.Equal(got, tc.want) { t.Errorf("Did not unmarshal as expected. got %v; want %v", got, tc.want) } }) } } func TestUnmarshalWithContext(t *testing.T) { for _, tc := range unmarshalingTestCases { t.Run(tc.name, func(t *testing.T) { var reg *bsoncodec.Registry if tc.reg != nil { reg = tc.reg } else { reg = DefaultRegistry } dc := bsoncodec.DecodeContext{Registry: reg} got := reflect.New(tc.sType).Interface() err := UnmarshalWithContext(dc, tc.data, got) noerr(t, err) if !cmp.Equal(got, tc.want) { t.Errorf("Did not unmarshal as expected. got %v; want %v", got, tc.want) } }) } } func TestUnmarshalExtJSONWithRegistry(t *testing.T) { t.Run("UnmarshalExtJSONWithContext", func(t *testing.T) { type teststruct struct{ Foo int } var got teststruct data := []byte("{\"foo\":1}") err := UnmarshalExtJSONWithRegistry(DefaultRegistry, data, true, &got) noerr(t, err) want := teststruct{1} if !cmp.Equal(got, want) { t.Errorf("Did not unmarshal as expected. got %v; want %v", got, want) } }) t.Run("UnmarshalExtJSONInvalidInput", func(t *testing.T) { data := []byte("invalid") err := UnmarshalExtJSONWithRegistry(DefaultRegistry, data, true, &M{}) if err != bsonrw.ErrInvalidJSON { t.Fatalf("wanted ErrInvalidJSON, got %v", err) } }) } func TestUnmarshalExtJSONWithContext(t *testing.T) { t.Run("UnmarshalExtJSONWithContext", func(t *testing.T) { type teststruct struct{ Foo int } var got teststruct data := []byte("{\"foo\":1}") dc := bsoncodec.DecodeContext{Registry: DefaultRegistry} err := UnmarshalExtJSONWithContext(dc, data, true, &got) noerr(t, err) want := teststruct{1} if !cmp.Equal(got, want) { t.Errorf("Did not unmarshal as expected. got %v; want %v", got, want) } }) }