parent
cbfa5be5a8
commit
f1b18f569a
@ -0,0 +1,33 @@ |
|||||||
|
// Copyright 2017 Felix Lange <fjl@twurst.com>.
|
||||||
|
// Use of this source code is governed by the MIT license,
|
||||||
|
// which can be found in the LICENSE file.
|
||||||
|
|
||||||
|
//go:generate gencodec -type Z -field-override Zo -formats json,yaml,toml -out output.go
|
||||||
|
|
||||||
|
package funcoverride |
||||||
|
|
||||||
|
import ( |
||||||
|
"fmt" |
||||||
|
) |
||||||
|
|
||||||
|
type Z struct { |
||||||
|
S string `json:"s"` |
||||||
|
I int32 `json:"iVal"` |
||||||
|
} |
||||||
|
|
||||||
|
func (z *Z) Hash() string { |
||||||
|
return fmt.Sprintf("%s-%d", z.S, z.I) |
||||||
|
} |
||||||
|
|
||||||
|
func (z *Z) MultiplyIByTwo() int32 { |
||||||
|
return 2 * z.I |
||||||
|
} |
||||||
|
|
||||||
|
func (z *Z) NotUsed() string { |
||||||
|
return "not used" |
||||||
|
} |
||||||
|
|
||||||
|
type Zo struct { |
||||||
|
Hash string |
||||||
|
MultiplyIByTwo int64 `json:"multipliedByTwo"` |
||||||
|
} |
@ -0,0 +1,44 @@ |
|||||||
|
// Copyright 2017 Felix Lange <fjl@twurst.com>.
|
||||||
|
// Use of this source code is governed by the MIT license,
|
||||||
|
// which can be found in the LICENSE file.
|
||||||
|
|
||||||
|
package funcoverride |
||||||
|
|
||||||
|
import ( |
||||||
|
"encoding/json" |
||||||
|
"fmt" |
||||||
|
"testing" |
||||||
|
) |
||||||
|
|
||||||
|
func TestOverrideFuncJSON(t *testing.T) { |
||||||
|
z := Z{"str", 1234} |
||||||
|
hash := z.Hash() |
||||||
|
multiply := z.MultiplyIByTwo() |
||||||
|
want := fmt.Sprintf(`{"s":"%s","iVal":%d,"Hash":"%s","multipliedByTwo":%d}`, z.S, z.I, hash, multiply) |
||||||
|
out, err := json.Marshal(z) |
||||||
|
if err != nil { |
||||||
|
t.Fatal(err) |
||||||
|
} |
||||||
|
if string(out) != want { |
||||||
|
t.Fatalf("got %#q, want %#q", string(out), want) |
||||||
|
} |
||||||
|
|
||||||
|
var zUnmarshaled Z |
||||||
|
if err := json.Unmarshal([]byte(want), &zUnmarshaled); err != nil { |
||||||
|
t.Fatalf("could not unmarshal Z: %v", err) |
||||||
|
} |
||||||
|
if zUnmarshaled.I != z.I { |
||||||
|
t.Errorf("Z.I has an unexpected value, want %d, got %d", z.I, zUnmarshaled.I) |
||||||
|
} |
||||||
|
if zUnmarshaled.S != z.S { |
||||||
|
t.Errorf("Z.Str has an unexpected value, want %s, got %s", z.S, zUnmarshaled.S) |
||||||
|
} |
||||||
|
uHash := zUnmarshaled.Hash() |
||||||
|
if uHash != hash { |
||||||
|
t.Errorf("Z.Hash() returned unexpected value, want %s, got %s", hash, uHash) |
||||||
|
} |
||||||
|
uMultiply := zUnmarshaled.MultiplyIByTwo() |
||||||
|
if uMultiply != multiply { |
||||||
|
t.Errorf("Z.MultiplIByTwo() returned unexpected value, want %d, got %d", multiply, uMultiply) |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,106 @@ |
|||||||
|
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.
|
||||||
|
|
||||||
|
package funcoverride |
||||||
|
|
||||||
|
import ( |
||||||
|
"encoding/json" |
||||||
|
) |
||||||
|
|
||||||
|
func (z Z) MarshalJSON() ([]byte, error) { |
||||||
|
type Z struct { |
||||||
|
S string `json:"s"` |
||||||
|
I int32 `json:"iVal"` |
||||||
|
Hash string |
||||||
|
MultiplyIByTwo int64 `json:"multipliedByTwo"` |
||||||
|
} |
||||||
|
var enc Z |
||||||
|
enc.S = z.S |
||||||
|
enc.I = z.I |
||||||
|
enc.Hash = z.Hash() |
||||||
|
enc.MultiplyIByTwo = int64(z.MultiplyIByTwo()) |
||||||
|
return json.Marshal(&enc) |
||||||
|
} |
||||||
|
|
||||||
|
func (z *Z) UnmarshalJSON(input []byte) error { |
||||||
|
type Z struct { |
||||||
|
S *string `json:"s"` |
||||||
|
I *int32 `json:"iVal"` |
||||||
|
} |
||||||
|
var dec Z |
||||||
|
if err := json.Unmarshal(input, &dec); err != nil { |
||||||
|
return err |
||||||
|
} |
||||||
|
if dec.S != nil { |
||||||
|
z.S = *dec.S |
||||||
|
} |
||||||
|
if dec.I != nil { |
||||||
|
z.I = *dec.I |
||||||
|
} |
||||||
|
return nil |
||||||
|
} |
||||||
|
|
||||||
|
func (z Z) MarshalYAML() (interface{}, error) { |
||||||
|
type Z struct { |
||||||
|
S string `json:"s"` |
||||||
|
I int32 `json:"iVal"` |
||||||
|
Hash string |
||||||
|
MultiplyIByTwo int64 `json:"multipliedByTwo"` |
||||||
|
} |
||||||
|
var enc Z |
||||||
|
enc.S = z.S |
||||||
|
enc.I = z.I |
||||||
|
enc.Hash = z.Hash() |
||||||
|
enc.MultiplyIByTwo = int64(z.MultiplyIByTwo()) |
||||||
|
return &enc, nil |
||||||
|
} |
||||||
|
|
||||||
|
func (z *Z) UnmarshalYAML(unmarshal func(interface{}) error) error { |
||||||
|
type Z struct { |
||||||
|
S *string `json:"s"` |
||||||
|
I *int32 `json:"iVal"` |
||||||
|
} |
||||||
|
var dec Z |
||||||
|
if err := unmarshal(&dec); err != nil { |
||||||
|
return err |
||||||
|
} |
||||||
|
if dec.S != nil { |
||||||
|
z.S = *dec.S |
||||||
|
} |
||||||
|
if dec.I != nil { |
||||||
|
z.I = *dec.I |
||||||
|
} |
||||||
|
return nil |
||||||
|
} |
||||||
|
|
||||||
|
func (z Z) MarshalTOML() (interface{}, error) { |
||||||
|
type Z struct { |
||||||
|
S string `json:"s"` |
||||||
|
I int32 `json:"iVal"` |
||||||
|
Hash string |
||||||
|
MultiplyIByTwo int64 `json:"multipliedByTwo"` |
||||||
|
} |
||||||
|
var enc Z |
||||||
|
enc.S = z.S |
||||||
|
enc.I = z.I |
||||||
|
enc.Hash = z.Hash() |
||||||
|
enc.MultiplyIByTwo = int64(z.MultiplyIByTwo()) |
||||||
|
return &enc, nil |
||||||
|
} |
||||||
|
|
||||||
|
func (z *Z) UnmarshalTOML(unmarshal func(interface{}) error) error { |
||||||
|
type Z struct { |
||||||
|
S *string `json:"s"` |
||||||
|
I *int32 `json:"iVal"` |
||||||
|
} |
||||||
|
var dec Z |
||||||
|
if err := unmarshal(&dec); err != nil { |
||||||
|
return err |
||||||
|
} |
||||||
|
if dec.S != nil { |
||||||
|
z.S = *dec.S |
||||||
|
} |
||||||
|
if dec.I != nil { |
||||||
|
z.I = *dec.I |
||||||
|
} |
||||||
|
return nil |
||||||
|
} |
Loading…
Reference in new issue