1 # Unix SMB/CIFS implementation.
3 # Tests for samba-tool user auth policy command
5 # Copyright (C) Catalyst.Net Ltd. 2023
7 # Written by Rob van der Linde <rob@catalyst.net.nz>
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
23 from samba
.domain
.models
import AuthenticationPolicy
, User
25 from .silo_base
import SiloTest
28 class AuthPolicyCmdTestCase(SiloTest
):
29 def test_assign(self
):
30 """Test assigning an authentication policy to a user."""
31 self
.addCleanup(self
.runcmd
, "user", "auth", "policy", "remove", "alice")
32 result
, out
, err
= self
.runcmd("user", "auth", "policy", "assign",
33 "alice", "--policy", "User Policy")
34 self
.assertIsNone(result
, msg
=err
)
36 # Assigned policy should be 'Developers'
37 user
= User
.get(self
.samdb
, account_name
="alice")
38 policy
= AuthenticationPolicy
.get(self
.samdb
, dn
=user
.assigned_policy
)
39 self
.assertEqual(policy
.name
, "User Policy")
41 def test_assign__invalid_policy(self
):
42 """Test assigning a non-existing authentication policy to a user."""
43 result
, out
, err
= self
.runcmd("user", "auth", "policy", "assign",
44 "alice", "--policy", "doesNotExist")
45 self
.assertEqual(result
, -1)
46 self
.assertIn("Authentication policy doesNotExist not found.", err
)
48 def test_remove(self
):
49 """Test removing the assigned authentication policy from a user."""
50 # First assign a policy, so we can test removing it.
51 self
.runcmd("user", "auth", "policy", "assign", "bob", "--policy",
54 # Assigned policy should be set
55 user
= User
.get(self
.samdb
, account_name
="bob")
56 self
.assertIsNotNone(user
.assigned_policy
)
59 result
, out
, err
= self
.runcmd("user", "auth", "policy", "remove",
61 self
.assertIsNone(result
, msg
=err
)
63 # Assigned policy should be None
64 user
= User
.get(self
.samdb
, account_name
="bob")
65 self
.assertIsNone(user
.assigned_policy
)
68 """Test viewing the current assigned authentication policy on a user."""
69 # Assign a policy on one of the users.
70 self
.addCleanup(self
.runcmd
, "user", "auth", "policy", "remove", "bob")
71 self
.runcmd("user", "auth", "policy", "assign", "bob", "--policy",
74 # Test user with a policy assigned.
75 result
, out
, err
= self
.runcmd("user", "auth", "policy", "view",
77 self
.assertIsNone(result
, msg
=err
)
79 out
, "User bob assigned to authentication policy User Policy\n")
81 # Test user without a policy assigned.
82 result
, out
, err
= self
.runcmd("user", "auth", "policy", "view",
84 self
.assertIsNone(result
, msg
=err
)
86 out
, "User joe has no assigned authentication policy.\n")