File: test_grp.py

package info (click to toggle)
pypy3 7.3.20%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 212,628 kB
  • sloc: python: 2,101,020; ansic: 540,684; sh: 21,462; asm: 14,419; cpp: 4,451; makefile: 4,209; objc: 761; xml: 530; exp: 499; javascript: 314; pascal: 244; lisp: 45; csh: 12; awk: 4
file content (36 lines) | stat: -rw-r--r-- 955 bytes parent folder | download | duplicates (5)
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
import pytest

grp = pytest.importorskip('grp')


def test_basic():
    with pytest.raises(KeyError) as e:
        grp.getgrnam("dEkLofcG")
    assert e.value.args[0] == 'getgrnam(): name not found: dEkLofcG'
    for name in ["root", "wheel"]:
        try:
            g = grp.getgrnam(name)
        except KeyError:
            continue
        assert g.gr_gid == 0
        assert 'root' in g.gr_mem or g.gr_mem == []
        assert g.gr_name == name
        assert isinstance(g.gr_passwd, str)    # usually just 'x', don't hope :-)
        break
    else:
        raise

def test_extra():
    with pytest.raises(TypeError):
        grp.getgrnam(False)
    with pytest.raises(TypeError):
        grp.getgrnam(None)

def test_struct_group():
    g = grp.struct_group((10, 20, 30, 40))
    assert len(g) == 4
    assert list(g) == [10, 20, 30, 40]
    assert g.gr_name == 10
    assert g.gr_passwd == 20
    assert g.gr_gid == 30
    assert g.gr_mem == 40