From 885b64b6e745df4e5f9a2850759a68fa989124ae Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Tue, 8 Apr 2014 16:44:06 -0300 Subject: [PATCH] removed stupid warning because sqlalchemy is stupid --- luncho/blueprints/groups.py | 7 ++----- tests/group_tests.py | 9 +++++++++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/luncho/blueprints/groups.py b/luncho/blueprints/groups.py index 2b2a065..0a367e6 100644 --- a/luncho/blueprints/groups.py +++ b/luncho/blueprints/groups.py @@ -344,14 +344,11 @@ def list_group_members(groupId): :status 412: Authorization required (:py:class:`AuthorizationRequiredException`) """ - user = request.user - group = Group.query.get(groupId) + group = Group.query.filter_by(id=groupId).first() if not group: raise ElementNotFoundException('Group') - LOG.debug('user groups: {groups}'.format(groups=user.groups)) - - if group not in user.groups: + if request.user not in group.users: raise UserIsNotMemberException() users = [] diff --git a/tests/group_tests.py b/tests/group_tests.py index 1254959..0eef1fb 100644 --- a/tests/group_tests.py +++ b/tests/group_tests.py @@ -237,9 +237,11 @@ class TestUsersInGroup(LunchoTests): self.user.groups.append(self.group) server.db.session.commit() self.user.get_token() + return def tearDown(self): super(TestUsersInGroup, self).tearDown() + return def test_add_user(self): """Try to add another user in the group.""" @@ -255,6 +257,7 @@ class TestUsersInGroup(LunchoTests): request, token=self.user.token) self.assertJsonOk(rv) + return def test_add_no_owner(self): """Try to add users without being the group admin.""" @@ -271,6 +274,7 @@ class TestUsersInGroup(LunchoTests): request, token=new_user.token) self.assertJsonError(rv, 403, 'User is not admin') + return def test_add_no_such_user(self): """Try to add an unknown user to the group.""" @@ -280,6 +284,7 @@ class TestUsersInGroup(LunchoTests): token=self.user.token) self.assertJsonError(rv, 404, 'Some users in the add list do not exist') + return def test_add_unknown_group(self): """Try to add users to some unknown group.""" @@ -290,6 +295,7 @@ class TestUsersInGroup(LunchoTests): request, token=self.user.token) self.assertJsonError(rv, 404, 'Group not found') + return def test_get_members(self): """Try to get a list of group members.""" @@ -303,6 +309,7 @@ class TestUsersInGroup(LunchoTests): self.user.username) self.assertEqual(json['users'][0]['full_name'], self.user.fullname) + return def test_get_members_by_member(self): """Non admin user requests the list of group members.""" @@ -321,6 +328,7 @@ class TestUsersInGroup(LunchoTests): json = loads(rv.data) self.assertTrue('users' in json) self.assertEqual(len(json['users']), 2) # owner and new user + return def test_get_members_by_non_member(self): """A user that is not part of the group ask for members.""" @@ -334,6 +342,7 @@ class TestUsersInGroup(LunchoTests): rv = self.get('/group/{groupId}/users/'.format(groupId=self.group.id), token=new_user.token) self.assertJsonError(rv, 403, 'User is not member of this group') + return if __name__ == '__main__': unittest.main()