コード例 #1
0
def test_parse_request(app):
    with app.test_request_context(
            '/healthz/?page=3&per_page=40&order_by=test&order_dir=up'):
        Query.parse_request(request)
        assert g.page == '3'
        assert g.per_page == '40'
        assert g.order_by == 'test'
        assert g.order_dir == 'up'
コード例 #2
0
def test_api_flask_make_response(api, app):
    # should convert the ApiResponse object to a `Response` by calling 
    # its `to_response` method.
    with app.test_request_context('/healthz'):
        api_response = ApiResponse(value={'ok': True}, status=200)
        response = api.make_response(api_response)
        expected = isinstance(response, Response)
        assert expected == True
コード例 #3
0
def test_api_response_to_response_returns_a_response_object(app):
    with app.test_request_context('/healthz'):
        expected = ApiResponse(value=None).to_response()
        assert isinstance(expected, Response)
コード例 #4
0
def test_api_response_to_response_multiple_value_body(app):
    with app.test_request_context('/healthz'):
        expected = ApiResponse(value=[{'ok': True}, {'ok': False}]).to_response()
        assert expected.data == b'{"count": 2, "current": "http://localhost/healthz?page=1&per_page=3", "items": [{"ok": true}, {"ok": false}], "next": "http://localhost/healthz?page=2&per_page=3"}'
コード例 #5
0
def test_api_response_to_response_single_value_body(app):
    with app.test_request_context('/healthz'):    
        expected = ApiResponse(value={'ok': True}).to_response()
        assert expected.data == b'{"item": {"ok": true}}'
コード例 #6
0
def test_api_response_to_response_empty_body(app):
    with app.test_request_context('/healthz'): 
        expected = ApiResponse(value=None).to_response()
        assert expected.data == b''
コード例 #7
0
def test_api_response_to_response_value_mimetype(app):
    with app.test_request_context('/healthz'):    
        expected = ApiResponse(value={'ok': True}).to_response()
        assert expected.mimetype == 'application/json'
コード例 #8
0
def test_api_response_to_response_default_status(app):
    with app.test_request_context('/healthz'):    
        expected = ApiResponse(value=None).to_response()
        assert expected.status == '200 OK'