sq/cli/output/htmlw/htmlw_test.go
Neil O'Toole c5cf6c0cc0
#217: Configurable timestamp format (#218)
* Moved time functions from pkg stringz to pkg timez

* Refactor options.Opt

* wip: initial work on configurable time layout

* wip: most printers now respect format.datetime and friends

* Folded pkg timefmt into timez

* Refactor options.Opt; refine options

* Add 'sq config set OPTION --help' mechanism

* Finished completion of OptDateFormatAsNumber and OptTimeFormatAsNumber
2023-05-06 20:36:34 -06:00

48 lines
1.0 KiB
Go

package htmlw_test
import (
"bytes"
"os"
"testing"
"github.com/neilotoole/sq/cli/output"
"github.com/stretchr/testify/require"
"github.com/neilotoole/sq/cli/output/htmlw"
"github.com/neilotoole/sq/testh"
"github.com/neilotoole/sq/testh/sakila"
)
func TestRecordWriter(t *testing.T) {
testCases := []struct {
name string
numRecs int
fixtPath string
}{
{name: "actor_0", numRecs: 0, fixtPath: "testdata/actor_0_rows.html"},
{name: "actor_3", numRecs: 3, fixtPath: "testdata/actor_3_rows.html"},
}
for _, tc := range testCases {
tc := tc
t.Run(tc.name, func(t *testing.T) {
recMeta, recs := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor)
recs = recs[0:tc.numRecs]
buf := &bytes.Buffer{}
pr := output.NewPrinting()
w := htmlw.NewRecordWriter(buf, pr)
require.NoError(t, w.Open(recMeta))
require.NoError(t, w.WriteRecords(recs))
require.NoError(t, w.Close())
want, err := os.ReadFile(tc.fixtPath)
require.NoError(t, err)
require.Equal(t, string(want), buf.String())
})
}
}