sq/testh/testsrc/testsrc.go

44 lines
1.2 KiB
Go
Raw Normal View History

2020-08-06 20:58:47 +03:00
// Package testsrc holds testing constants (in addition
// to pkg sakila).
package testsrc
// Handles for various test data sources.
const (
CSVPerson = "@csv_person"
CSVPersonBig = "@csv_person_big"
CSVPersonNoHeader = "@csv_person_noheader"
// PplUD is the handle of a user-defined "people" source.
PplUD = "@ud_ppl"
// RSSNYTLocalUD is the handle of a user-defined RSS source.
RSSNYTLocalUD = "@ud_rss_nytimes_local"
// MiscDB is the handle of a SQLite DB with misc testing data.
2020-08-06 20:58:47 +03:00
MiscDB = "@miscdb"
// EmptyDB is the handle of an empty SQLite DB.
EmptyDB = "@emptydb"
// BlobDB is the handle of a SQLite DB containing blobs. For example,
// it contains the gopher gif in the "blobs" table.
BlobDB = "@blobdb"
2020-08-06 20:58:47 +03:00
)
const (
// TblTypes is a table in MiscDB.
TblTypes = "tbl_types"
)
// Paths for various testdata.
const (
// PathSrcsConfig is the path of the yml file containing
// the test sources template config file.
PathSrcsConfig = "/testh/testdata/sources.sq.yml"
PathDriverDefPpl = "drivers/userdriver/xmlud/testdata/ppl.sq.yml"
PathDriverDefRSS = "drivers/userdriver/xmlud/testdata/rss.sq.yml"
PathXLSXTestHeader = "drivers/xlsx/testdata/test_header.xlsx"
)