1
1
import io
2
2
import os
3
3
import csv
4
- import sys
4
+ import http
5
5
import base64
6
6
import shutil
7
7
import struct
@@ -573,46 +573,46 @@ async def runAxonTestHttp(self, axon, realaxon=None):
573
573
# No auth - coverage
574
574
async with self .getHttpSess () as sess :
575
575
async with sess .get (f'{ url_dl } /foobar' ) as resp :
576
- self .eq (401 , resp .status )
576
+ self .eq (resp .status , http . HTTPStatus . UNAUTHORIZED )
577
577
info = await resp .json ()
578
578
self .eq ('NotAuthenticated' , info .get ('code' ))
579
579
async with sess .head (f'{ url_dl } /foobar' ) as resp :
580
- self .eq (401 , resp .status )
580
+ self .eq (resp .status , http . HTTPStatus . UNAUTHORIZED )
581
581
# aiohttp ignores HEAD bodies
582
582
async with sess .delete (f'{ url_dl } /foobar' ) as resp :
583
- self .eq (401 , resp .status )
583
+ self .eq (resp .status , http . HTTPStatus . UNAUTHORIZED )
584
584
info = await resp .json ()
585
585
self .eq ('NotAuthenticated' , info .get ('code' ))
586
586
587
587
# Perms
588
588
async with self .getHttpSess (auth = ('newb' , 'secret' ), port = port ) as sess :
589
589
590
590
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 )
592
592
item = await resp .json ()
593
593
self .eq ('err' , item .get ('status' ))
594
594
595
595
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 )
597
597
item = await resp .json ()
598
598
self .eq ('err' , item .get ('status' ))
599
599
600
600
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 )
602
602
item = await resp .json ()
603
603
self .eq ('err' , item .get ('status' ))
604
604
605
605
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 )
607
607
item = await resp .json ()
608
608
609
609
async with sess .post (url_de ) as resp :
610
- self .eq (403 , resp .status )
610
+ self .eq (resp .status , http . HTTPStatus . FORBIDDEN )
611
611
item = await resp .json ()
612
612
self .eq ('err' , item .get ('status' ))
613
613
614
614
async with sess .post (url_ul , data = abuf ) as resp :
615
- self .eq (403 , resp .status )
615
+ self .eq (resp .status , http . HTTPStatus . FORBIDDEN )
616
616
item = await resp .json ()
617
617
self .eq ('err' , item .get ('status' ))
618
618
@@ -631,27 +631,27 @@ async def runAxonTestHttp(self, axon, realaxon=None):
631
631
# Basic
632
632
async with self .getHttpSess (auth = ('newb' , 'secret' ), port = port ) as sess :
633
633
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 )
635
635
info = await resp .json ()
636
636
self .eq ('err' , info .get ('status' ))
637
637
self .eq ('BadArg' , info .get ('code' ))
638
638
self .eq ('Hash is not a SHA-256: foobar' , info .get ('mesg' ))
639
639
640
640
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 )
642
642
info = await resp .json ()
643
643
self .eq ('err' , info .get ('status' ))
644
644
self .eq ('NoSuchFile' , info .get ('code' ))
645
645
self .eq (f'SHA-256 not found: { asdfhash_h } ' , info .get ('mesg' ))
646
646
647
647
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 )
649
649
item = await resp .json ()
650
650
self .eq ('ok' , item .get ('status' ))
651
651
self .false (item .get ('result' ))
652
652
653
653
async with sess .post (url_ul , data = abuf ) as resp :
654
- self .eq (200 , resp .status )
654
+ self .eq (resp .status , http . HTTPStatus . OK )
655
655
item = await resp .json ()
656
656
self .eq ('ok' , item .get ('status' ))
657
657
result = item .get ('result' )
@@ -661,13 +661,13 @@ async def runAxonTestHttp(self, axon, realaxon=None):
661
661
self .true (await realaxon .has (asdfhash ))
662
662
663
663
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 )
665
665
item = await resp .json ()
666
666
self .eq ('ok' , item .get ('status' ))
667
667
self .true (item .get ('result' ))
668
668
669
669
async with sess .put (url_ul , data = abuf ) as resp :
670
- self .eq (200 , resp .status )
670
+ self .eq (resp .status , http . HTTPStatus . OK )
671
671
item = await resp .json ()
672
672
self .eq ('ok' , item .get ('status' ))
673
673
result = item .get ('result' )
@@ -676,14 +676,14 @@ async def runAxonTestHttp(self, axon, realaxon=None):
676
676
self .true (await realaxon .has (asdfhash ))
677
677
678
678
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 )
680
680
self .eq (abuf , await resp .read ())
681
681
682
682
# Streaming upload
683
683
byts = io .BytesIO (bbuf )
684
684
685
685
async with sess .post (url_ul , data = byts ) as resp :
686
- self .eq (200 , resp .status )
686
+ self .eq (resp .status , http . HTTPStatus . OK )
687
687
item = await resp .json ()
688
688
self .eq ('ok' , item .get ('status' ))
689
689
result = item .get ('result' )
@@ -694,7 +694,7 @@ async def runAxonTestHttp(self, axon, realaxon=None):
694
694
byts = io .BytesIO (bbuf )
695
695
696
696
async with sess .put (url_ul , data = byts ) as resp :
697
- self .eq (200 , resp .status )
697
+ self .eq (resp .status , http . HTTPStatus . OK )
698
698
item = await resp .json ()
699
699
self .eq ('ok' , item .get ('status' ))
700
700
result = item .get ('result' )
@@ -705,7 +705,7 @@ async def runAxonTestHttp(self, axon, realaxon=None):
705
705
byts = io .BytesIO (b'' )
706
706
707
707
async with sess .post (url_ul , data = byts ) as resp :
708
- self .eq (200 , resp .status )
708
+ self .eq (resp .status , http . HTTPStatus . OK )
709
709
item = await resp .json ()
710
710
self .eq ('ok' , item .get ('status' ))
711
711
result = item .get ('result' )
@@ -715,7 +715,7 @@ async def runAxonTestHttp(self, axon, realaxon=None):
715
715
716
716
# Streaming download
717
717
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 )
719
719
720
720
byts = []
721
721
async for bytz in resp .content .iter_chunked (1024 ):
@@ -726,44 +726,44 @@ async def runAxonTestHttp(self, axon, realaxon=None):
726
726
727
727
# HEAD
728
728
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 )
730
730
self .eq ('33554437' , resp .headers .get ('content-length' ))
731
731
self .none (resp .headers .get ('content-range' ))
732
732
733
733
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 )
735
735
self .eq ('0' , resp .headers .get ('content-length' ))
736
736
737
737
# DELETE method by sha256
738
738
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 )
740
740
info = await resp .json ()
741
741
self .eq ('err' , info .get ('status' ))
742
742
self .eq ('BadArg' , info .get ('code' ))
743
743
self .eq ('Hash is not a SHA-256: foobar' , info .get ('mesg' ))
744
744
745
745
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 )
747
747
item = await resp .json ()
748
748
self .eq ('ok' , item .get ('status' ))
749
749
self .true (item .get ('result' ))
750
750
751
751
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 )
753
753
item = await resp .json ()
754
754
self .eq ('err' , item .get ('status' ))
755
755
756
756
# test /api/v1/axon/file/del API
757
757
data = {'sha256s' : (asdfhash_h , asdfhash_h )}
758
758
async with sess .post (url_de , json = data ) as resp :
759
- self .eq (200 , resp .status )
759
+ self .eq (resp .status , http . HTTPStatus . OK )
760
760
item = await resp .json ()
761
761
self .eq ('ok' , item .get ('status' ))
762
762
self .eq (((asdfhash_h , False ), (asdfhash_h , False )), item .get ('result' ))
763
763
764
764
data = {'newp' : 'newp' }
765
765
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 )
767
767
item = await resp .json ()
768
768
self .eq ('err' , item .get ('status' ))
769
769
self .eq ('SchemaViolation' , item .get ('code' ))
@@ -783,7 +783,7 @@ def genr():
783
783
784
784
headers = {'range' : 'bytes=2-4' }
785
785
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 )
787
787
self .eq ('3' , resp .headers .get ('content-length' ))
788
788
self .eq ('bytes 2-4/12' , resp .headers .get ('content-range' ))
789
789
buf = b''
@@ -793,7 +793,7 @@ def genr():
793
793
794
794
headers = {'range' : 'bytes=,2-' }
795
795
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 )
797
797
self .eq ('10' , resp .headers .get ('content-length' ))
798
798
self .eq ('bytes 2-11/12' , resp .headers .get ('content-range' ))
799
799
buf = b''
@@ -803,7 +803,7 @@ def genr():
803
803
804
804
headers = {'range' : 'bytes=0-11' }
805
805
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 )
807
807
self .eq ('12' , resp .headers .get ('content-length' ))
808
808
self .eq ('bytes 0-11/12' , resp .headers .get ('content-range' ))
809
809
buf = b''
@@ -813,7 +813,7 @@ def genr():
813
813
814
814
headers = {'range' : 'bytes=10-11' }
815
815
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 )
817
817
self .eq ('2' , resp .headers .get ('content-length' ))
818
818
self .eq ('bytes 10-11/12' , resp .headers .get ('content-range' ))
819
819
buf = b''
@@ -823,7 +823,7 @@ def genr():
823
823
824
824
headers = {'range' : 'bytes=11-11' }
825
825
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 )
827
827
self .eq ('1' , resp .headers .get ('content-length' ))
828
828
self .eq ('bytes 11-11/12' , resp .headers .get ('content-range' ))
829
829
buf = b''
@@ -833,7 +833,7 @@ def genr():
833
833
834
834
headers = {'range' : 'bytes=2-4,8-11' }
835
835
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 )
837
837
self .eq ('3' , resp .headers .get ('content-length' ))
838
838
self .eq ('bytes 2-4/12' , resp .headers .get ('content-range' ))
839
839
buf = b''
@@ -844,39 +844,40 @@ def genr():
844
844
# HEAD tests
845
845
headers = {'range' : 'bytes=2-4' }
846
846
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 )
848
848
self .eq ('3' , resp .headers .get ('content-length' ))
849
849
self .eq ('bytes 2-4/12' , resp .headers .get ('content-range' ))
850
850
851
851
headers = {'range' : 'bytes=10-11' }
852
852
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 )
854
854
self .eq ('2' , resp .headers .get ('content-length' ))
855
855
self .eq ('bytes 10-11/12' , resp .headers .get ('content-range' ))
856
856
857
857
headers = {'range' : 'bytes=11-11' }
858
858
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 )
860
860
self .eq ('1' , resp .headers .get ('content-length' ))
861
861
self .eq ('bytes 11-11/12' , resp .headers .get ('content-range' ))
862
862
863
+ # TODO - In python 3.13+ this can be HTTPStatus.RANGE_NOT_SATISFIABLE
863
864
# Reading past blobsize isn't valid HTTP
864
865
headers = {'range' : 'bytes=10-20' }
865
866
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 )
867
868
868
869
headers = {'range' : 'bytes=11-12' }
869
870
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 )
871
872
872
873
headers = {'range' : 'bytes=20-40' }
873
874
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 )
875
876
876
877
# Negative size
877
878
headers = {'range' : 'bytes=20-4' }
878
879
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 )
880
881
881
882
async def test_axon_perms (self ):
882
883
async with self .getTestAxon () as axon :
0 commit comments