1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
# fmt: off
import pytest
import subprocess
import sys
from typing import List
from conftest import ShellTest
from conftest import json_extension
import os
@pytest.mark.skipif(os.name == 'nt', reason="Skipped on windows")
class TestReadFromStdin(object):
def test_read_stdin_direct(self, shell):
test = (
ShellTest(shell)
.input_file('data/csv/test/test.csv')
.statement("""create table mytable as select * from read_text('/dev/stdin')""")
.statement("select length(content) as len from mytable;")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout("len")
result.check_stdout('77780')
def test_read_stdin_csv(self, shell):
test = (
ShellTest(shell)
.input_file('data/csv/test/test.csv')
.statement("""
create table mytable as select * from
read_csv('/dev/stdin',
columns=STRUCT_PACK(foo := 'INTEGER', bar := 'INTEGER', baz := 'VARCHAR'),
AUTO_DETECT='false'
)
""")
.statement("select * from mytable limit 1;")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout("foo,bar,baz")
result.check_stdout('0,0, test')
def test_read_stdin_csv_where_filename(self, shell):
test = (
ShellTest(shell)
.input_file('data/csv/test/test.csv')
.statement("""
SELECT * FROM read_csv_auto(
'data/csv/bug_9005/teste*.csv',
header=TRUE,
filename=true,
union_by_name=True
) where filename='data/csv/bug_9005/teste1.csv'
""")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout([
'id,name,factor,filename',
'1,Ricardo,1.5,data/csv/bug_9005/teste1.csv',
'2,Jose,2.0,data/csv/bug_9005/teste1.csv'
])
def test_read_stdin_csv_auto(self, shell):
test = (
ShellTest(shell)
.input_file('data/csv/test/test.csv')
.statement("""
create table mytable as select * from
read_csv_auto('/dev/stdin')
""")
.statement("select * from mytable limit 1;")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout("column0,column1,column2")
result.check_stdout('0,0, test')
def test_split_part_csv(self, shell):
test = (
ShellTest(shell)
.input_file('data/csv/split_part.csv')
.statement("""
FROM read_csv('/dev/stdin') select split_part(C1, ',', 2) as res;
""")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout("res")
result.check_stdout('12')
result.check_stdout('12')
def test_read_stdin_csv_auto_projection(self, shell):
test = (
ShellTest(shell)
.input_file('data/csv/tpcds_14.csv')
.statement("""
create table mytable as select * from
read_csv_auto('/dev/stdin')
""")
.statement("select channel,i_brand_id,sum_sales,number_sales from mytable;")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout("web,8006004,844.21,21")
def test_read_stdin_ndjson(self, shell, json_extension):
test = (
ShellTest(shell)
.input_file('data/json/example_rn.ndjson')
.statement("""
create table mytable as select * from
read_ndjson_objects('/dev/stdin')
""")
.statement("select * from mytable;")
.add_argument(
'-list',
':memory:'
)
)
result = test.run()
result.check_stdout([
"json",
'{"id":1,"name":"O Brother, Where Art Thou?"}',
'{"id":2,"name":"Home for the Holidays"}',
'{"id":3,"name":"The Firm"}',
'{"id":4,"name":"Broadcast News"}',
'{"id":5,"name":"Raising Arizona"}'
])
def test_read_stdin_json_auto(self, shell, json_extension):
test = (
ShellTest(shell)
.input_file('data/json/example_rn.ndjson')
.statement("""
create table mytable as select * from
read_json_auto('/dev/stdin')
""")
.statement("select * from mytable;")
.add_argument(
'-list',
':memory:'
)
)
result = test.run()
result.check_stdout([
'id|name',
'1|O Brother, Where Art Thou?',
'2|Home for the Holidays',
'3|The Firm',
'4|Broadcast News',
'5|Raising Arizona'
])
def test_read_stdin_json_array(self, shell, json_extension):
test = (
ShellTest(shell)
.input_file('data/json/11407.json')
.statement("""
create table mytable as select * from
read_json_auto('/dev/stdin')
""")
.statement("select * from mytable;")
.add_argument(
'-list',
':memory:'
)
)
result = test.run()
result.check_stdout([
'k',
'v',
'v2'
])
def test_read_stdin_json_auto_recursive_cte(self, shell, json_extension):
# FIXME: disabled for now
return
test = (
ShellTest(shell)
.input_file('data/json/filter_keystage.ndjson')
.statement("""
CREATE TABLE mytable AS
WITH RECURSIVE nums AS (
SELECT 0 AS n
UNION ALL
SELECT n + 1
FROM nums
WHERE n < (
SELECT MAX(JSON_ARRAY_LENGTH(filter_keystage))::int - 1
FROM read_json_auto('/dev/stdin'))
) SELECT * FROM nums;
""")
.statement("select * from mytable;")
.add_argument(
'-list',
':memory:'
)
)
result = test.run()
result.check_stdout([
'n',
'0',
'1',
'2',
])
@pytest.mark.parametrize("alias", [
"'/dev/stdout'",
'stdout'
])
def test_copy_to_stdout(self, shell, alias):
test = (
ShellTest(shell)
.statement(f"COPY (SELECT 42) TO {alias};")
)
result = test.run()
result.check_stdout('42')
@pytest.mark.parametrize("alias", [
"'/dev/stdout'",
'stdout'
])
def test_copy_csv_to_stdout(self, shell, alias):
test = (
ShellTest(shell)
.statement(f"COPY (SELECT 42) TO {alias} WITH (FORMAT 'csv');")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stdout('42')
@pytest.mark.parametrize("alias", [
"'/dev/stderr'"
])
def test_copy_csv_to_stderr(self, shell, alias):
test = (
ShellTest(shell)
.statement(f"COPY (SELECT 42) TO {alias} WITH (FORMAT 'csv');")
.add_argument(
'-csv',
':memory:'
)
)
result = test.run()
result.check_stderr('42')
def test_copy_non_inlined_string(self, shell):
test = (
ShellTest(shell)
.statement("select list(concat('thisisalongstring', range::VARCHAR)) i from range(10000)")
)
result = test.run()
result.check_stdout('thisisalongstring')
def test_write_to_stdout_piped_to_file(self, shell, random_filepath):
test = (
ShellTest(shell)
.statement("copy (select * from range(10000) tbl(i)) to '/dev/stdout' (format csv)")
.output_file(random_filepath.as_posix())
)
result = test.run()
result.check_stdout('9999')
# fmt: on
|