Skip to content

Commit a872e27

Browse files
committed
Update to use http.HTTPStatus enums
1 parent c84d55d commit a872e27

9 files changed

+343
-332
lines changed

synapse/axon.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ async def _setSha256Headers(self, sha256b):
138138

139139
self.blobsize = await self.getAxon().size(sha256b)
140140
if self.blobsize is None:
141-
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {s_common.ehex(sha256b)}', status_code=404)
141+
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {s_common.ehex(sha256b)}',
142+
status_code=s_httpapi.HTTPStatus.NOT_FOUND)
142143
return False
143144

144145
status = 200
@@ -259,7 +260,8 @@ async def delete(self, sha256):
259260

260261
sha256b = s_common.uhex(sha256)
261262
if not await self.getAxon().has(sha256b):
262-
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {sha256}', status_code=404)
263+
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {sha256}',
264+
status_code=s_httpapi.HTTPStatus.NOT_FOUND)
263265
return
264266

265267
resp = await self.getAxon().del_(sha256b)

synapse/lib/aha.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ async def post(self):
8181
raise
8282
except Exception as e:
8383
logger.exception(f'Error provisioning {name}')
84-
return self.sendRestExc(e, status_code=400)
84+
return self.sendRestExc(e, status_code=s_httpapi.HTTPStatus.BAD_REQUEST)
8585
return self.sendRestRetn({'url': url})
8686

8787
_getAhaSvcSchema = {

synapse/lib/httpapi.py

+49-47
Large diffs are not rendered by default.

synapse/tests/test_axon.py

+42-41
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import io
22
import os
33
import csv
4-
import sys
4+
import http
55
import base64
66
import shutil
77
import struct
@@ -573,46 +573,46 @@ async def runAxonTestHttp(self, axon, realaxon=None):
573573
# No auth - coverage
574574
async with self.getHttpSess() as sess:
575575
async with sess.get(f'{url_dl}/foobar') as resp:
576-
self.eq(401, resp.status)
576+
self.eq(resp.status, http.HTTPStatus.UNAUTHORIZED)
577577
info = await resp.json()
578578
self.eq('NotAuthenticated', info.get('code'))
579579
async with sess.head(f'{url_dl}/foobar') as resp:
580-
self.eq(401, resp.status)
580+
self.eq(resp.status, http.HTTPStatus.UNAUTHORIZED)
581581
# aiohttp ignores HEAD bodies
582582
async with sess.delete(f'{url_dl}/foobar') as resp:
583-
self.eq(401, resp.status)
583+
self.eq(resp.status, http.HTTPStatus.UNAUTHORIZED)
584584
info = await resp.json()
585585
self.eq('NotAuthenticated', info.get('code'))
586586

587587
# Perms
588588
async with self.getHttpSess(auth=('newb', 'secret'), port=port) as sess:
589589

590590
async with sess.get(f'{url_dl}/{asdfhash_h}') as resp:
591-
self.eq(403, resp.status)
591+
self.eq(resp.status, http.HTTPStatus.FORBIDDEN)
592592
item = await resp.json()
593593
self.eq('err', item.get('status'))
594594

595595
async with sess.delete(f'{url_dl}/{asdfhash_h}') as resp:
596-
self.eq(403, resp.status)
596+
self.eq(resp.status, http.HTTPStatus.FORBIDDEN)
597597
item = await resp.json()
598598
self.eq('err', item.get('status'))
599599

600600
async with sess.get(f'{url_hs}/{asdfhash_h}') as resp:
601-
self.eq(403, resp.status)
601+
self.eq(resp.status, http.HTTPStatus.FORBIDDEN)
602602
item = await resp.json()
603603
self.eq('err', item.get('status'))
604604

605605
async with sess.head(f'{url_dl}/{asdfhash_h}') as resp:
606-
self.eq(403, resp.status)
606+
self.eq(resp.status, http.HTTPStatus.FORBIDDEN)
607607
item = await resp.json()
608608

609609
async with sess.post(url_de) as resp:
610-
self.eq(403, resp.status)
610+
self.eq(resp.status, http.HTTPStatus.FORBIDDEN)
611611
item = await resp.json()
612612
self.eq('err', item.get('status'))
613613

614614
async with sess.post(url_ul, data=abuf) as resp:
615-
self.eq(403, resp.status)
615+
self.eq(resp.status, http.HTTPStatus.FORBIDDEN)
616616
item = await resp.json()
617617
self.eq('err', item.get('status'))
618618

@@ -631,27 +631,27 @@ async def runAxonTestHttp(self, axon, realaxon=None):
631631
# Basic
632632
async with self.getHttpSess(auth=('newb', 'secret'), port=port) as sess:
633633
async with sess.get(f'{url_dl}/foobar') as resp:
634-
self.eq(404, resp.status)
634+
self.eq(resp.status, http.HTTPStatus.NOT_FOUND)
635635
info = await resp.json()
636636
self.eq('err', info.get('status'))
637637
self.eq('BadArg', info.get('code'))
638638
self.eq('Hash is not a SHA-256: foobar', info.get('mesg'))
639639

640640
async with sess.get(f'{url_dl}/{asdfhash_h}') as resp:
641-
self.eq(404, resp.status)
641+
self.eq(resp.status, http.HTTPStatus.NOT_FOUND)
642642
info = await resp.json()
643643
self.eq('err', info.get('status'))
644644
self.eq('NoSuchFile', info.get('code'))
645645
self.eq(f'SHA-256 not found: {asdfhash_h}', info.get('mesg'))
646646

647647
async with sess.get(f'{url_hs}/{asdfhash_h}') as resp:
648-
self.eq(200, resp.status)
648+
self.eq(resp.status, http.HTTPStatus.OK)
649649
item = await resp.json()
650650
self.eq('ok', item.get('status'))
651651
self.false(item.get('result'))
652652

653653
async with sess.post(url_ul, data=abuf) as resp:
654-
self.eq(200, resp.status)
654+
self.eq(resp.status, http.HTTPStatus.OK)
655655
item = await resp.json()
656656
self.eq('ok', item.get('status'))
657657
result = item.get('result')
@@ -661,13 +661,13 @@ async def runAxonTestHttp(self, axon, realaxon=None):
661661
self.true(await realaxon.has(asdfhash))
662662

663663
async with sess.get(f'{url_hs}/{asdfhash_h}') as resp:
664-
self.eq(200, resp.status)
664+
self.eq(resp.status, http.HTTPStatus.OK)
665665
item = await resp.json()
666666
self.eq('ok', item.get('status'))
667667
self.true(item.get('result'))
668668

669669
async with sess.put(url_ul, data=abuf) as resp:
670-
self.eq(200, resp.status)
670+
self.eq(resp.status, http.HTTPStatus.OK)
671671
item = await resp.json()
672672
self.eq('ok', item.get('status'))
673673
result = item.get('result')
@@ -676,14 +676,14 @@ async def runAxonTestHttp(self, axon, realaxon=None):
676676
self.true(await realaxon.has(asdfhash))
677677

678678
async with sess.get(f'{url_dl}/{asdfhash_h}') as resp:
679-
self.eq(200, resp.status)
679+
self.eq(resp.status, http.HTTPStatus.OK)
680680
self.eq(abuf, await resp.read())
681681

682682
# Streaming upload
683683
byts = io.BytesIO(bbuf)
684684

685685
async with sess.post(url_ul, data=byts) as resp:
686-
self.eq(200, resp.status)
686+
self.eq(resp.status, http.HTTPStatus.OK)
687687
item = await resp.json()
688688
self.eq('ok', item.get('status'))
689689
result = item.get('result')
@@ -694,7 +694,7 @@ async def runAxonTestHttp(self, axon, realaxon=None):
694694
byts = io.BytesIO(bbuf)
695695

696696
async with sess.put(url_ul, data=byts) as resp:
697-
self.eq(200, resp.status)
697+
self.eq(resp.status, http.HTTPStatus.OK)
698698
item = await resp.json()
699699
self.eq('ok', item.get('status'))
700700
result = item.get('result')
@@ -705,7 +705,7 @@ async def runAxonTestHttp(self, axon, realaxon=None):
705705
byts = io.BytesIO(b'')
706706

707707
async with sess.post(url_ul, data=byts) as resp:
708-
self.eq(200, resp.status)
708+
self.eq(resp.status, http.HTTPStatus.OK)
709709
item = await resp.json()
710710
self.eq('ok', item.get('status'))
711711
result = item.get('result')
@@ -715,7 +715,7 @@ async def runAxonTestHttp(self, axon, realaxon=None):
715715

716716
# Streaming download
717717
async with sess.get(f'{url_dl}/{bbufhash_h}') as resp:
718-
self.eq(200, resp.status)
718+
self.eq(resp.status, http.HTTPStatus.OK)
719719

720720
byts = []
721721
async for bytz in resp.content.iter_chunked(1024):
@@ -726,44 +726,44 @@ async def runAxonTestHttp(self, axon, realaxon=None):
726726

727727
# HEAD
728728
async with sess.head(f'{url_dl}/{bbufhash_h}') as resp:
729-
self.eq(200, resp.status)
729+
self.eq(resp.status, http.HTTPStatus.OK)
730730
self.eq('33554437', resp.headers.get('content-length'))
731731
self.none(resp.headers.get('content-range'))
732732

733733
async with sess.head(f'{url_dl}/foobar') as resp:
734-
self.eq(404, resp.status)
734+
self.eq(resp.status, http.HTTPStatus.NOT_FOUND)
735735
self.eq('0', resp.headers.get('content-length'))
736736

737737
# DELETE method by sha256
738738
async with sess.delete(f'{url_dl}/foobar') as resp:
739-
self.eq(404, resp.status)
739+
self.eq(resp.status, http.HTTPStatus.NOT_FOUND)
740740
info = await resp.json()
741741
self.eq('err', info.get('status'))
742742
self.eq('BadArg', info.get('code'))
743743
self.eq('Hash is not a SHA-256: foobar', info.get('mesg'))
744744

745745
async with sess.delete(f'{url_dl}/{asdfhash_h}') as resp:
746-
self.eq(200, resp.status)
746+
self.eq(resp.status, http.HTTPStatus.OK)
747747
item = await resp.json()
748748
self.eq('ok', item.get('status'))
749749
self.true(item.get('result'))
750750

751751
async with sess.delete(f'{url_dl}/{asdfhash_h}') as resp:
752-
self.eq(404, resp.status)
752+
self.eq(resp.status, http.HTTPStatus.NOT_FOUND)
753753
item = await resp.json()
754754
self.eq('err', item.get('status'))
755755

756756
# test /api/v1/axon/file/del API
757757
data = {'sha256s': (asdfhash_h, asdfhash_h)}
758758
async with sess.post(url_de, json=data) as resp:
759-
self.eq(200, resp.status)
759+
self.eq(resp.status, http.HTTPStatus.OK)
760760
item = await resp.json()
761761
self.eq('ok', item.get('status'))
762762
self.eq(((asdfhash_h, False), (asdfhash_h, False)), item.get('result'))
763763

764764
data = {'newp': 'newp'}
765765
async with sess.post(url_de, json=data) as resp:
766-
self.eq(400, resp.status)
766+
self.eq(resp.status, http.HTTPStatus.BAD_REQUEST)
767767
item = await resp.json()
768768
self.eq('err', item.get('status'))
769769
self.eq('SchemaViolation', item.get('code'))
@@ -783,7 +783,7 @@ def genr():
783783

784784
headers = {'range': 'bytes=2-4'}
785785
async with sess.get(f'{url_dl}/{shatext}', headers=headers) as resp:
786-
self.eq(206, resp.status)
786+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
787787
self.eq('3', resp.headers.get('content-length'))
788788
self.eq('bytes 2-4/12', resp.headers.get('content-range'))
789789
buf = b''
@@ -793,7 +793,7 @@ def genr():
793793

794794
headers = {'range': 'bytes=,2-'}
795795
async with sess.get(f'{url_dl}/{shatext}', headers=headers) as resp:
796-
self.eq(206, resp.status)
796+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
797797
self.eq('10', resp.headers.get('content-length'))
798798
self.eq('bytes 2-11/12', resp.headers.get('content-range'))
799799
buf = b''
@@ -803,7 +803,7 @@ def genr():
803803

804804
headers = {'range': 'bytes=0-11'}
805805
async with sess.get(f'{url_dl}/{shatext}', headers=headers) as resp:
806-
self.eq(206, resp.status)
806+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
807807
self.eq('12', resp.headers.get('content-length'))
808808
self.eq('bytes 0-11/12', resp.headers.get('content-range'))
809809
buf = b''
@@ -813,7 +813,7 @@ def genr():
813813

814814
headers = {'range': 'bytes=10-11'}
815815
async with sess.get(f'{url_dl}/{shatext}', headers=headers) as resp:
816-
self.eq(206, resp.status)
816+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
817817
self.eq('2', resp.headers.get('content-length'))
818818
self.eq('bytes 10-11/12', resp.headers.get('content-range'))
819819
buf = b''
@@ -823,7 +823,7 @@ def genr():
823823

824824
headers = {'range': 'bytes=11-11'}
825825
async with sess.get(f'{url_dl}/{shatext}', headers=headers) as resp:
826-
self.eq(206, resp.status)
826+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
827827
self.eq('1', resp.headers.get('content-length'))
828828
self.eq('bytes 11-11/12', resp.headers.get('content-range'))
829829
buf = b''
@@ -833,7 +833,7 @@ def genr():
833833

834834
headers = {'range': 'bytes=2-4,8-11'}
835835
async with sess.get(f'{url_dl}/{shatext}', headers=headers) as resp:
836-
self.eq(206, resp.status)
836+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
837837
self.eq('3', resp.headers.get('content-length'))
838838
self.eq('bytes 2-4/12', resp.headers.get('content-range'))
839839
buf = b''
@@ -844,39 +844,40 @@ def genr():
844844
# HEAD tests
845845
headers = {'range': 'bytes=2-4'}
846846
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
847-
self.eq(206, resp.status)
847+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
848848
self.eq('3', resp.headers.get('content-length'))
849849
self.eq('bytes 2-4/12', resp.headers.get('content-range'))
850850

851851
headers = {'range': 'bytes=10-11'}
852852
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
853-
self.eq(206, resp.status)
853+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
854854
self.eq('2', resp.headers.get('content-length'))
855855
self.eq('bytes 10-11/12', resp.headers.get('content-range'))
856856

857857
headers = {'range': 'bytes=11-11'}
858858
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
859-
self.eq(206, resp.status)
859+
self.eq(resp.status, http.HTTPStatus.PARTIAL_CONTENT)
860860
self.eq('1', resp.headers.get('content-length'))
861861
self.eq('bytes 11-11/12', resp.headers.get('content-range'))
862862

863+
# TODO - In python 3.13+ this can be HTTPStatus.RANGE_NOT_SATISFIABLE
863864
# Reading past blobsize isn't valid HTTP
864865
headers = {'range': 'bytes=10-20'}
865866
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
866-
self.eq(416, resp.status)
867+
self.eq(resp.status, http.HTTPStatus.REQUESTED_RANGE_NOT_SATISFIABLE)
867868

868869
headers = {'range': 'bytes=11-12'}
869870
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
870-
self.eq(416, resp.status)
871+
self.eq(resp.status, http.HTTPStatus.REQUESTED_RANGE_NOT_SATISFIABLE)
871872

872873
headers = {'range': 'bytes=20-40'}
873874
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
874-
self.eq(416, resp.status)
875+
self.eq(resp.status, http.HTTPStatus.REQUESTED_RANGE_NOT_SATISFIABLE)
875876

876877
# Negative size
877878
headers = {'range': 'bytes=20-4'}
878879
async with sess.head(f'{url_dl}/{shatext}', headers=headers) as resp:
879-
self.eq(416, resp.status)
880+
self.eq(resp.status, http.HTTPStatus.REQUESTED_RANGE_NOT_SATISFIABLE)
880881

881882
async def test_axon_perms(self):
882883
async with self.getTestAxon() as axon:

0 commit comments

Comments
 (0)