mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-22 19:43:51 -05:00
228 lines
7.5 KiB
Bash
228 lines
7.5 KiB
Bash
#!/usr/bin/env bats
|
|
load $BATS_TEST_DIRNAME/helper/common.bash
|
|
|
|
setup() {
|
|
setup_common
|
|
dolt sql <<SQL
|
|
CREATE TABLE test_int (
|
|
pk BIGINT NOT NULL,
|
|
c1 BIGINT,
|
|
c2 BIGINT,
|
|
c3 BIGINT,
|
|
c4 BIGINT,
|
|
c5 BIGINT,
|
|
PRIMARY KEY (pk)
|
|
);
|
|
CREATE TABLE test_string (
|
|
pk LONGTEXT NOT NULL,
|
|
c1 LONGTEXT,
|
|
c2 LONGTEXT,
|
|
c3 LONGTEXT,
|
|
c4 LONGTEXT,
|
|
c5 LONGTEXT,
|
|
PRIMARY KEY (pk)
|
|
);
|
|
SQL
|
|
}
|
|
|
|
teardown() {
|
|
assert_feature_version
|
|
teardown_common
|
|
}
|
|
|
|
@test "export-tables: table export sql datetime" {
|
|
dolt sql <<SQL
|
|
CREATE TABLE test (
|
|
pk BIGINT PRIMARY KEY,
|
|
v1 DATE,
|
|
v2 TIME,
|
|
v3 YEAR,
|
|
v4 DATETIME
|
|
);
|
|
INSERT INTO test VALUES
|
|
(1,'2020-04-08','11:11:11','2020','2020-04-08 11:11:11'),
|
|
(2,'2020-04-08','12:12:12','2020','2020-04-08 12:12:12');
|
|
SQL
|
|
dolt table export test test.sql
|
|
run cat test.sql
|
|
[[ "$output" =~ "INSERT INTO \`test\` (\`pk\`,\`v1\`,\`v2\`,\`v3\`,\`v4\`) VALUES (1,'2020-04-08','11:11:11','2020','2020-04-08 11:11:11');" ]] || false
|
|
[[ "$output" =~ "INSERT INTO \`test\` (\`pk\`,\`v1\`,\`v2\`,\`v3\`,\`v4\`) VALUES (2,'2020-04-08','12:12:12','2020','2020-04-08 12:12:12');" ]] || false
|
|
dolt table export test test.json
|
|
run cat test.json
|
|
[ "$output" = '{"rows": [{"pk":1,"v1":"2020-04-08","v2":"11:11:11","v3":"2020","v4":"2020-04-08 11:11:11"},{"pk":2,"v1":"2020-04-08","v2":"12:12:12","v3":"2020","v4":"2020-04-08 12:12:12"}]}' ]
|
|
}
|
|
|
|
@test "export-tables: dolt table import from stdin export to stdout" {
|
|
skiponwindows "Need to install python before this test will work."
|
|
echo 'pk,c1,c2,c3,c4,c5
|
|
0,1,2,3,4,5
|
|
9,8,7,6,5,4
|
|
'|dolt table import -u test_int
|
|
dolt table export --file-type=csv test_int|python -c '
|
|
import sys
|
|
rows = []
|
|
for line in sys.stdin:
|
|
line = line.strip()
|
|
|
|
if line != "":
|
|
rows.append(line.strip().split(","))
|
|
|
|
if len(rows) != 3:
|
|
sys.exit(1)
|
|
|
|
if rows[0] != "pk,c1,c2,c3,c4,c5".split(","):
|
|
sys.exit(1)
|
|
|
|
if rows[1] != "0,1,2,3,4,5".split(","):
|
|
sys.exit(1)
|
|
|
|
if rows[2] != "9,8,7,6,5,4".split(","):
|
|
sys.exit(1)
|
|
'
|
|
}
|
|
|
|
@test "export-tables: dolt table export" {
|
|
dolt sql -q "insert into test_int values (0, 1, 2, 3, 4, 5)"
|
|
run dolt table export test_int export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
[ -f export.csv ]
|
|
run grep 5 export.csv
|
|
[ "$status" -eq 0 ]
|
|
[ "${#lines[@]}" -eq 2 ]
|
|
run dolt table export test_int export.csv
|
|
[ "$status" -ne 0 ]
|
|
[[ "$output" =~ "export.csv already exists" ]] || false
|
|
run dolt table export -f test_int export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
[ -f export.csv ]
|
|
}
|
|
|
|
@test "export-tables: dolt table SQL export" {
|
|
dolt sql -q "insert into test_int values (0, 1, 2, 3, 4, 5)"
|
|
run dolt table export test_int export.sql
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
[ -f export.sql ]
|
|
diff --strip-trailing-cr $BATS_TEST_DIRNAME/helper/1pk5col-ints.sql export.sql
|
|
|
|
# string columns
|
|
dolt sql -q "create table strings (a varchar(10) primary key, b char(10))"
|
|
dolt sql -q "insert into strings values ('abc', '123'), ('def', '456')"
|
|
dolt commit -am "Checkpoint"
|
|
|
|
dolt table export strings -f export.sql
|
|
dolt sql < export.sql
|
|
|
|
run dolt status
|
|
[[ "$output" =~ "working tree clean" ]] || false
|
|
|
|
# enum columns
|
|
dolt sql -q "create table enums (a varchar(10) primary key, b enum('one','two','three'))"
|
|
dolt sql -q "insert into enums values ('abc', 'one'), ('def', 'two')"
|
|
dolt commit -am "Checkpoint"
|
|
|
|
dolt table export enums -f export.sql
|
|
dolt sql < export.sql
|
|
|
|
run dolt status
|
|
[[ "$output" =~ "working tree clean" ]] || false
|
|
}
|
|
|
|
@test "export-tables: export a table with a string with commas to csv" {
|
|
run dolt sql -q "insert into test_string values ('tim', 'is', 'super', 'duper', 'rad', 'a,b,c,d,e')"
|
|
[ "$status" -eq 0 ]
|
|
run dolt table export test_string export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
grep -E \"a,b,c,d,e\" export.csv
|
|
}
|
|
|
|
@test "export-tables: export a table with a string with double quotes to csv" {
|
|
run dolt sql -q 'insert into test_string (pk,c1,c5) values ("this", "is", "a ""quotation""");'
|
|
[ "$status" -eq 0 ]
|
|
run dolt table export test_string export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
grep '"a ""quotation"""' export.csv
|
|
}
|
|
|
|
@test "export-tables: export a table with a string with new lines to csv" {
|
|
run dolt sql -q 'insert into test_string (pk,c1,c5) values ("this", "is", "a new \n line");'
|
|
[ "$status" -eq 0 ]
|
|
run dolt table export test_string export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
|
|
# output will be slit over two lines
|
|
grep 'this,is,,,,"a new ' export.csv
|
|
grep ' line"' export.csv
|
|
}
|
|
|
|
@test "export-tables: table with column with not null constraint can be exported and reimported" {
|
|
dolt sql -q "CREATE TABLE person_info(name VARCHAR(255) NOT NULL,location VARCHAR(255) NOT NULL,age BIGINT NOT NULL,PRIMARY KEY (name));"
|
|
dolt add .
|
|
dolt commit -m 'add person_info table'
|
|
dolt sql -q "INSERT INTO person_info (name, location, age) VALUES ('kevern smith', 'los angeles', 21);"
|
|
dolt sql -q "INSERT INTO person_info (name, location, age) VALUES ('barbara smith', 'los angeles', 24);"
|
|
|
|
# insert empty value in not null column
|
|
dolt sql -q "INSERT INTO person_info (name, location, age) VALUES ('gary busy', '', 900);"
|
|
dolt sql -q "INSERT INTO person_info (name, location, age) VALUES ('the tampa bay buccs', 'florida', 123);"
|
|
dolt sql -q "INSERT INTO person_info (name, location, age) VALUES ('michael fakeperson', 'fake city', 39);"
|
|
|
|
# create csvs
|
|
dolt sql -r csv -q 'select * from person_info' > sql-csv.csv
|
|
dolt table export person_info export-csv.csv
|
|
dolt checkout person_info
|
|
|
|
run dolt table import -u person_info sql-csv.csv
|
|
[ "$status" -eq 0 ]
|
|
run dolt table import -u person_info export-csv.csv
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "export-tables: export a table with a json string to csv" {
|
|
dolt sql -q "create table t2 (id int primary key, j JSON)"
|
|
dolt sql -q "insert into t2 values (0, '[\"hi\"]')"
|
|
|
|
run dolt table export t2 export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
|
|
# output will be split over two lines
|
|
grep 'id,j' export.csv
|
|
grep '"\[""hi""\]"' export.csv
|
|
}
|
|
|
|
@test "export-tables: uint schema parsing for writer_test.go backwards compatibility" {
|
|
dolt sql -q "create table t2 (name text, age int unsigned, title text)"
|
|
dolt sql -q "insert into t2 values ('Bill Billerson', 32, 'Senior Dufus')"
|
|
|
|
run dolt table export t2 export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
|
|
# output will be split over two lines
|
|
grep 'name,age,title' export.csv
|
|
grep 'Bill Billerson,32,Senior Dufus' export.csv
|
|
}
|
|
|
|
@test "export-tables: exporting a table with datetimes can be reimported" {
|
|
dolt sql -q "create table timetable(pk int primary key, time datetime)"
|
|
dolt sql -q "insert into timetable values (1, '2021-06-02 15:37:24 +0000 UTC');"
|
|
|
|
run dolt table export -f timetable export.csv
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" =~ "Successfully exported data." ]] || false
|
|
|
|
# reimport the data
|
|
dolt table rm timetable
|
|
run dolt table import -c --pk=pk timetable export.csv
|
|
[ "$status" -eq 0 ]
|
|
|
|
run dolt sql -q "SELECT * FROM timetable" -r csv
|
|
[[ "$output" =~ "1,2021-06-02 15:37:24 +0000 UTC" ]] || false
|
|
}
|