mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-19 14:11:45 +03:00
a1cfd5d525
* can now import XLSX with empty sheets * renamed XLSX test article
77 lines
1.9 KiB
Go
77 lines
1.9 KiB
Go
package xlsx_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/neilotoole/sq/drivers/xlsx"
|
|
"github.com/neilotoole/sq/libsq/core/options"
|
|
"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))
|
|
require.Equal(t, sakila.TblActorCount, len(sink.Recs))
|
|
}
|
|
|
|
func Test_Smoke_Full(t *testing.T) {
|
|
testh.SkipShort(t, true)
|
|
|
|
th := testh.New(t)
|
|
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))
|
|
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))
|
|
}
|