1 from .fixtures import app_client
3 from urllib.parse import urlencode
5 def test_homepage(app_client):
6 response = app_client.get('/.json')
7 assert response.status == 200
8 assert response.json.keys() == {'test_tables': 0}.keys()
9 d = response.json['test_tables']
10 assert d['name'] == 'test_tables'
11 assert d['tables_count'] == 5
13 def test_database_page(app_client):
14 response = app_client.get('/test_tables.json')
16 assert 'test_tables' == data['database']
24 'foreign_keys': {'incoming': [], 'outgoing': []},
27 'name': '/group1/array2',
33 'foreign_keys': {'incoming': [], 'outgoing': []},
36 'name': '/group1/table1',
37 'columns': ['identity', 'idnumber', 'speed'],
42 'foreign_keys': {'incoming': [], 'outgoing': []},
45 'name': '/group2/multi',
51 'foreign_keys': {'incoming': [], 'outgoing': []},
54 'name': '/group2/table2',
55 'columns': ['identity', 'idnumber', 'speed'],
60 'foreign_keys': {'incoming': [], 'outgoing': []},
64 def test_custom_sql(app_client):
65 response = app_client.get(
66 '/test_tables.json?' + urlencode({
67 'sql': 'select identity from [/group1/table1]',
73 'sql': 'select identity from [/group1/table1]',
76 assert 1000 == len(data['rows'])
78 {'identity': 'This is particle: 0'},
79 {'identity': 'This is particle: 1'},
80 {'identity': 'This is particle: 2'},
81 {'identity': 'This is particle: 3'}
83 assert ['identity'] == data['columns']
84 assert 'test_tables' == data['database']
85 assert data['truncated']
87 def test_custom_complex_sql(app_client):
88 response = app_client.get(
89 '/test_tables.json?' + urlencode({
90 'sql': 'select identity from [/group1/table1] where speed > 100 and idnumber < 55',
97 'sql': 'select identity from [/group1/table1] where speed > 100 and idnumber < 55',
100 assert 4 == len(data['rows'])
102 {'identity': 'This is particle: 51'},
103 {'identity': 'This is particle: 52'},
104 {'identity': 'This is particle: 53'},
105 {'identity': 'This is particle: 54'}
107 assert ['identity'] == data['columns']
108 assert 'test_tables' == data['database']
109 assert not data['truncated']
111 def test_custom_pytables_sql(app_client):
112 response = app_client.get(
113 '/test_tables.json?' + urlencode({
114 'sql': 'select identity from [/group1/table1] where (speed > 100) & (speed < 500)',
121 'sql': 'select identity from [/group1/table1] where (speed > 100) & (speed < 500)',
124 assert 199 == len(data['rows'])
126 {'identity': 'This is particle: 51'},
127 {'identity': 'This is particle: 52'},
128 {'identity': 'This is particle: 53'}
129 ] == data['rows'][:3]
130 assert ['identity'] == data['columns']
131 assert 'test_tables' == data['database']
132 assert not data['truncated']
134 def test_invalid_custom_sql(app_client):
135 response = app_client.get(
136 '/test_tables.json?sql=.schema',
139 assert response.status == 400
140 assert response.json['ok'] is False
141 assert 'Statement must be a SELECT' == response.json['error']
143 def test_table_json(app_client):
144 response = app_client.get(
145 '/test_tables/%2Fgroup2%2Ftable2.json?_shape=objects',
148 assert response.status == 200
150 assert data['query']['sql'] == 'select rowid, * from [/group2/table2] order by rowid limit 51'
151 assert data['rows'][3:6] == [{
153 'identity': 'This is particle: 3',
158 'identity': 'This is particle: 4',
163 'identity': 'This is particle: 5',
168 def test_table_not_exists_json(app_client):
171 'error': 'Table not found: blah',
175 '/test_tables/blah.json', gather_request=False
178 def test_table_shape_arrays(app_client):
179 response = app_client.get(
180 '/test_tables/%2Fgroup2%2Ftable2.json?_shape=arrays',
184 [6, 'This is particle: 6', 6, 12.0],
185 [7, 'This is particle: 7', 7, 14.0],
186 ] == response.json['rows'][6:8]
188 def test_table_shape_objects(app_client):
189 response = app_client.get(
190 '/test_tables/%2Fgroup2%2Ftable2.json?_shape=objects',
195 'identity': 'This is particle: 6',
200 'identity': 'This is particle: 7',
203 }] == response.json['rows'][6:8]
205 def test_table_shape_array(app_client):
206 response = app_client.get(
207 '/test_tables/%2Fgroup2%2Ftable2.json?_shape=array',
212 'identity': 'This is particle: 6',
217 'identity': 'This is particle: 7',
220 }] == response.json[6:8]
222 def test_table_shape_invalid(app_client):
223 response = app_client.get(
224 '/test_tables/%2Fgroup2%2Ftable2.json?_shape=invalid',
229 'error': 'Invalid _shape: invalid',
234 @pytest.mark.parametrize('path, expected_rows, expected_pages', [
235 ('/test_tables/%2Farray1.json', 2, 1),
236 ('/test_tables/%2Farray1.json?_size=1', 2, 2),
237 ('/test_tables/%2Fgroup1%2Farray2.json?_size=1000', 10000, 10),
238 ('/test_tables/%2Fgroup2%2Fmulti.json?_size=5', 10, 2),
240 def test_paginate_tables_and_arrays(app_client, path, expected_rows, expected_pages):
244 response = app_client.get(path, gather_request=False)
245 print("*****", response.json)
246 assert 200 == response.status
248 fetched.extend(response.json['rows'])
249 path = response.json['next_url']
251 assert response.json['next']
252 assert '_next={}'.format(response.json['next']) in path
254 assert expected_rows == len(fetched)
255 assert expected_pages == count