コード例 #1
0
ファイル: auth_test.py プロジェクト: linhua55/h
def test_group_principals_with_one_group():
    user = mock.Mock(groups=[_mock_group('pubid1')])

    assert auth.group_principals(user) == [
        'group:__world__',
        'group:pubid1',
    ]
コード例 #2
0
ファイル: auth_test.py プロジェクト: chrber/h
def test_group_principals_with_one_group():
    user = mock.Mock(groups=[_mock_group('pubid1')])

    assert auth.group_principals(user) == [
        'group:__world__',
        'group:pubid1',
    ]
コード例 #3
0
ファイル: auth_test.py プロジェクト: chr7stos/Webmarks
def test_group_principals_with_three_groups():
    user = mock.Mock(groups=[
        _mock_group('pubid1'),
        _mock_group('pubid2'),
        _mock_group('pubid3'),
    ])

    assert auth.group_principals(user) == [
        'group:pubid1',
        'group:pubid2',
        'group:pubid3',
    ]
コード例 #4
0
ファイル: auth_test.py プロジェクト: linhua55/h
def test_group_principals_with_three_groups():
    user = mock.Mock(groups=[
        _mock_group('pubid1'),
        _mock_group('pubid2'),
        _mock_group('pubid3'),
    ])

    assert auth.group_principals(user) == [
        'group:__world__',
        'group:pubid1',
        'group:pubid2',
        'group:pubid3',
    ]
コード例 #5
0
ファイル: auth_test.py プロジェクト: chrber/h
def test_group_principals_with_no_groups():
    user = mock.Mock(groups=[])

    assert auth.group_principals(user) == ['group:__world__']
コード例 #6
0
ファイル: auth_test.py プロジェクト: dezynetechnologies/h
def test_group_principals_with_three_groups():
    user = mock.Mock(groups=[_mock_group("hashid1"), _mock_group("hashid2"), _mock_group("hashid3")])

    assert auth.group_principals(user) == ["group:__world__", "group:hashid1", "group:hashid2", "group:hashid3"]
コード例 #7
0
ファイル: auth_test.py プロジェクト: linhua55/h
def test_group_principals_with_no_groups():
    user = mock.Mock(groups=[])

    assert auth.group_principals(user) == ['group:__world__']