From 4d7f8328802f0b89a854154194de444e77a3255b Mon Sep 17 00:00:00 2001 From: Javier Sancho Date: Thu, 24 May 2018 17:22:58 +0200 Subject: [PATCH 1/1] Shape testing --- tests/test_api.py | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/tests/test_api.py b/tests/test_api.py index 17ac230..c9ef73e 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -126,3 +126,49 @@ def test_table_shape_arrays(app_client): [6, 'This is particle: 6', 6, 12.0], [7, 'This is particle: 7', 7, 14.0], ] == response.json['rows'][6:8] + +def test_table_shape_objects(app_client): + response = app_client.get( + '/test_tables/%2Fgroup2%2Ftable2.json?_shape=objects', + gather_request=False + ) + assert [{ + 'rowid': 6, + 'identity': 'This is particle: 6', + 'idnumber': 6, + 'speed': 12.0, + }, { + 'rowid': 7, + 'identity': 'This is particle: 7', + 'idnumber': 7, + 'speed': 14.0, + }] == response.json['rows'][6:8] + +def test_table_shape_array(app_client): + response = app_client.get( + '/test_tables/%2Fgroup2%2Ftable2.json?_shape=array', + gather_request=False + ) + assert [{ + 'rowid': 6, + 'identity': 'This is particle: 6', + 'idnumber': 6, + 'speed': 12.0, + }, { + 'rowid': 7, + 'identity': 'This is particle: 7', + 'idnumber': 7, + 'speed': 14.0, + }] == response.json[6:8] + +def test_table_shape_invalid(app_client): + response = app_client.get( + '/test_tables/%2Fgroup2%2Ftable2.json?_shape=invalid', + gather_request=False + ) + assert { + 'ok': False, + 'error': 'Invalid _shape: invalid', + 'status': 400, + 'title': None, + } == response.json -- 2.39.2