@@ -841,14 +841,14 @@ def test_user_account(self):
841
841
842
842
843
843
class WorldWideTestCase (LabBasedTestCase ):
844
- _ADFS_LABS_DECOMMISSIONED = "ADFS labs were decommissioned since July 2025 until further notice"
844
+ _ADFS_LABS_UNAVAILABLE = "ADFS labs were temporarily down since July 2025 until further notice"
845
845
846
846
def test_aad_managed_user (self ): # Pure cloud
847
847
config = self .get_lab_user (usertype = "cloud" )
848
848
config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
849
849
self ._test_username_password (** config )
850
850
851
- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
851
+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
852
852
def test_adfs4_fed_user (self ):
853
853
config = self .get_lab_user (usertype = "federated" , federationProvider = "ADFSv4" )
854
854
config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
@@ -866,7 +866,7 @@ def test_adfs2_fed_user(self):
866
866
config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
867
867
self ._test_username_password (** config )
868
868
869
- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
869
+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
870
870
def test_adfs2019_fed_user (self ):
871
871
try :
872
872
config = self .get_lab_user (usertype = "federated" , federationProvider = "ADFSv2019" )
@@ -895,7 +895,7 @@ def test_msa_pt_app_signin_via_organizations_authority_without_login_hint(self):
895
895
prompt = "select_account" , # In MSAL Python, this resets login_hint
896
896
))
897
897
898
- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
898
+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
899
899
def test_ropc_adfs2019_onprem (self ):
900
900
# Configuration is derived from https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/4.7.0/tests/Microsoft.Identity.Test.Common/TestConstants.cs#L250-L259
901
901
config = self .get_lab_user (usertype = "onprem" , federationProvider = "ADFSv2019" )
@@ -904,7 +904,7 @@ def test_ropc_adfs2019_onprem(self):
904
904
config ["password" ] = self .get_lab_user_secret (config ["lab_name" ])
905
905
self ._test_username_password (** config )
906
906
907
- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
907
+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
908
908
def test_adfs2019_onprem_acquire_token_by_auth_code (self ):
909
909
"""When prompted, you can manually login using this account:
910
910
@@ -918,7 +918,7 @@ def test_adfs2019_onprem_acquire_token_by_auth_code(self):
918
918
config ["port" ] = 8080
919
919
self ._test_acquire_token_by_auth_code (** config )
920
920
921
- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
921
+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
922
922
def test_adfs2019_onprem_acquire_token_by_auth_code_flow (self ):
923
923
config = self .get_lab_user (usertype = "onprem" , federationProvider = "ADFSv2019" )
924
924
self ._test_acquire_token_by_auth_code_flow (** dict (
@@ -928,7 +928,7 @@ def test_adfs2019_onprem_acquire_token_by_auth_code_flow(self):
928
928
port = 8080 ,
929
929
))
930
930
931
- @unittest .skip (_ADFS_LABS_DECOMMISSIONED )
931
+ @unittest .skip (_ADFS_LABS_UNAVAILABLE )
932
932
def test_adfs2019_onprem_acquire_token_interactive (self ):
933
933
config = self .get_lab_user (usertype = "onprem" , federationProvider = "ADFSv2019" )
934
934
self ._test_acquire_token_interactive (** dict (
0 commit comments