4
4
from timeplus import View
5
5
6
6
7
- @pytest .mark .skip (reason = "Skipping this test for now" )
8
7
def test_driver_sql (engine ):
9
8
with engine .connect () as conn :
10
9
result = conn .exec_driver_sql (
11
10
"select cid from table(car_live_data) limit 5" )
12
11
assert len (result .fetchall ()) == 5
13
12
14
13
15
- @pytest .mark .skip (reason = "Skipping this test for now" )
16
14
def test_driver_sql_live (engine ):
17
15
with engine .connect () as conn :
18
16
result = conn .exec_driver_sql (
19
17
"select cid from car_live_data limit 5" )
20
18
assert len (result .fetchall ()) == 5
21
19
22
- @pytest .mark .skip (reason = "Skipping this test for now" )
23
20
def test_text_sql (engine ):
24
21
with engine .connect () as connection :
25
22
result = connection .execute (
26
23
text ("select * from table(car_live_data) limit 3" ))
27
24
rows = [row for row in result ]
28
25
assert len (rows ) == 3
29
26
30
- @pytest .mark .skip (reason = "Skipping this test for now" )
31
27
def test_text_sql_live (engine ):
32
28
with engine .connect () as connection :
33
29
result = connection .execute (
34
30
text ("select * from car_live_data limit 3" ))
35
31
rows = [row for row in result ]
36
32
assert len (rows ) == 3
37
33
38
- @pytest .mark .skip (reason = "Skipping this test for now" )
39
34
def test_text_streaming_sql (engine ):
40
35
with engine .connect () as connection :
41
36
result = connection .execute (text ("select * from car_live_data" ))
@@ -48,20 +43,17 @@ def test_text_streaming_sql(engine):
48
43
break
49
44
assert count == max
50
45
51
- @pytest .mark .skip (reason = "Skipping this test for now" )
52
46
def test_check_stream_existence (engine ):
53
47
table_name = "car_live_data"
54
48
with engine .connect () as conn :
55
49
table_exists = engine .dialect .has_table (conn , table_name )
56
50
assert table_exists
57
51
58
- @pytest .mark .skip (reason = "Skipping this test for now" )
59
52
def test_table_names (engine ):
60
53
with engine .connect () as conn :
61
54
tables = engine .dialect .get_table_names (conn )
62
55
assert "car_live_data" in tables
63
56
64
- @pytest .mark .skip (reason = "Skipping this test for now" )
65
57
def test_view_names (test_environment , engine ):
66
58
view_name = "example_mv"
67
59
view = View (env = test_environment ).name (view_name )
@@ -87,7 +79,6 @@ def test_view_names(test_environment, engine):
87
79
88
80
view .delete ()
89
81
90
- @pytest .mark .skip (reason = "Skipping this test for now" )
91
82
def test_materialized_view_names (engine ,test_environment ,test_stream ):
92
83
view_name = "example_mv"
93
84
view = View (env = test_environment ).name (view_name )
@@ -111,23 +102,21 @@ def test_materialized_view_names(engine,test_environment,test_stream):
111
102
112
103
view .delete ()
113
104
114
- @pytest .mark .skip (reason = "Skipping this test for now" )
115
105
def test_view_reflection (engine ):
116
106
metadata_obj = MetaData ()
117
107
car_view = Table ("car_live_data" , metadata_obj , autoload_with = engine )
118
108
assert car_view is not None
119
109
column_names = [c .name for c in car_view .columns ]
120
110
assert "speed_kmh" in column_names
121
111
122
- @ pytest . mark . skip ( reason = "Skipping this test for now" )
112
+
123
113
def test_table_reflection (engine ):
124
114
metadata_obj = MetaData ()
125
115
car_table = Table ("car_live_data" , metadata_obj , autoload_with = engine )
126
116
assert car_table is not None
127
117
column_names = [c .name for c in car_table .columns ]
128
118
assert "cid" in column_names
129
119
130
- @pytest .mark .skip (reason = "Skipping this test for now" )
131
120
def test_select_query (engine ):
132
121
metadata_obj = MetaData ()
133
122
car_table = Table ("car_live_data" , metadata_obj , autoload_with = engine )
0 commit comments