mirror of https://github.com/docker/cli.git
24 lines
677 B
Go
24 lines
677 B
Go
package context
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"gotest.tools/v3/assert"
|
|
"gotest.tools/v3/golden"
|
|
)
|
|
|
|
func TestInspect(t *testing.T) {
|
|
cli := makeFakeCli(t)
|
|
createTestContext(t, cli, "current")
|
|
cli.OutBuffer().Reset()
|
|
assert.NilError(t, runInspect(cli, inspectOptions{
|
|
refs: []string{"current"},
|
|
}))
|
|
expected := string(golden.Get(t, "inspect.golden"))
|
|
si := cli.ContextStore().GetStorageInfo("current")
|
|
expected = strings.Replace(expected, "<METADATA_PATH>", strings.Replace(si.MetadataPath, `\`, `\\`, -1), 1)
|
|
expected = strings.Replace(expected, "<TLS_PATH>", strings.Replace(si.TLSPath, `\`, `\\`, -1), 1)
|
|
assert.Equal(t, cli.OutBuffer().String(), expected)
|
|
}
|