1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
|
#
# SSSD files domain tests
#
# Copyright (c) 2016 Red Hat, Inc.
#
# This is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 only
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import os
import stat
import time
import config
import signal
import subprocess
import pwd
import grp
import pytest
import ent
import sssd_id
from sssd_nss import NssReturnCode
from sssd_passwd import call_sssd_getpwnam, call_sssd_enumeration
from sssd_group import call_sssd_getgrnam
from files_ops import passwd_ops_setup, group_ops_setup
from util import unindent
# Sync this with files_ops.c
FILES_REALLOC_CHUNK = 64
CANARY = dict(name='canary', passwd='x', uid=100001, gid=200001,
gecos='Used to check if passwd is resolvable',
dir='/home/canary',
shell='/bin/bash')
USER1 = dict(name='user1', passwd='x', uid=10001, gid=20001,
gecos='User for tests',
dir='/home/user1',
shell='/bin/bash')
USER2 = dict(name='user2', passwd='x', uid=10002, gid=20001,
gecos='User2 for tests',
dir='/home/user2',
shell='/bin/bash')
CANARY_GR = dict(name='canary',
gid=300001,
mem=[])
GROUP1 = dict(name='group1',
gid=30001,
mem=['user1'])
GROUP12 = dict(name='group12',
gid=30012,
mem=['user1', 'user2'])
GROUP_NOMEM = dict(name='group_nomem',
gid=40000,
mem=[])
def stop_sssd():
pid_file = open(config.PIDFILE_PATH, "r")
pid = int(pid_file.read())
os.kill(pid, signal.SIGTERM)
while True:
try:
os.kill(pid, signal.SIGCONT)
except:
break
time.sleep(1)
def create_conf_fixture(request, contents):
"""Generate sssd.conf and add teardown for removing it"""
conf = open(config.CONF_PATH, "w")
conf.write(contents)
conf.close()
os.chmod(config.CONF_PATH, stat.S_IRUSR | stat.S_IWUSR)
request.addfinalizer(lambda: os.unlink(config.CONF_PATH))
def create_sssd_fixture(request):
"""Start sssd and add teardown for stopping it and removing state"""
os.environ["SSS_FILES_PASSWD"] = os.environ["NSS_WRAPPER_PASSWD"]
os.environ["SSS_FILES_GROUP"] = os.environ["NSS_WRAPPER_GROUP"]
if subprocess.call(["sssd", "-D", "-f"]) != 0:
raise Exception("sssd start failed")
def teardown():
try:
stop_sssd()
except:
pass
for path in os.listdir(config.DB_PATH):
os.unlink(config.DB_PATH + "/" + path)
for path in os.listdir(config.MCACHE_PATH):
os.unlink(config.MCACHE_PATH + "/" + path)
request.addfinalizer(teardown)
# Fixtures
@pytest.fixture
def files_domain_only(request):
conf = unindent("""\
[sssd]
domains = files
services = nss
[domain/files]
id_provider = files
""").format(**locals())
create_conf_fixture(request, conf)
create_sssd_fixture(request)
return None
@pytest.fixture
def no_sssd_domain(request):
conf = unindent("""\
[sssd]
services = nss
""").format(**locals())
create_conf_fixture(request, conf)
create_sssd_fixture(request)
return None
@pytest.fixture
def no_files_domain(request):
conf = unindent("""\
[sssd]
domains = local
services = nss
[domain/local]
id_provider = local
""").format(**locals())
create_conf_fixture(request, conf)
create_sssd_fixture(request)
return None
@pytest.fixture
def disabled_files_domain(request):
conf = unindent("""\
[sssd]
domains = local
services = nss
enable_files_domain = false
[domain/local]
id_provider = local
""").format(**locals())
create_conf_fixture(request, conf)
create_sssd_fixture(request)
return None
@pytest.fixture
def no_sssd_conf(request):
create_sssd_fixture(request)
return None
def setup_pw_with_list(request, user_list):
pwd_ops = passwd_ops_setup(request)
for user in user_list:
pwd_ops.useradd(**user)
ent.assert_passwd_by_name(CANARY['name'], CANARY)
return pwd_ops
@pytest.fixture
def add_user_with_canary(request):
return setup_pw_with_list(request, [CANARY, USER1])
@pytest.fixture
def setup_pw_with_canary(request):
return setup_pw_with_list(request, [CANARY])
def setup_gr_with_list(request, group_list):
grp_ops = group_ops_setup(request)
for group in group_list:
grp_ops.groupadd(**group)
ent.assert_group_by_name(CANARY_GR['name'], CANARY_GR)
return grp_ops
@pytest.fixture
def add_group_with_canary(request):
return setup_gr_with_list(request, [GROUP1, CANARY_GR])
@pytest.fixture
def setup_gr_with_canary(request):
return setup_gr_with_list(request, [CANARY_GR])
def poll_canary(fn, name, threshold=20):
"""
If we query SSSD while it's updating its cache, it would return NOTFOUND
rather than a result from potentially outdated or incomplete cache. In
reality this doesn't hurt because the order of the modules is normally
"sss files" so the user lookup would fall back to files. But in tests
we use this loop to wait until the canary user who is always there is
resolved.
"""
for _ in range(0, threshold):
res, _ = fn(name)
if res == NssReturnCode.SUCCESS:
return True
elif res == NssReturnCode.NOTFOUND:
time.sleep(0.1)
continue
else:
return False
return False
def sssd_getpwnam_sync(name):
ret = poll_canary(call_sssd_getpwnam, CANARY["name"])
if ret is False:
return NssReturnCode.NOTFOUND, None
return call_sssd_getpwnam(name)
def sssd_getgrnam_sync(name):
ret = poll_canary(call_sssd_getgrnam, CANARY_GR["name"])
if ret is False:
return NssReturnCode.NOTFOUND, None
return call_sssd_getgrnam(name)
def sssd_id_sync(name):
sssd_getpwnam_sync(CANARY["name"])
res, _, groups = sssd_id.get_user_groups(name)
return res, groups
# Helper functions
def user_generator(seqnum):
return dict(name='user%d' % seqnum,
passwd='x',
uid=10000 + seqnum,
gid=20000 + seqnum,
gecos='User for tests',
dir='/home/user%d' % seqnum,
shell='/bin/bash')
def check_user(exp_user, delay=1.0):
if delay > 0:
time.sleep(delay)
res, found_user = sssd_getpwnam_sync(exp_user["name"])
assert res == NssReturnCode.SUCCESS
assert found_user == exp_user
def group_generator(seqnum):
return dict(name='group%d' % seqnum,
gid=30000 + seqnum,
mem=[])
def check_group(exp_group, delay=1.0):
if delay > 0:
time.sleep(delay)
res, found_group = sssd_getgrnam_sync(exp_group["name"])
assert res == NssReturnCode.SUCCESS
assert found_group == exp_group
def check_group_list(exp_groups_list):
for exp_group in exp_groups_list:
check_group(exp_group)
# User tests
def test_getpwnam_after_start(add_user_with_canary, files_domain_only):
"""
Test that after startup without any additional operations, a user
can be resolved through sssd
"""
res, user = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.SUCCESS
assert user == USER1
def test_getpwnam_neg(files_domain_only):
"""
Test that a nonexistant user cannot be resolved
"""
res, _ = call_sssd_getpwnam("nosuchuser")
assert res == NssReturnCode.NOTFOUND
def test_root_does_not_resolve(files_domain_only):
"""
SSSD currently does not resolve the root user even though it can
be resolved through the NSS interface
"""
nss_root = pwd.getpwnam("root")
assert nss_root is not None
res, _ = call_sssd_getpwnam("root")
assert res == NssReturnCode.NOTFOUND
def test_add_remove_add_file_user(setup_pw_with_canary, files_domain_only):
"""
Test that removing a user is detected and the user
is removed from the sssd database. Similarly, an add
should be detected. Do this several times to test retaining
the inotify watch for moved and unlinked files.
"""
res, _ = call_sssd_getpwnam(USER1["name"])
assert res == NssReturnCode.NOTFOUND
setup_pw_with_canary.useradd(**USER1)
check_user(USER1)
setup_pw_with_canary.userdel(USER1["name"])
time.sleep(1.0)
res, _ = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.NOTFOUND
setup_pw_with_canary.useradd(**USER1)
check_user(USER1)
def test_mod_user_shell(add_user_with_canary, files_domain_only):
"""
Test that modifying a user shell is detected and the user
is modified in the sssd database
"""
res, user = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.SUCCESS
assert user == USER1
moduser = dict(USER1)
moduser['shell'] = '/bin/zsh'
add_user_with_canary.usermod(**moduser)
check_user(moduser)
def test_enum_users(setup_pw_with_canary, files_domain_only):
"""
Test that enumerating all users works with the default configuration. Also
test that removing all entries and then enumerating again returns an empty
set
"""
num_users = 10
for i in range(1, num_users+1):
user = user_generator(i)
setup_pw_with_canary.useradd(**user)
sssd_getpwnam_sync(CANARY["name"])
user_list = call_sssd_enumeration()
# +1 because the canary is added
assert len(user_list) == num_users+1
def incomplete_user_setup(pwd_ops, del_field, exp_field):
adduser = dict(USER1)
del adduser[del_field]
exp_user = dict(USER1)
exp_user[del_field] = exp_field
pwd_ops.useradd(**adduser)
return exp_user
def test_user_no_shell(setup_pw_with_canary, files_domain_only):
"""
Test that resolving a user without a shell defined works and returns
a fallback value
"""
check_user(incomplete_user_setup(setup_pw_with_canary, 'shell', ''))
def test_user_no_dir(setup_pw_with_canary, files_domain_only):
"""
Test that resolving a user without a homedir defined works and returns
a fallback value
"""
check_user(incomplete_user_setup(setup_pw_with_canary, 'dir', '/'))
def test_user_no_gecos(setup_pw_with_canary, files_domain_only):
"""
Test that resolving a user without a gecos defined works and returns
a fallback value
"""
check_user(incomplete_user_setup(setup_pw_with_canary, 'gecos', ''))
def test_user_no_passwd(setup_pw_with_canary, files_domain_only):
"""
Test that resolving a user without a password defined works and returns
a fallback value
"""
check_user(incomplete_user_setup(setup_pw_with_canary, 'passwd', 'x'))
def bad_incomplete_user_setup(pwd_ops, del_field):
adduser = dict(USER1)
adduser[del_field] = ''
pwd_ops.useradd(**adduser)
def test_incomplete_user_fail(setup_pw_with_canary, files_domain_only):
"""
Test resolving an incomplete user where the missing field is required
to be present in the user record and thus the user shouldn't resolve.
We cannot test uid and gid missing because nss_wrapper doesn't even
load the malformed passwd file, then.
"""
bad_incomplete_user_setup(setup_pw_with_canary, 'name')
res, user = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.NOTFOUND
def test_getgrnam_after_start(add_group_with_canary, files_domain_only):
"""
Test that after startup without any additional operations, a group
can be resolved through sssd
"""
check_group(GROUP1)
def test_getgrnam_neg(files_domain_only):
"""
Test that a nonexistant group cannot be resolved
"""
res, user = sssd_getgrnam_sync("nosuchgroup")
assert res == NssReturnCode.NOTFOUND
def test_root_group_does_not_resolve(files_domain_only):
"""
SSSD currently does not resolve the root group even though it can
be resolved through the NSS interface
"""
nss_root = grp.getgrnam("root")
assert nss_root is not None
res, user = call_sssd_getgrnam("root")
assert res == NssReturnCode.NOTFOUND
def test_add_remove_add_file_group(setup_gr_with_canary, files_domain_only):
"""
Test that removing a group is detected and the group
is removed from the sssd database. Similarly, an add
should be detected. Do this several times to test retaining
the inotify watch for moved and unlinked files.
"""
res, group = call_sssd_getgrnam(GROUP1["name"])
assert res == NssReturnCode.NOTFOUND
setup_gr_with_canary.groupadd(**GROUP1)
check_group(GROUP1)
setup_gr_with_canary.groupdel(GROUP1["name"])
time.sleep(1)
res, group = call_sssd_getgrnam(GROUP1["name"])
assert res == NssReturnCode.NOTFOUND
setup_gr_with_canary.groupadd(**GROUP1)
check_group(GROUP1)
def test_mod_group_name(add_group_with_canary, files_domain_only):
"""
Test that modifying a group name is detected and the group
is modified in the sssd database
"""
check_group(GROUP1)
modgroup = dict(GROUP1)
modgroup['name'] = 'group1_mod'
add_group_with_canary.groupmod(old_name=GROUP1["name"], **modgroup)
check_group(modgroup)
def test_mod_group_gid(add_group_with_canary, files_domain_only):
"""
Test that modifying a group name is detected and the group
is modified in the sssd database
"""
check_group(GROUP1)
modgroup = dict(GROUP1)
modgroup['gid'] = 30002
add_group_with_canary.groupmod(old_name=GROUP1["name"], **modgroup)
check_group(modgroup)
@pytest.fixture
def add_group_nomem_with_canary(request):
return setup_gr_with_list(request, [GROUP_NOMEM, CANARY_GR])
def test_getgrnam_no_members(add_group_nomem_with_canary, files_domain_only):
"""
Test that after startup without any additional operations, a group
can be resolved through sssd
"""
check_group(GROUP_NOMEM)
def groupadd_list(grp_ops, groups):
for grp in groups:
grp_ops.groupadd(**grp)
def useradd_list(pwd_ops, users):
for usr in users:
pwd_ops.useradd(**usr)
def user_and_group_setup(pwd_ops, grp_ops, users, groups, reverse):
"""
The reverse is added so that we test cases where a group is added first,
then a user for this group is created -- in that case, we need to properly
link the group after the user is added.
"""
if reverse is False:
useradd_list(pwd_ops, users)
groupadd_list(grp_ops, groups)
else:
groupadd_list(grp_ops, groups)
useradd_list(pwd_ops, users)
def members_check(added_groups):
# Test that users are members as per getgrnam
check_group_list(added_groups)
# Test that users are members as per initgroups
for group in added_groups:
for member in group['mem']:
res, groups = sssd_id_sync(member)
assert res == sssd_id.NssReturnCode.SUCCESS
assert group['name'] in groups
def test_getgrnam_members_users_first(setup_pw_with_canary,
setup_gr_with_canary,
files_domain_only):
"""
A user is linked with a group
"""
user_and_group_setup(setup_pw_with_canary,
setup_gr_with_canary,
[USER1],
[GROUP1],
False)
members_check([GROUP1])
def test_getgrnam_members_users_multiple(setup_pw_with_canary,
setup_gr_with_canary,
files_domain_only):
"""
Multiple users are linked with a group
"""
user_and_group_setup(setup_pw_with_canary,
setup_gr_with_canary,
[USER1, USER2],
[GROUP12],
False)
members_check([GROUP12])
def test_getgrnam_members_groups_first(setup_pw_with_canary,
setup_gr_with_canary,
files_domain_only):
"""
A group is linked with a user
"""
user_and_group_setup(setup_pw_with_canary,
setup_gr_with_canary,
[USER1],
[GROUP1],
True)
members_check([GROUP1])
def test_getgrnam_ghost(setup_pw_with_canary,
setup_gr_with_canary,
files_domain_only):
"""
Test that a group with members while the members are not present
are added as ghosts. This is also what nss_files does, getgrnam would
return group members that do not exist as well.
"""
user_and_group_setup(setup_pw_with_canary,
setup_gr_with_canary,
[],
[GROUP12],
False)
check_group(GROUP12)
for member in GROUP12['mem']:
res, _ = call_sssd_getpwnam(member)
assert res == NssReturnCode.NOTFOUND
def ghost_and_member_test(pw_ops, grp_ops, reverse):
user_and_group_setup(pw_ops,
grp_ops,
[USER1],
[GROUP12],
reverse)
check_group(GROUP12)
# We checked that the group added has the same members as group12,
# so both user1 and user2. Now check that user1 is a member of
# group12 and its own primary GID but user2 doesn't exist, it's
# just a ghost entry
res, groups = sssd_id_sync('user1')
assert res == sssd_id.NssReturnCode.SUCCESS
assert len(groups) == 2
assert 'group12' in groups
res, _ = call_sssd_getpwnam('user2')
assert res == NssReturnCode.NOTFOUND
def test_getgrnam_user_ghost_and_member(setup_pw_with_canary,
setup_gr_with_canary,
files_domain_only):
"""
Test that a group with one member and one ghost.
"""
ghost_and_member_test(setup_pw_with_canary,
setup_gr_with_canary,
False)
def test_getgrnam_user_member_and_ghost(setup_pw_with_canary,
setup_gr_with_canary,
files_domain_only):
"""
Test that a group with one member and one ghost, adding the group
first and then linking the member
"""
ghost_and_member_test(setup_pw_with_canary,
setup_gr_with_canary,
True)
def test_getgrnam_add_remove_members(setup_pw_with_canary,
add_group_nomem_with_canary,
files_domain_only):
"""
Test that a user is linked with a group
"""
pwd_ops = setup_pw_with_canary
check_group(GROUP_NOMEM)
for usr in [USER1, USER2]:
pwd_ops.useradd(**usr)
modgroup = dict(GROUP_NOMEM)
modgroup['mem'] = ['user1', 'user2']
add_group_nomem_with_canary.groupmod(old_name=modgroup['name'], **modgroup)
check_group(modgroup)
res, groups = sssd_id_sync('user1')
assert res == sssd_id.NssReturnCode.SUCCESS
assert len(groups) == 2
assert 'group_nomem' in groups
res, groups = sssd_id_sync('user2')
assert res == sssd_id.NssReturnCode.SUCCESS
assert 'group_nomem' in groups
modgroup['mem'] = ['user2']
add_group_nomem_with_canary.groupmod(old_name=modgroup['name'], **modgroup)
check_group(modgroup)
# User1 exists, but is not a member of any supplementary group anymore
res, _ = call_sssd_getpwnam('user1')
assert res == sssd_id.NssReturnCode.SUCCESS
res, groups = sssd_id_sync('user1')
assert res == sssd_id.NssReturnCode.NOTFOUND
# user2 still is
res, groups = sssd_id_sync('user2')
assert res == sssd_id.NssReturnCode.SUCCESS
assert len(groups) == 2
assert 'group_nomem' in groups
def test_getgrnam_add_remove_ghosts(setup_pw_with_canary,
add_group_nomem_with_canary,
files_domain_only):
"""
Test that a user is linked with a group
"""
pwd_ops = setup_pw_with_canary
check_group(GROUP_NOMEM)
modgroup = dict(GROUP_NOMEM)
modgroup['mem'] = ['user1', 'user2']
add_group_nomem_with_canary.groupmod(old_name=modgroup['name'], **modgroup)
check_group(modgroup)
modgroup['mem'] = ['user2']
add_group_nomem_with_canary.groupmod(old_name=modgroup['name'], **modgroup)
check_group(modgroup)
res, _ = call_sssd_getpwnam('user1')
assert res == NssReturnCode.NOTFOUND
res, _ = call_sssd_getpwnam('user2')
assert res == NssReturnCode.NOTFOUND
# Add this user and verify it's been added as a member
pwd_ops.useradd(**USER2)
res, groups = sssd_id_sync('user2')
assert res == sssd_id.NssReturnCode.SUCCESS
assert len(groups) == 2
assert 'group_nomem' in groups
def realloc_users(pwd_ops, num):
# Intentionally not including the the last one because
# canary is added first
for i in range(1, num):
user = user_generator(i)
pwd_ops.useradd(**user)
user = user_generator(num-1)
check_user(user)
def test_realloc_users_exact(setup_pw_with_canary, files_domain_only):
"""
Test that returning exactly FILES_REALLOC_CHUNK users (see files_ops.c)
works fine to test reallocation logic. Test exact number of users to
check for off-by-one errors.
"""
realloc_users(setup_pw_with_canary, FILES_REALLOC_CHUNK)
def test_realloc_users(setup_pw_with_canary, files_domain_only):
"""
Test that returning exactly FILES_REALLOC_CHUNK users (see files_ops.c)
works fine to test reallocation logic.
"""
realloc_users(setup_pw_with_canary, FILES_REALLOC_CHUNK*3)
def realloc_groups(grp_ops, num):
for i in range(1, num):
group = group_generator(i)
grp_ops.groupadd(**group)
group = group_generator(num-1)
check_group(group)
def test_realloc_groups_exact(setup_gr_with_canary, files_domain_only):
"""
Test that returning exactly FILES_REALLOC_CHUNK groups (see files_ops.c)
works fine to test reallocation logic. Test exact number of groups to
check for off-by-one errors.
"""
realloc_groups(setup_gr_with_canary, FILES_REALLOC_CHUNK*3)
def test_realloc_groups(setup_gr_with_canary, files_domain_only):
"""
Test that returning exactly FILES_REALLOC_CHUNK groups (see files_ops.c)
works fine to test reallocation logic. Test exact number of groups to
check for off-by-one errors.
"""
realloc_groups(setup_gr_with_canary, FILES_REALLOC_CHUNK*3)
# Files domain autoconfiguration tests
def test_no_sssd_domain(add_user_with_canary, no_sssd_domain):
"""
Test that if no sssd domain is configured, sssd will add the implicit one
"""
res, user = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.SUCCESS
assert user == USER1
def test_no_files_domain(add_user_with_canary, no_files_domain):
"""
Test that if no files domain is configured, sssd will add the implicit one
before any explicitly configured domains
"""
# Add a user with a different UID than the one in files
subprocess.check_call(
["sss_useradd", "-u", "10009", "-M", USER1["name"]])
# Even though the local domain is the only one configured,
# files will be resolved first
res, user = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.SUCCESS
assert user == USER1
def test_disable_files_domain(add_user_with_canary, disabled_files_domain):
"""
Test that if no files domain is configured, sssd will add the implicit one
before any explicitly configured domains
"""
# The local user will not be resolvable through nss_sss now
res, user = sssd_getpwnam_sync(USER1["name"])
assert res != NssReturnCode.SUCCESS
def test_no_sssd_conf(add_user_with_canary, no_sssd_conf):
"""
Test that running without sssd.conf implicitly configures one with
id_provider=files
"""
res, user = sssd_getpwnam_sync(USER1["name"])
assert res == NssReturnCode.SUCCESS
assert user == USER1
|