Categorygithub.com/graphcms/cupaloy-json
modulepackage
1.3.0
Repository: https://github.com/graphcms/cupaloy-json.git
Documentation: pkg.go.dev

# README


Build Status Coverage Status Go Report Card GoDoc

Incredibly simple Go snapshot testing: cupaloy takes a snapshot of your test output and compares it to a snapshot committed alongside your tests. If the values don't match then you'll be forced to update the snapshot file before the test passes.

Snapshot files are handled automagically: just use the cupaloy.SnapshotT(t, value) function in your tests and cupaloy will automatically find the relevant snapshot file and compare it with the given value.

Usage

func TestExample(t *testing.T) {
    result := someFunction()

    // check that the result is the same as the last time the snapshot was updated
    // if the result has changed then the test will be failed with an error containing
    // a diff of the changes
    cupaloy.SnapshotT(t, result)
}

To update the snapshots simply set the UPDATE_SNAPSHOTS environment variable and run your tests e.g.

UPDATE_SNAPSHOTS=true go test ./...

This will fail all tests where the snapshot was updated (to stop you accidentally updating snapshots in CI) but your snapshot files will now have been updated to reflect the current output of your code.

Installation

go get -u github.com/bradleyjkemp/cupaloy

Further Examples

Table driven tests

var testCases = map[string][]string{
    "TestCaseOne": []string{......},
    "AnotherTestCase": []string{......},
    ....
}

func TestCases(t *testing.T) {
    for testName, args := range testCases {
        t.Run(testName, func(t *testing.T) {
            result := functionUnderTest(args...)
            cupaloy.SnapshotT(t, result)
        })
    }
}

Changing output directory

func TestSubdirectory(t *testing.T) {
    result := someFunction()
    snapshotter := cupaloy.New(cupaloy.SnapshotSubdirectory("testdata"))
    err := snapshotter.Snapshot(result)
    if err != nil {
        t.Fatalf("error: %s", err)
    }
}

For further usage examples see basic_test.go and advanced_test.go in the examples/ directory which are both kept up to date and run on CI.

# Packages

No description provided by the author

# Functions

EnvVariableName can be used to customize the environment variable that determines whether snapshots should be updated e.g.
New constructs a new, configured instance of cupaloy using the given Configurators.
ShouldUpdate can be used to provide custom logic to decide whether or not to update a snapshot e.g.
Snapshot calls Snapshotter.Snapshot with the default config.
SnapshotMulti calls Snapshotter.SnapshotMulti with the default config.
SnapshotSubdirectory can be used to customize the location that snapshots are stored in.
SnapshotT calls Snapshotter.SnapshotT with the default config.

# Interfaces

Snapshotter is the API for taking snapshots of values in your tests.

# Type aliases

Configurator is a functional option that can be passed to cupaloy.New() to change snapshotting behaviour.