Accept file-drop method-not-allowed denial response
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s

Assistant: codex
Assistant-Model: gpt-6-astra
Assistant-Session: 01a06ecb-456a-71c2-b41e-0755d336e883
This commit is contained in:
codex 2026-09-05 20:47:49 +02:00
parent 3aa1f64eb0
commit b6d648bfbe

View file

@ -139,7 +139,7 @@ def run(args, receipt):
for method in ['GET', 'DELETE']:
code, _ = request(upload_root + fixture_path, method, auth=(token, ''))
receipt['runtime_' + method.lower() + '_http_status'] = code
require(code in (401, 403, 404), 'upload_grant_exceeds_create_only')
require(code in (401, 403, 404, 405), 'upload_grant_exceeds_create_only')
code, present = request(owner_root + fixture_path, auth=auth)
require(code == 200 and present == encrypted, 'fixture_not_preserved_by_negative_check')
receipt.update(encrypted_upload=True, owner_download=True, escrow_decryption=True,