Browse Source
* repr description added to Depends class * repr description added to Security subclass * get rid of __repr__ in security since it will inherit from super * make code format consistent with rest * add desc for rest of the classes * Update fastapi/params.py remove trailing whitespace Co-authored-by: Marcelo Trylesinski <[email protected]> * Implement __repr__ * fix formatting * formatting again * ran formatting * added basic testing * basic tests added to rest of the classes * added more test coverage and simplified test file Co-authored-by: Marcelo Trylesinski <[email protected]> Co-authored-by: Jayati Shrivastava <[email protected]>pull/1569/head
committed by
GitHub
2 changed files with 57 additions and 0 deletions
@ -0,0 +1,46 @@ |
|||||
|
import pytest |
||||
|
from fastapi.params import Body, Cookie, Depends, Header, Param, Path, Query |
||||
|
|
||||
|
test_data = ["teststr", None, ..., 1, []] |
||||
|
|
||||
|
|
||||
|
def get_user(): |
||||
|
return {} # pragma: no cover |
||||
|
|
||||
|
|
||||
|
@pytest.fixture(scope="function", params=test_data) |
||||
|
def params(request): |
||||
|
return request.param |
||||
|
|
||||
|
|
||||
|
def test_param_repr(params): |
||||
|
assert repr(Param(params)) == "Param(" + str(params) + ")" |
||||
|
|
||||
|
|
||||
|
def test_path_repr(params): |
||||
|
assert repr(Path(params)) == "Path(Ellipsis)" |
||||
|
|
||||
|
|
||||
|
def test_query_repr(params): |
||||
|
assert repr(Query(params)) == "Query(" + str(params) + ")" |
||||
|
|
||||
|
|
||||
|
def test_header_repr(params): |
||||
|
assert repr(Header(params)) == "Header(" + str(params) + ")" |
||||
|
|
||||
|
|
||||
|
def test_cookie_repr(params): |
||||
|
assert repr(Cookie(params)) == "Cookie(" + str(params) + ")" |
||||
|
|
||||
|
|
||||
|
def test_body_repr(params): |
||||
|
assert repr(Body(params)) == "Body(" + str(params) + ")" |
||||
|
|
||||
|
|
||||
|
def test_depends_repr(): |
||||
|
assert repr(Depends()) == "Depends(NoneType)" |
||||
|
assert repr(Depends(get_user)) == "Depends(get_user)" |
||||
|
assert repr(Depends(use_cache=False)) == "Depends(NoneType, use_cache=False)" |
||||
|
assert ( |
||||
|
repr(Depends(get_user, use_cache=False)) == "Depends(get_user, use_cache=False)" |
||||
|
) |
Loading…
Reference in new issue