| |
| |
| """ |
| (c) 2015-2016 - Copyright Red Hat Inc |
| |
| Authors: |
| Pierre-Yves Chibon <pingou@pingoured.fr> |
| |
| """ |
| |
| __requires__ = ['SQLAlchemy >= 0.8'] |
| import pkg_resources |
| |
| import unittest |
| import shutil |
| import sys |
| import os |
| |
| import json |
| from mock import patch |
| |
| sys.path.insert(0, os.path.join(os.path.dirname( |
| os.path.abspath(__file__)), '..')) |
| |
| import pagure.lib |
| import tests |
| |
| |
| class PagureFlaskGroupstests(tests.Modeltests): |
| """ Tests for flask groups controller of pagure """ |
| |
| def setUp(self): |
| """ Set up the environnment, ran before every tests. """ |
| super(PagureFlaskGroupstests, self).setUp() |
| |
| pagure.APP.config['TESTING'] = True |
| pagure.SESSION = self.session |
| pagure.ui.SESSION = self.session |
| pagure.ui.app.SESSION = self.session |
| pagure.ui.groups.SESSION = self.session |
| pagure.ui.repo.SESSION = self.session |
| pagure.ui.filters.SESSION = self.session |
| |
| pagure.APP.config['GIT_FOLDER'] = self.path |
| pagure.APP.config['FORK_FOLDER'] = os.path.join( |
| self.path, 'forks') |
| pagure.APP.config['TICKETS_FOLDER'] = os.path.join( |
| self.path, 'tickets') |
| pagure.APP.config['DOCS_FOLDER'] = os.path.join( |
| self.path, 'docs') |
| pagure.APP.config['REQUESTS_FOLDER'] = os.path.join( |
| self.path, 'requests') |
| self.app = pagure.APP.test_client() |
| |
| def test_group_lists(self): |
| """ Test the group_lists endpoint. """ |
| output = self.app.get('/groups') |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">0</span>', |
| output.data) |
| |
| def test_add_group(self): |
| """ Test the add_group endpoint. """ |
| output = self.app.get('/group/add') |
| self.assertEqual(output.status_code, 302) |
| |
| user = tests.FakeUser() |
| with tests.user_set(pagure.APP, user): |
| output = self.app.get('/group/add') |
| self.assertEqual(output.status_code, 403) |
| |
| user.username = 'pingou' |
| with tests.user_set(pagure.APP, user): |
| output = self.app.get('/group/add') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn('<h2>Create group</h2>', output.data) |
| self.assertNotIn( |
| '<option value="admin">admin</option>', output.data) |
| |
| csrf_token = output.data.split( |
| 'name="csrf_token" type="hidden" value="')[1].split('">')[0] |
| |
| data = { |
| } |
| |
| |
| output = self.app.post('/group/add', data=data) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn('<h2>Create group</h2>', output.data) |
| self.assertEqual(output.data.count( |
| 'This field is required.'), 3) |
| |
| data = { |
| 'group_name': 'test_group', |
| 'display_name': 'Test Group', |
| 'description': 'This is a group for the tests', |
| } |
| |
| |
| output = self.app.post('/group/add', data=data) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn('<h2>Create group</h2>', output.data) |
| self.assertEqual(output.data.count( |
| 'This field is required.'), 0) |
| |
| data['csrf_token'] = csrf_token |
| |
| |
| output = self.app.post( |
| '/group/add', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `pingou` added to ' |
| 'the group `test_group`.', output.data) |
| self.assertIn( |
| '</button>\n Group `test_group` created.', |
| output.data) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">1</span>', |
| output.data) |
| |
| user = tests.FakeUser( |
| username='pingou', |
| groups=pagure.APP.config['ADMIN_GROUP']) |
| with tests.user_set(pagure.APP, user): |
| output = self.app.get('/group/add') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn('<h2>Create group</h2>', output.data) |
| self.assertIn('<option value="admin">admin</option>', output.data) |
| |
| data = { |
| 'group_name': 'test_admin_group', |
| 'group_type': 'admin', |
| 'display_name': 'Test Admin Group', |
| 'description': 'This is another group for the tests', |
| 'csrf_token': csrf_token, |
| } |
| |
| |
| output = self.app.post( |
| '/group/add', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `pingou` added to ' |
| 'the group `test_admin_group`.', output.data) |
| self.assertIn( |
| '</button>\n Group `test_admin_group` ' |
| 'created.',output.data) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">2</span>', |
| output.data) |
| |
| def test_edit_group(self): |
| """ Test the edit_group endpoint. """ |
| |
| output = self.app.get('/group/test_group/edit') |
| self.assertEqual(output.status_code, 302) |
| |
| user = tests.FakeUser() |
| with tests.user_set(pagure.APP, user): |
| output = self.app.get('/group/test_group/edit') |
| self.assertEqual(output.status_code, 404) |
| self.assertIn('<p>Group not found</p>', output.data) |
| |
| self.test_add_group() |
| |
| user.username = 'foo' |
| with tests.user_set(pagure.APP, user): |
| output = self.app.get('/group/foo/edit') |
| self.assertEqual(output.status_code, 404) |
| self.assertIn('<p>Group not found</p>', output.data) |
| |
| output = self.app.get('/group/test_group/edit') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<title>Edit group: test_group - Pagure</title>', |
| output.data) |
| self.assertIn( |
| '<form action="/group/test_group/edit" method="post">', |
| output.data) |
| self.assertIn( |
| '<strong><label for="description">Description' |
| '</label></strong>', output.data) |
| |
| csrf_token = output.data.split( |
| 'name="csrf_token" type="hidden" value="')[1].split('">')[0] |
| |
| |
| data = { |
| 'group_name': 'test_group', |
| 'display_name': 'Test Group edited', |
| 'description': 'This is a group for the tests edited', |
| } |
| |
| output = self.app.post( |
| '/group/test_group/edit', data=data, follow_redirects=True) |
| |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<title>Edit group: test_group - Pagure</title>', |
| output.data) |
| self.assertIn( |
| '<form action="/group/test_group/edit" method="post">', |
| output.data) |
| self.assertIn( |
| '<strong><label for="description">Description' |
| '</label></strong>', output.data) |
| |
| |
| data['csrf_token'] = csrf_token |
| |
| output = self.app.post( |
| '/group/test_group/edit', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<title>Group test_group - Pagure</title>', |
| output.data) |
| self.assertIn( |
| '</button>\n You are not ' |
| 'allowed to edit this group', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| ' Test Group', output.data) |
| |
| user.username = 'pingou' |
| with tests.user_set(pagure.APP, user): |
| |
| output = self.app.post( |
| '/group/bar/edit', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 404) |
| self.assertIn('<p>Group not found</p>', output.data) |
| |
| output = self.app.post( |
| '/group/test_group/edit', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<title>Group test_group - Pagure</title>', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| ' Test Group', output.data) |
| self.assertIn( |
| 'Group "Test Group edited" (test_group) edited', |
| output.data) |
| |
| def test_group_delete(self): |
| """ Test the group_delete endpoint. """ |
| output = self.app.post('/group/foo/delete') |
| self.assertEqual(output.status_code, 302) |
| |
| user = tests.FakeUser() |
| with tests.user_set(pagure.APP, user): |
| output = self.app.post('/group/foo/delete', follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<p>No groups have been created on this pagure instance ' |
| 'yet</p>', output.data) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">0</span>', |
| output.data) |
| |
| self.test_add_group() |
| |
| with tests.user_set(pagure.APP, user): |
| output = self.app.post('/group/foo/delete', follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">1</span>', |
| output.data) |
| |
| csrf_token = output.data.split( |
| 'name="csrf_token" type="hidden" value="')[1].split('">')[0] |
| |
| user.username = 'foo' |
| with tests.user_set(pagure.APP, user): |
| |
| data = { |
| 'csrf_token': csrf_token, |
| } |
| output = self.app.post( |
| '/group/bar/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n No group `bar` found', |
| output.data) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">1</span>', |
| output.data) |
| |
| output = self.app.post( |
| '/group/test_group/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n You are not allowed to ' |
| 'delete the group test_group', output.data) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">1</span>', |
| output.data) |
| |
| user.username = 'bar' |
| with tests.user_set(pagure.APP, user): |
| |
| output = self.app.post( |
| '/group/test_group/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 404) |
| |
| user.username = 'pingou' |
| with tests.user_set(pagure.APP, user): |
| |
| output = self.app.post( |
| '/group/test_group/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n Group `test_group` has ' |
| 'been deleted', output.data) |
| self.assertIn( |
| '<h2 class="m-b-1">\n' |
| ' Groups <span class="label label-default">0</span>', |
| output.data) |
| |
| def test_view_group(self): |
| """ Test the view_group endpoint. """ |
| output = self.app.get('/group/foo') |
| self.assertEqual(output.status_code, 404) |
| |
| self.test_add_group() |
| |
| user = tests.FakeUser() |
| with tests.user_set(pagure.APP, user): |
| output = self.app.get('/group/test_group') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| |
| output = self.app.get('/group/test_admin_group') |
| self.assertEqual(output.status_code, 404) |
| |
| user = tests.FakeUser( |
| username='pingou', |
| groups=pagure.APP.config['ADMIN_GROUP']) |
| with tests.user_set(pagure.APP, user): |
| |
| output = self.app.get('/group/test_admin_group') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Admin Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| csrf_token = output.data.split( |
| 'name="csrf_token" type="hidden" value="')[1].split('">')[0] |
| |
| |
| data = { |
| 'user': 'bar' |
| } |
| |
| output = self.app.post('/group/test_admin_group', data=data) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Admin Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| |
| data = { |
| 'user': 'bar', |
| 'csrf_token': csrf_token, |
| } |
| output = self.app.post( |
| '/group/test_admin_group', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n No user `bar` found', |
| output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Admin Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| |
| data = { |
| 'user': 'foo', |
| 'csrf_token': csrf_token, |
| } |
| output = self.app.post('/group/test_admin_group', data=data) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `foo` added to the ' |
| 'group `test_admin_group`.', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Admin Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 2) |
| |
| def test_group_user_delete(self): |
| """ Test the group_user_delete endpoint. """ |
| output = self.app.post('/group/foo/bar/delete') |
| self.assertEqual(output.status_code, 302) |
| |
| user = tests.FakeUser() |
| with tests.user_set(pagure.APP, user): |
| output = self.app.post( |
| '/group/foo/bar/delete', follow_redirects=True) |
| self.assertEqual(output.status_code, 404) |
| |
| self.test_add_group() |
| |
| user = tests.FakeUser() |
| with tests.user_set(pagure.APP, user): |
| output = self.app.post( |
| '/group/test_group/bar/delete', follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| output = self.app.get('/new/') |
| csrf_token = output.data.split( |
| 'name="csrf_token" type="hidden" value="')[1].split('">')[0] |
| |
| data = {'csrf_token': csrf_token} |
| |
| output = self.app.post( |
| '/group/test_group/bar/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n No user `bar` found', |
| output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| output = self.app.post( |
| '/group/test_group/foo/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n Could not find user ' |
| 'username', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| user.username = 'pingou' |
| with tests.user_set(pagure.APP, user): |
| |
| output = self.app.post( |
| '/group/test_group/foo/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `foo` could not be ' |
| 'found in the group `test_group`', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| |
| output = self.app.post( |
| '/group/test_group/foo/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `foo` could not be ' |
| 'found in the group `test_group`', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| |
| data = { |
| 'user': 'foo', |
| 'csrf_token': csrf_token, |
| } |
| output = self.app.post('/group/test_group', data=data) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `foo` added to the ' |
| 'group `test_group`.', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 2) |
| |
| output = self.app.post( |
| '/group/test_group/foo/delete', data=data, follow_redirects=True) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '</button>\n User `foo` removed from ' |
| 'the group `test_group`', output.data) |
| self.assertIn( |
| '<span class="oi" data-glyph="people"></span> ' |
| 'Test Group', output.data) |
| self.assertEqual(output.data.count('<a href="/user/'), 1) |
| |
| |
| if __name__ == '__main__': |
| SUITE = unittest.TestLoader().loadTestsFromTestCase( |
| PagureFlaskGroupstests) |
| unittest.TextTestRunner(verbosity=2).run(SUITE) |