sq/cli/cmd_ping_test.go
Neil O'Toole ed9aa38a67
Improvements to source commands (#139)
* Expose source.Set.Data() method

* jsonw.writeJSON cleaned up

* sq add now respects --json

* Location strings are subject to more scrutiny

* Ignore .db files in project dir

* sq add is more restrictive about location string

* source.RedactedLocation now uses 'xxxxx' per stdlib url.URL.Redacted()

* Update changelog for v0.23.0

* typos
2022-12-31 20:17:44 -07:00

74 lines
1.8 KiB
Go

package cli_test
import (
"encoding/csv"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/neilotoole/sq/libsq/source"
"github.com/neilotoole/sq/testh"
"github.com/neilotoole/sq/testh/sakila"
)
func TestCmdPing(t *testing.T) {
t.Parallel()
err := newRun(t).Exec("ping")
require.Error(t, err, "no active data source")
err = newRun(t).Exec("ping", "invalid_handle")
require.Error(t, err)
err = newRun(t).Exec("ping", "@not_a_handle")
require.Error(t, err)
var ru *Run
th := testh.New(t)
src1, src2 := th.Source(sakila.CSVActor), th.Source(sakila.CSVActorNoHeader)
ru = newRun(t).add(*src1)
err = ru.Exec("ping", "--csv", src1.Handle)
require.NoError(t, err)
checkPingOutputCSV(t, ru, *src1)
ru = newRun(t).add(*src2)
err = ru.Exec("ping", "--csv", src2.Handle)
require.NoError(t, err)
checkPingOutputCSV(t, ru, *src2)
ru = newRun(t).add(*src1, *src2)
err = ru.Exec("ping", "--csv", src1.Handle, src2.Handle)
require.NoError(t, err)
checkPingOutputCSV(t, ru, *src1, *src2)
}
// checkPintOutputCSV reads CSV records from h.out, and verifies
// that there's an appropriate record for each of srcs.
func checkPingOutputCSV(t *testing.T, h *Run, srcs ...source.Source) {
recs, err := csv.NewReader(h.out).ReadAll()
require.NoError(t, err)
require.Equal(t, len(srcs), len(recs))
if len(srcs) > 0 {
require.Equal(t, 3, len(recs[0]), "each ping record should have 3 fields, but got %d fields", len(recs[0]))
}
handles := make(map[string]bool)
for _, src := range srcs {
handles[src.Handle] = true
}
for i := 0; i < len(recs); i++ {
recHandle := recs[i][0]
require.True(t, handles[recHandle], "should have handle %q in map", recHandle)
_, err = time.ParseDuration(recs[i][1])
require.NoError(t, err, "should be a valid duration value")
require.Equal(t, "pong", recs[i][2], "error field should be empty")
}
}