-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Disable redirect slashes globally and remove trailing
/
from …
…`/query` (#328) * add tests for routes with and without trailing slashes * disable redirect slashes and remove trailing slash from /query route * update routes in tests * fix - explicitly enable auth in tests of request headers using fixture * trust X-Forwarded... proxy headers from all remote IPs * update slashes in README examples * refactor tests of trailing slash behaviour into separate module
- Loading branch information
Showing
10 changed files
with
99 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import pytest | ||
|
||
from app.api import crud | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"root_path", | ||
["/", ""], | ||
) | ||
def test_root(test_app, root_path): | ||
"""Given a GET request to the root endpoint, Check for 200 status and expected content.""" | ||
|
||
response = test_app.get(root_path, follow_redirects=False) | ||
|
||
assert response.status_code == 200 | ||
assert "Welcome to the Neurobagel REST API!" in response.text | ||
assert '<a href="/docs">documentation</a>' in response.text | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"valid_route", | ||
["/query", "/query?min_age=20"], | ||
) | ||
def test_request_without_trailing_slash_not_redirected( | ||
test_app, monkeypatch, mock_successful_get, disable_auth, valid_route | ||
): | ||
"""Test that a request to a route without a / is not redirected to have a trailing slash.""" | ||
monkeypatch.setattr(crud, "get", mock_successful_get) | ||
response = test_app.get(valid_route, follow_redirects=False) | ||
assert response.status_code == 200 | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"invalid_route", | ||
["/query/", "/query/?min_age=20", "/attributes/nb:SomeClass/"], | ||
) | ||
def test_request_with_trailing_slash_not_redirected( | ||
test_app, disable_auth, invalid_route | ||
): | ||
""" | ||
Test that a request to routes including a trailing slash, where none is expected, | ||
is *not* redirected to exclude the slash, and returns a 404. | ||
""" | ||
response = test_app.get(invalid_route) | ||
assert response.status_code == 404 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters