sq/drivers/xlsx/xlsx_test.go

84 lines
2.3 KiB
Go
Raw Normal View History

2020-08-06 20:58:47 +03:00
package xlsx_test
import (
"testing"
"github.com/neilotoole/sq/testh/tutil"
2020-08-06 20:58:47 +03:00
"github.com/stretchr/testify/require"
"github.com/neilotoole/sq/drivers/xlsx"
"github.com/neilotoole/sq/libsq/core/options"
2020-08-06 20:58:47 +03:00
"github.com/neilotoole/sq/libsq/source"
"github.com/neilotoole/sq/testh"
"github.com/neilotoole/sq/testh/proj"
"github.com/neilotoole/sq/testh/sakila"
)
func Test_Smoke_Subset(t *testing.T) {
th := testh.New(t)
src := th.Source(sakila.XLSXSubset)
sink, err := th.QuerySQL(src, "SELECT * FROM actor")
require.NoError(t, err)
require.Equal(t, len(sakila.TblActorCols()), len(sink.RecMeta))
2020-08-06 20:58:47 +03:00
require.Equal(t, sakila.TblActorCount, len(sink.Recs))
}
func Test_Smoke_Full(t *testing.T) {
tutil.SkipShort(t, true)
2020-08-06 20:58:47 +03:00
// This test fails (in GH workflow) on Windows without testh.OptLongDB.
// That's probably worth looking into further. It shouldn't be that slow,
// even on Windows. However, we are going to rewrite the xlsx driver eventually,
// so it can wait until then.
// See: https://github.com/neilotoole/sq/issues/200
th := testh.New(t, testh.OptLongDB())
2020-08-06 20:58:47 +03:00
src := th.Source(sakila.XLSX)
sink, err := th.QuerySQL(src, "SELECT * FROM actor")
require.NoError(t, err)
require.Equal(t, len(sakila.TblActorCols()), len(sink.RecMeta))
2020-08-06 20:58:47 +03:00
require.Equal(t, sakila.TblActorCount, len(sink.Recs))
}
func Test_XLSX_BadDateRecognition(t *testing.T) {
t.Parallel()
th := testh.New(t)
src := &source.Source{
Handle: "@xlsx_bad_date",
Type: xlsx.Type,
Location: proj.Abs("drivers/xlsx/testdata/problem_with_recognizing_date_colA.xlsx"),
Options: options.Options{"header": []string{"true"}},
}
hasHeader, ok, err := options.HasHeader(src.Options)
require.NoError(t, err)
require.True(t, ok)
require.True(t, hasHeader)
sink, err := th.QuerySQL(src, "SELECT * FROM Summary")
require.NoError(t, err)
require.Equal(t, 21, len(sink.Recs))
}
// TestHandleSomeEmptySheets verifies that sq can import XLSX
// when there are some empty sheets.
func TestHandleSomeEmptySheets(t *testing.T) {
t.Parallel()
th := testh.New(t)
src := &source.Source{
Handle: "@xlsx_empty_sheets",
Type: xlsx.Type,
Location: proj.Abs("drivers/xlsx/testdata/test_with_some_empty_sheets.xlsx"),
}
sink, err := th.QuerySQL(src, "SELECT * FROM Sheet1")
require.NoError(t, err)
require.Equal(t, 2, len(sink.Recs))
}