@@ -768,42 +768,48 @@ def _err_response_caused_by_illegalarguments(self, v2=False):
768768 @override_switch ('v3_endpoints' , active = True )
769769 def test_patient_read_endpoint_v3_403 (self ):
770770 '''
771- test patient read and search v2
771+ test patient read v3 throwing a 403 when an app is not in the flag
772+ TODO - Should be removed when v3_early_adopter flag is deleted and v3 is available for all apps
772773 '''
773774 self ._call_v3_endpoint_to_assert_403 (FHIR_RES_TYPE_PATIENT , settings .DEFAULT_SAMPLE_FHIR_ID_V3 , False , None )
774775
775776 @override_switch ('v3_endpoints' , active = True )
776777 def test_coverage_read_endpoint_v3_403 (self ):
777778 '''
778- test patient read and search v2
779+ test coverage read v3 throwing a 403 when an app is not in the flag
780+ TODO - Should be removed when v3_early_adopter flag is deleted and v3 is available for all apps
779781 '''
780782 self ._call_v3_endpoint_to_assert_403 (FHIR_RES_TYPE_COVERAGE , 'part-a-99999999999999' , False , None )
781783
782784 @override_switch ('v3_endpoints' , active = True )
783785 def test_eob_read_endpoint_v3_403 (self ):
784786 '''
785- test patient read and search v2
787+ test eob read v3 throwing a 403 when an app is not in the flag
788+ TODO - Should be removed when v3_early_adopter flag is deleted and v3 is available for all apps
786789 '''
787790 self ._call_v3_endpoint_to_assert_403 (FHIR_RES_TYPE_EOB , 'outpatient--9999999999999' , False , None )
788791
789792 @override_switch ('v3_endpoints' , active = True )
790793 def test_patient_search_endpoint_v3_403 (self ):
791794 '''
792- test patient read and search v2
795+ test patient search v3 throwing a 403 when an app is not in the flag
796+ TODO - Should be removed when v3_early_adopter flag is deleted and v3 is available for all apps
793797 '''
794798 self ._call_v3_endpoint_to_assert_403 (FHIR_RES_TYPE_PATIENT , settings .DEFAULT_SAMPLE_FHIR_ID_V3 , True , '_id=' )
795799
796800 @override_switch ('v3_endpoints' , active = True )
797801 def test_coverage_search_endpoint_v3_403 (self ):
798802 '''
799- test patient read and search v2
803+ test coverage search v3 throwing a 403 when an app is not in the flag
804+ TODO - Should be removed when v3_early_adopter flag is deleted and v3 is available for all apps
800805 '''
801806 self ._call_v3_endpoint_to_assert_403 (FHIR_RES_TYPE_COVERAGE , settings .DEFAULT_SAMPLE_FHIR_ID_V3 , True , 'beneficiary=' )
802807
803808 @override_switch ('v3_endpoints' , active = True )
804809 def test_eob_search_endpoint_v3_403 (self ):
805810 '''
806- test patient read and search v2
811+ test eob search v3 throwing a 403 when an app is not in the flag
812+ TODO - Should be removed when v3_early_adopter flag is deleted and v3 is available for all apps
807813 '''
808814 self ._call_v3_endpoint_to_assert_403 (FHIR_RES_TYPE_EOB , settings .DEFAULT_SAMPLE_FHIR_ID_V3 , True , 'patient=' )
809815
0 commit comments