An open API service indexing awesome lists of open source software.

https://github.com/jimeh/go-goldsert

A suite of Go test helpers which uses golden files to assert marshaling and unmarshaling of given objects.
https://github.com/jimeh/go-goldsert

assertions go go-test go-test-helper go-testing golang golden-file gotest json marshal marshaling unmarshal unmarshaling xml yaml

Last synced: about 2 months ago
JSON representation

A suite of Go test helpers which uses golden files to assert marshaling and unmarshaling of given objects.

Awesome Lists containing this project

README

        


go-goldsert



A suite of Go test helpers which uses golden files to assert marshaling and unmarshaling of given objects.



Go Reference


Actions Status


Coverage


GitHub issues


GitHub pull requests


License Status

Each test helper operates in two stages:

1. Marshal the provided object to a byte slice and reads the corresponding
golden file from disk, follow by verifying both byte slices are identical.
2. Unmarshal the content from the golden file and verify that the result is
identical to the original object.

## Import

```go
import "github.com/jimeh/go-goldsert"
```

## Usage

Typical usage should look something like this in a tabular test:

```go
type MyStruct struct {
FooBar string `json:"foo_bar" yaml:"fooBar" xml:"Foo_Bar"`
}

func TestMyStructMarshaling(t *testing.T) {
tests := []struct {
name string
obj *MyStruct
}{
{name: "empty", obj: &MyStruct{}},
{name: "full", obj: &MyStruct{FooBar: "Hello World!"}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
goldsert.JSONMarshaling(t, tt.obj)
goldsert.YAMLMarshaling(t, tt.obj)
goldsert.XMLMarshaling(t, tt.obj)
})
}
}
```

The above example will read from the following golden files:

- `testdata/TestMyStructMarshaling/empty/goldsert_json.golden`
- `testdata/TestMyStructMarshaling/empty/goldsert_yaml.golden`
- `testdata/TestMyStructMarshaling/empty/goldsert_xml.golden`
- `testdata/TestMyStructMarshaling/full/goldsert_json.golden`
- `testdata/TestMyStructMarshaling/full/goldsert_yaml.golden`
- `testdata/TestMyStructMarshaling/full/goldsert_xml.golden`

If a corresponding golden file cannot be found on disk, the test will fail. To
create/update golden files, simply set the `GOLDEN_UPDATE` environment variable
to one of `1`, `y`, `t`, `yes`, `on`, or `true` when running tests.

It is highly recommended that golden files are committed to source control, as
it allow tests to fail when the marshal results for an object changes.

## Documentation

Please see the
[Go Reference](https://pkg.go.dev/github.com/jimeh/go-goldsert#section-documentation)
for documentation and examples.

## License

[MIT](https://github.com/jimeh/go-goldsert/blob/main/LICENSE)