21
21
22
22
from warehouse .accounts import security_policy
23
23
from warehouse .accounts .interfaces import IUserService
24
- from warehouse .admin .flags import AdminFlagValue
25
24
from warehouse .utils .security_policy import AuthenticationMethod
26
25
27
26
@@ -602,32 +601,10 @@ def test_permits_with_unverified_email(self, monkeypatch, policy_class):
602
601
policy = policy_class ()
603
602
assert not policy .permits (request , context , "myperm" )
604
603
605
- # TODO: remove this test when we remove the conditional
606
- def test_permits_manage_projects_without_2fa_for_older_users (
607
- self , monkeypatch , policy_class
608
- ):
609
- monkeypatch .setattr (security_policy , "User" , pretend .stub )
610
-
611
- request = pretend .stub (
612
- flags = pretend .stub (enabled = lambda flag : False ),
613
- identity = pretend .stub (
614
- __principals__ = lambda : ["user:5" ],
615
- has_primary_verified_email = True ,
616
- has_two_factor = False ,
617
- date_joined = datetime (2019 , 1 , 1 ),
618
- ),
619
- matched_route = pretend .stub (name = "manage.projects" ),
620
- )
621
- context = pretend .stub (__acl__ = [(Allow , "user:5" , "myperm" )])
622
-
623
- policy = policy_class ()
624
- assert policy .permits (request , context , "myperm" )
625
-
626
604
def test_permits_manage_projects_with_2fa (self , monkeypatch , policy_class ):
627
605
monkeypatch .setattr (security_policy , "User" , pretend .stub )
628
606
629
607
request = pretend .stub (
630
- flags = pretend .stub (enabled = pretend .call_recorder (lambda * a : True )),
631
608
identity = pretend .stub (
632
609
__principals__ = lambda : ["user:5" ],
633
610
has_primary_verified_email = True ,
@@ -640,9 +617,6 @@ def test_permits_manage_projects_with_2fa(self, monkeypatch, policy_class):
640
617
641
618
policy = policy_class ()
642
619
assert policy .permits (request , context , "myperm" )
643
- assert request .flags .enabled .calls == [
644
- pretend .call (AdminFlagValue .TWOFA_REQUIRED_EVERYWHERE )
645
- ]
646
620
647
621
def test_deny_manage_projects_without_2fa (self , monkeypatch , policy_class ):
648
622
monkeypatch .setattr (security_policy , "User" , pretend .stub )
@@ -697,7 +671,6 @@ def test_permits_2fa_routes_without_2fa(
697
671
monkeypatch .setattr (security_policy , "User" , pretend .stub )
698
672
699
673
request = pretend .stub (
700
- flags = pretend .stub (enabled = pretend .call_recorder (lambda * a : False )),
701
674
identity = pretend .stub (
702
675
__principals__ = lambda : ["user:5" ],
703
676
has_primary_verified_email = True ,
@@ -711,6 +684,3 @@ def test_permits_2fa_routes_without_2fa(
711
684
712
685
policy = policy_class ()
713
686
assert policy .permits (request , context , "myperm" )
714
- assert request .flags .enabled .calls == [
715
- pretend .call (AdminFlagValue .TWOFA_REQUIRED_EVERYWHERE )
716
- ]
0 commit comments