Ejemplo n.º 1
0
def test_grant_python_pro_role_remove_tag_absent_user(
        granted_role, removed_roles, contacts_mock, find_active_campaign_absent_contact_mock):
    facade.grant_role('*****@*****.**', 3, granted_role)
    # Must remove other roles in any order
    for removed_roles_permutation in permutations(removed_roles):
        dct = facade._build_tags_array(removed_roles_permutation)
        dct['email'] = '*****@*****.**'
        try:
            contacts_mock.remove_tag.assert_called_once_with(dct)
        except AssertionError:
            pass
        else:
            return
    pytest.fail(f'Should call remove tags with {removed_roles}')
Ejemplo n.º 2
0
def test_data_scientist_add_tag_absent_user(contacts_mock, find_active_campaign_absent_contact_mock):
    facade.grant_role('*****@*****.**', 1, 'data-scientist')
    contacts_mock.add_tag.assert_called_once_with({'tags[1]': 'Data-scientist', 'email': '*****@*****.**'})
Ejemplo n.º 3
0
def test_grant_python_pro_role_add_tag_existing_user(
        granted_role, removed_roles, contacts_mock, find_active_campaign_contact_id_mock):
    facade.grant_role('*****@*****.**', 2, granted_role)
    contacts_mock.add_tag.assert_called_once_with({'tags[1]': granted_role.capitalize(), 'id': 2})
Ejemplo n.º 4
0
def test_error_when_using_not_existing_role(contacts_mock):
    with pytest.raises(ValueError):
        facade.grant_role('*****@*****.**', 1, 'not-existing')
    assert contacts_mock.add_tag.called is False
    assert contacts_mock.remove_tag.called is False