Skip to content

Commit 0541e6a

Browse files
committed
fix sql alchemy test
1 parent 6ec9951 commit 0541e6a

File tree

3 files changed

+15
-19
lines changed

3 files changed

+15
-19
lines changed

python/test/conftest.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,21 @@ def engine():
8383
password = os.environ.get("TIMEPLUS_PASSWORD")
8484
api_address = os.environ.get("TIMEPLUS_HOST")
8585
parsed_url = urlparse(api_address)
86-
api_netloc = parsed_url.netloc
87-
api_schema = parsed_url.scheme
8886

8987
workspace = os.environ.get("TIMEPLUS_WORKSPACE") or "tp-demo"
9088

89+
schema = parsed_url.scheme
90+
host = parsed_url.hostname
91+
port = parsed_url.port
92+
93+
if schema == "https" and port is None:
94+
port = 443
95+
96+
if schema == "http" and port is None:
97+
port = 80
98+
9199
if api_key is not None:
92-
engine_connection_string = f"timeplus://:{api_key}@{api_netloc}/{workspace}"
100+
engine_connection_string = f"timeplus://:{api_key}@{host}:{port}/{workspace}"
93101
print(f"create engine with connection {engine_connection_string}")
94102
engine = create_engine(engine_connection_string)
95103
return engine

python/test/test_sqlalchemy_query.py

+1-12
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,33 @@
44
from timeplus import View
55

66

7-
@pytest.mark.skip(reason="Skipping this test for now")
87
def test_driver_sql(engine):
98
with engine.connect() as conn:
109
result = conn.exec_driver_sql(
1110
"select cid from table(car_live_data) limit 5")
1211
assert len(result.fetchall()) == 5
1312

1413

15-
@pytest.mark.skip(reason="Skipping this test for now")
1614
def test_driver_sql_live(engine):
1715
with engine.connect() as conn:
1816
result = conn.exec_driver_sql(
1917
"select cid from car_live_data limit 5")
2018
assert len(result.fetchall()) == 5
2119

22-
@pytest.mark.skip(reason="Skipping this test for now")
2320
def test_text_sql(engine):
2421
with engine.connect() as connection:
2522
result = connection.execute(
2623
text("select * from table(car_live_data) limit 3"))
2724
rows = [row for row in result]
2825
assert len(rows) == 3
2926

30-
@pytest.mark.skip(reason="Skipping this test for now")
3127
def test_text_sql_live(engine):
3228
with engine.connect() as connection:
3329
result = connection.execute(
3430
text("select * from car_live_data limit 3"))
3531
rows = [row for row in result]
3632
assert len(rows) == 3
3733

38-
@pytest.mark.skip(reason="Skipping this test for now")
3934
def test_text_streaming_sql(engine):
4035
with engine.connect() as connection:
4136
result = connection.execute(text("select * from car_live_data"))
@@ -48,20 +43,17 @@ def test_text_streaming_sql(engine):
4843
break
4944
assert count == max
5045

51-
@pytest.mark.skip(reason="Skipping this test for now")
5246
def test_check_stream_existence(engine):
5347
table_name = "car_live_data"
5448
with engine.connect() as conn:
5549
table_exists = engine.dialect.has_table(conn, table_name)
5650
assert table_exists
5751

58-
@pytest.mark.skip(reason="Skipping this test for now")
5952
def test_table_names(engine):
6053
with engine.connect() as conn:
6154
tables = engine.dialect.get_table_names(conn)
6255
assert "car_live_data" in tables
6356

64-
@pytest.mark.skip(reason="Skipping this test for now")
6557
def test_view_names(test_environment, engine):
6658
view_name = "example_mv"
6759
view = View(env=test_environment).name(view_name)
@@ -87,7 +79,6 @@ def test_view_names(test_environment, engine):
8779

8880
view.delete()
8981

90-
@pytest.mark.skip(reason="Skipping this test for now")
9182
def test_materialized_view_names(engine,test_environment,test_stream):
9283
view_name = "example_mv"
9384
view = View(env=test_environment).name(view_name)
@@ -111,23 +102,21 @@ def test_materialized_view_names(engine,test_environment,test_stream):
111102

112103
view.delete()
113104

114-
@pytest.mark.skip(reason="Skipping this test for now")
115105
def test_view_reflection(engine):
116106
metadata_obj = MetaData()
117107
car_view = Table("car_live_data", metadata_obj, autoload_with=engine)
118108
assert car_view is not None
119109
column_names = [c.name for c in car_view.columns]
120110
assert "speed_kmh" in column_names
121111

122-
@pytest.mark.skip(reason="Skipping this test for now")
112+
123113
def test_table_reflection(engine):
124114
metadata_obj = MetaData()
125115
car_table = Table("car_live_data", metadata_obj, autoload_with=engine)
126116
assert car_table is not None
127117
column_names = [c.name for c in car_table.columns]
128118
assert "cid" in column_names
129119

130-
@pytest.mark.skip(reason="Skipping this test for now")
131120
def test_select_query(engine):
132121
metadata_obj = MetaData()
133122
car_table = Table("car_live_data", metadata_obj, autoload_with=engine)

python/test/test_sqlalchemy_types.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import pytest
21
from sqlalchemy import text
32

4-
@pytest.mark.skip(reason="Skipping this test for now")
3+
54
def test_select_basic_types(engine):
65
with engine.connect() as conn:
76
result = conn.execute(text(
@@ -20,7 +19,7 @@ def test_select_basic_types(engine):
2019
assert isinstance(row[9], bool)
2120
assert isinstance(row[10], str)
2221

23-
@pytest.mark.skip(reason="Skipping this test for now")
22+
2423
def test_select_composite_array_tuple(engine):
2524
with engine.connect() as conn:
2625
result = conn.execute(text(
@@ -34,7 +33,7 @@ def test_select_composite_array_tuple(engine):
3433
assert isinstance(row[1][1], str)
3534
assert isinstance(row[1][2], float)
3635

37-
@pytest.mark.skip(reason="Skipping this test for now")
36+
3837
def test_select_composite_map(engine):
3938
with engine.connect() as conn:
4039
result = conn.execute(text(

0 commit comments

Comments
 (0)