'sql': 'select identity from [/group1/table1] where speed > 100 and idnumber < 55',
'_shape': 'objects'
}),
- gather_request=False
)
data = response.json
assert {
'sql': 'select identity from [/group1/table1] where (speed > 100) & (speed < 500)',
'_shape': 'objects'
}),
- gather_request=False
)
data = response.json
assert {
def test_invalid_custom_sql(app_client):
response = app_client.get(
'/test_tables.json?sql=.schema',
- gather_request=False
)
assert response.status == 400
assert response.json['ok'] is False
def test_table_json(app_client):
response = app_client.get(
'/test_tables/%2Fgroup2%2Ftable2.json?_shape=objects',
- gather_request=False
)
assert response.status == 200
data = response.json
'status': 404,
'title': None,
} == app_client.get(
- '/test_tables/blah.json', gather_request=False
+ '/test_tables/blah.json',
).json
def test_table_shape_arrays(app_client):
response = app_client.get(
'/test_tables/%2Fgroup2%2Ftable2.json?_shape=arrays',
- gather_request=False
)
assert [
[6, 'This is particle: 6', 6, 12.0],
def test_table_shape_objects(app_client):
response = app_client.get(
'/test_tables/%2Fgroup2%2Ftable2.json?_shape=objects',
- gather_request=False
)
assert [{
'rowid': 6,
def test_table_shape_array(app_client):
response = app_client.get(
'/test_tables/%2Fgroup2%2Ftable2.json?_shape=array',
- gather_request=False
)
assert [{
'rowid': 6,
def test_table_shape_invalid(app_client):
response = app_client.get(
'/test_tables/%2Fgroup2%2Ftable2.json?_shape=invalid',
- gather_request=False
)
assert {
'ok': False,
fetched = []
count = 0
while path:
- response = app_client.get(path, gather_request=False)
+ response = app_client.get(path)
print("*****", response.json)
assert 200 == response.status
count += 1