restic/cmd/restic/cmd_ls_integration_test.go

52 lines
1.3 KiB
Go
Raw Normal View History

package main
import (
"context"
2024-01-21 14:56:07 +00:00
"encoding/json"
"strings"
"testing"
rtest "github.com/restic/restic/internal/test"
)
2024-01-21 14:56:07 +00:00
func testRunLsWithOpts(t testing.TB, gopts GlobalOptions, opts LsOptions, args []string) []byte {
buf, err := withCaptureStdout(func() error {
gopts.Quiet = true
2024-01-21 14:56:07 +00:00
return runLs(context.TODO(), opts, gopts, args)
})
rtest.OK(t, err)
2024-01-21 14:56:07 +00:00
return buf.Bytes()
}
func testRunLs(t testing.TB, gopts GlobalOptions, snapshotID string) []string {
out := testRunLsWithOpts(t, gopts, LsOptions{}, []string{snapshotID})
return strings.Split(string(out), "\n")
}
2024-01-21 14:58:49 +00:00
func assertIsValidJSON(t *testing.T, data []byte) {
2024-01-21 14:56:07 +00:00
// Sanity check: output must be valid JSON.
var v []any
2024-01-21 14:56:07 +00:00
err := json.Unmarshal(data, &v)
rtest.OK(t, err)
rtest.Assert(t, len(v) == 4, "invalid ncdu output, expected 4 array elements, got %v", len(v))
2024-01-21 14:56:07 +00:00
}
func TestRunLsNcdu(t *testing.T) {
env, cleanup := withTestEnvironment(t)
defer cleanup()
testSetupBackupData(t, env)
2024-01-21 14:56:07 +00:00
opts := BackupOptions{}
// backup such that there are multiple toplevel elements
testRunBackup(t, env.testdata+"/0", []string{"."}, opts, env.gopts)
2024-01-21 14:56:07 +00:00
for _, paths := range [][]string{
{"latest"},
{"latest", "/0"},
{"latest", "/0", "/0/9"},
} {
ncdu := testRunLsWithOpts(t, env.gopts, LsOptions{Ncdu: true}, paths)
assertIsValidJSON(t, ncdu)
}
}