mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
CORS headers for write APIs, refs #1922
This commit is contained in:
parent
4ddd77e512
commit
48725bb4ea
2 changed files with 29 additions and 10 deletions
|
|
@ -897,14 +897,32 @@ def test_config_force_https_urls():
|
|||
("/fixtures/no_primary_key.json", 200),
|
||||
# A 400 invalid SQL query should still have the header:
|
||||
("/fixtures.json?sql=select+blah", 400),
|
||||
# Write APIs
|
||||
("/fixtures/-/create", 405),
|
||||
("/fixtures/facetable/-/insert", 405),
|
||||
("/fixtures/facetable/-/drop", 405),
|
||||
],
|
||||
)
|
||||
def test_cors(app_client_with_cors, path, status_code):
|
||||
def test_cors(
|
||||
app_client_with_cors,
|
||||
app_client_two_attached_databases_one_immutable,
|
||||
path,
|
||||
status_code,
|
||||
):
|
||||
response = app_client_with_cors.get(path)
|
||||
assert response.status == status_code
|
||||
assert response.headers["Access-Control-Allow-Origin"] == "*"
|
||||
assert response.headers["Access-Control-Allow-Headers"] == "Authorization"
|
||||
assert response.headers["Access-Control-Expose-Headers"] == "Link"
|
||||
# Same request to app_client_two_attached_databases_one_immutable
|
||||
# should not have those headers - I'm using that fixture because
|
||||
# regular app_client doesn't have immutable fixtures.db which means
|
||||
# the test for /fixtures.db returns a 403 error
|
||||
response = app_client_two_attached_databases_one_immutable.get(path)
|
||||
assert response.status == status_code
|
||||
assert "Access-Control-Allow-Origin" not in response.headers
|
||||
assert "Access-Control-Allow-Headers" not in response.headers
|
||||
assert "Access-Control-Expose-Headers" not in response.headers
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue