| |
| |
| """ |
| (c) 2016-2017 - Copyright Red Hat Inc |
| |
| Authors: |
| Pierre-Yves Chibon <pingou@pingoured.fr> |
| |
| """ |
| |
| __requires__ = ['SQLAlchemy >= 0.8'] |
| import pkg_resources |
| |
| import json |
| import unittest |
| import shutil |
| import sys |
| import tempfile |
| import os |
| |
| import pygit2 |
| from mock import patch |
| |
| sys.path.insert(0, os.path.join(os.path.dirname( |
| os.path.abspath(__file__)), '..')) |
| |
| import pagure.lib |
| import tests |
| from pagure.lib.repo import PagureRepo |
| |
| |
| class PagureFlaskSlashInNametests(tests.Modeltests): |
| """ Tests for flask application when the project contains a '/'. |
| """ |
| |
| def setUp(self): |
| """ Set up the environnment, ran before every tests. """ |
| super(PagureFlaskSlashInNametests, self).setUp() |
| |
| pagure.APP.config['TESTING'] = True |
| pagure.SESSION = self.session |
| pagure.lib.SESSION = self.session |
| pagure.ui.app.SESSION = self.session |
| pagure.ui.filters.SESSION = self.session |
| pagure.ui.fork.SESSION = self.session |
| pagure.ui.repo.SESSION = self.session |
| pagure.ui.issues.SESSION = self.session |
| |
| self.app = pagure.APP.test_client() |
| |
| def set_up_git_repo(self, name='test'): |
| """ Set up the git repo to play with. """ |
| |
| |
| gitrepo = os.path.join(self.path, 'repos', '%s.git' % name) |
| repo = pygit2.init_repository(gitrepo, bare=True) |
| |
| newpath = tempfile.mkdtemp(prefix='pagure-other-test') |
| repopath = os.path.join(newpath, 'test') |
| clone_repo = pygit2.clone_repository(gitrepo, repopath) |
| |
| |
| with open(os.path.join(repopath, 'sources'), 'w') as stream: |
| stream.write('foo\n bar') |
| clone_repo.index.add('sources') |
| clone_repo.index.write() |
| |
| |
| tree = clone_repo.index.write_tree() |
| author = pygit2.Signature( |
| 'Alice Author', 'alice@authors.tld') |
| committer = pygit2.Signature( |
| 'Cecil Committer', 'cecil@committers.tld') |
| clone_repo.create_commit( |
| 'refs/heads/master', |
| author, |
| committer, |
| 'Add sources file for testing', |
| |
| tree, |
| |
| [] |
| ) |
| refname = 'refs/heads/master' |
| ori_remote = clone_repo.remotes[0] |
| PagureRepo.push(ori_remote, refname) |
| |
| @patch('pagure.lib.notify.send_email') |
| def test_view_repo_empty(self, send_email): |
| """ Test the view_repo endpoint when the project has a slash in its |
| name. |
| """ |
| send_email.return_value = True |
| |
| tests.create_projects(self.session) |
| |
| output = self.app.get('/test') |
| self.assertEqual(output.status_code, 404) |
| |
| |
| gitrepo = os.path.join(self.path, 'repos', 'test.git') |
| repo = pygit2.init_repository(gitrepo, bare=True) |
| |
| |
| output = self.app.get('/test') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<div class="card-block">\n ' |
| '<h5><strong>Contributors</strong></h5>', output.data) |
| self.assertIn( |
| '<p>The Project Creator has not pushed any code yet</p>', |
| output.data) |
| |
| |
| self.assertRaises( |
| pagure.exceptions.PagureException, |
| pagure.lib.new_project, |
| self.session, |
| name='test', |
| namespace='forks', |
| description='test project forks/test', |
| url='', |
| avatar_email='', |
| user='pingou', |
| blacklist=pagure.APP.config['BLACKLISTED_PROJECTS'], |
| allowed_prefix=pagure.APP.config['ALLOWED_PREFIX'], |
| gitfolder=pagure.APP.config['GIT_FOLDER'], |
| docfolder=pagure.APP.config['DOCS_FOLDER'], |
| ticketfolder=pagure.APP.config['TICKETS_FOLDER'], |
| requestfolder=pagure.APP.config['REQUESTS_FOLDER'], |
| ) |
| |
| |
| item = pagure.lib.model.Project( |
| user_id=1, |
| name='test', |
| namespace='forks', |
| description='test project forks/test', |
| hook_token='aaabbbcccddd', |
| ) |
| self.session.add(item) |
| self.session.commit() |
| |
| |
| gitrepo = os.path.join(self.path, 'repos', 'forks/test.git') |
| repo = pygit2.init_repository(gitrepo, bare=True) |
| |
| output = self.app.get('/forks/test') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<div class="card-block">\n ' |
| '<h5><strong>Contributors</strong></h5>', output.data) |
| self.assertIn( |
| '<p>The Project Creator has not pushed any code yet</p>', |
| output.data) |
| |
| output = self.app.get('/forks/test/issues') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<title>Issues - forks/test - Pagure</title>', output.data) |
| self.assertIn( |
| '<td colspan="6" class="noresult">No issues found</td>', |
| output.data) |
| |
| @patch('pagure.lib.notify.send_email') |
| def test_view_repo(self, send_email): |
| """ Test the view_repo endpoint when the project has a slash in its |
| name. |
| """ |
| send_email.return_value = True |
| |
| tests.create_projects(self.session) |
| |
| output = self.app.get('/test') |
| self.assertEqual(output.status_code, 404) |
| |
| self.set_up_git_repo() |
| |
| |
| output = self.app.get('/test') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<div class="card-block">\n ' |
| '<h5><strong>Contributors</strong></h5>', output.data) |
| |
| |
| self.assertRaises( |
| pagure.exceptions.PagureException, |
| pagure.lib.new_project, |
| self.session, |
| name='test', |
| namespace='forks', |
| description='test project forks/test', |
| url='', |
| avatar_email='', |
| user='pingou', |
| blacklist=pagure.APP.config['BLACKLISTED_PROJECTS'], |
| allowed_prefix=pagure.APP.config['ALLOWED_PREFIX'], |
| gitfolder=pagure.APP.config['GIT_FOLDER'], |
| docfolder=pagure.APP.config['DOCS_FOLDER'], |
| ticketfolder=pagure.APP.config['TICKETS_FOLDER'], |
| requestfolder=pagure.APP.config['REQUESTS_FOLDER'], |
| ) |
| |
| |
| item = pagure.lib.model.Project( |
| user_id=1, |
| name='test', |
| namespace='forks', |
| description='test project forks/test', |
| hook_token='aaabbbcccddd', |
| ) |
| self.session.add(item) |
| self.session.commit() |
| |
| self.set_up_git_repo(name='forks/test') |
| |
| |
| output = self.app.get('/forks/test') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<div class="card-block">\n ' |
| '<h5><strong>Contributors</strong></h5>', output.data) |
| self.assertIn('Add sources file for testing', output.data) |
| self.assertIn( |
| '<title>Overview - forks/test - Pagure</title>', output.data) |
| |
| |
| output = self.app.get('/forks/test/issues') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn( |
| '<title>Issues - forks/test - Pagure</title>', output.data) |
| self.assertIn( |
| '<td colspan="6" class="noresult">No issues found</td>', |
| output.data) |
| |
| |
| gitrepo = os.path.join(self.path, 'repos', 'forks/test.git') |
| repo = pygit2.Repository(gitrepo) |
| master_branch = repo.lookup_branch('master') |
| first_commit = master_branch.get_object().hex |
| |
| output = self.app.get('/forks/test/commits') |
| self.assertEqual(output.status_code, 200) |
| self.assertIn(first_commit, output.data) |
| self.assertIn( |
| '<a href="/forks/test/c/%s?branch=master"' % first_commit, |
| output.data) |
| |
| output = self.app.get('/forks/test/c/%s' % first_commit) |
| self.assertEqual(output.status_code, 200) |
| self.assertIn('<title>Commit - forks/test ', output.data) |
| self.assertIn( |
| '<span class="label label-success">+2</span> </span>', |
| output.data) |
| |
| |
| if __name__ == '__main__': |
| unittest.main(verbosity=2) |