sq/cli/config/testdata/good.01.sq.yml
2021-02-22 00:37:00 -07:00

168 lines
4.3 KiB
YAML

defaults:
ping_timeout: 10s
shell_completion_timeout: 1s
output_format: table
output_header: true
sources:
active: '@sl1'
scratch: ""
items:
- handle: '@sl1'
type: sqlite3
location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtest.db
- handle: '@xl1'
type: xlsx
location: ${SQ_ROOT}/drivers/xlsx/testdata/test_header.xlsx
defaults:
header:
- "true"
- handle: '@csv1'
type: csv
location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_header.csv
defaults:
header:
- "true"
- handle: '@ms1'
type: sqlserver
location: sqlserver://sq:p_ssW0rd@localhost?database=sqtest
- handle: '@my1'
type: mysql
location: mysql://sq:p_ssW0rd@localhost:3306/sqtest
- handle: '@pg1'
type: postgres
location: postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable
- handle: '@ms_sqtest'
type: sqlserver
location: sqlserver://sq:p_ssW0rd@localhost?database=sqtest
- handle: '@ms_sqtype'
type: sqlserver
location: sqlserver://sq:p_ssW0rd@localhost?database=sqtype
- handle: '@pg_sqtest'
type: postgres
location: postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable
- handle: '@pg_sqtype'
type: postgres
location: postgres://sq:p_ssW0rd@localhost/sqtype?sslmode=disable
- handle: '@sl_sqtest'
type: sqlite3
location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtest.db
- handle: '@sl_sqtype'
type: sqlite3
location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtype.db
- handle: '@my_sqtest'
type: mysql
location: mysql://sq:p_ssW0rd@localhost:3306/sqtest
- handle: '@my_sqtype'
type: mysql
location: mysql://sq:p_ssW0rd@localhost:3306/sqtype
- handle: '@xl_header'
type: xlsx
location: ${SQ_ROOT}/drivers/xlsx/testdata/test_header.xlsx
defaults:
header:
- "true"
- handle: '@xl_noheader'
type: xlsx
location: ${SQ_ROOT}/drivers/xlsx/testdata/test_noheader.xlsx
- handle: '@xl_remote'
type: xlsx
location: http://neilotoole.io/sq/test/test1.xlsx
- handle: '@csv_person_comma_header'
type: csv
location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_header.csv
defaults:
header:
- "true"
- handle: '@csv_person_comma_noheader'
type: csv
location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_noheader.csv
- handle: '@tsv_person_header'
type: tsv
location: ${SQ_ROOT}/drivers/csv/testdata/person_header.tsv
- handle: '@tsv_person_noheader'
type: tsv
location: ${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv
- handle: '@tsv_person_noheader_cols'
type: tsv
location: ${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv
defaults:
cols:
- uid,username,email
- handle: '@rss_basic'
type: rss
location: ${SQ_ROOT}/libsq/driver/userdriver/testdata/basic.rss.xml
- handle: '@nytimes'
type: rss
location: http://www.nytimes.com/services/xml/rss/nyt/World.xml
- handle: '@myfriends'
type: ppl
location: ${SQ_ROOT}/libsq/driver/userdriver/testdata/people.xml
- handle: '@peeps'
type: ppl
location: ${SQ_ROOT}/libsq/driver/userdriver/testdata/people2.xml
- handle: '@ds_invalid_creds'
type: mysql
location: mysql://root:badpass@localhost:3306/sqtest
- handle: '@ds_invalid_port'
type: mysql
location: mysql://root:root@localhost:33661/sqtest
- handle: '@ds_invalid_host'
type: mysql
location: mysql://root:root@news.google.com:80/sqtest
- handle: '@ds_invalid_db'
type: mysql
location: mysql://sq:sq@localhost:3306/not_a_db
- handle: '@csvbig'
type: csv
location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_header_big.csv
defaults:
header:
- "true"
- handle: '@sl_sakila'
type: sqlite3
location: sqlite3://${SQ_ROOT}/examples/sakila/sqlite-sakila-db/sakila.db
- handle: '@my_sakila'
type: mysql
location: mysql://root:sakila@localhost:33067/sakila
- handle: '@pg_sakila'
type: postgres
location: postgres://sq:p_ssW0rd@localhost:54321/sakila?sslmode=disable
notification:
enabled: []
destinations: []