Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Fix empty keyName when decoding struct -> map with omitempty #281

Merged
merged 1 commit into from
Apr 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion mapstructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,9 @@ func (d *Decoder) decodeMapFromStruct(name string, dataVal reflect.Value, val re
return fmt.Errorf("cannot squash non-struct type '%s'", v.Type())
}
}
keyName = tagValue[:index]
if keyNameTagValue := tagValue[:index]; keyNameTagValue != "" {
keyName = keyNameTagValue
}
} else if len(tagValue) > 0 {
if tagValue == "-" {
continue
Expand Down
23 changes: 23 additions & 0 deletions mapstructure_bugs_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package mapstructure

import (
"fmt"
"reflect"
"testing"
"time"
Expand Down Expand Up @@ -601,3 +602,25 @@ func TestMapSquash(t *testing.T) {
t.Fatal("expected false")
}
}

// GH-238: Empty key name when decoding map from struct with only omitempty flag
func TestMapOmitEmptyWithEmptyFieldnameInTag(t *testing.T) {
type Struct struct {
Username string `mapstructure:",omitempty"`
Age int `mapstructure:",omitempty"`
}

s := Struct{
Username: "Joe",
}
var m map[string]interface{}

if err := Decode(s, &m); err != nil {
t.Fatal(err)
}

expect := "map[Username:Joe]"
if got := fmt.Sprintf("%+v", m); expect != got {
t.Fatalf("expect %q, got: %s", expect, got)
}
}