123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388 |
- # -*- coding: utf-8 -*-
- """
- (c) 2017 - Copyright Red Hat Inc
- Authors:
- Pierre-Yves Chibon <pingou@pingoured.fr>
- """
- import unittest
- import sys
- import os
- import pygit2
- sys.path.insert(0, os.path.join(os.path.dirname(
- os.path.abspath(__file__)), '..'))
- import pagure # noqa
- import pagure.lib # noqa
- import tests # noqa
- from pagure.lib.repo import PagureRepo # noqa
- class LocalBasetests(tests.Modeltests):
- """ Tests for view_file endpoint of the flask pagure app """
- def setUp(self):
- """ Set up the environnment, ran before every tests. """
- super(LocalBasetests, self).setUp()
- pagure.config.config['VIRUS_SCAN_ATTACHMENTS'] = False
- pagure.config.config['UPLOAD_FOLDER_URL'] = '/releases/'
- pagure.config.config['UPLOAD_FOLDER_PATH'] = os.path.join(
- self.path, 'releases')
- class PagureFlaskRepoViewFileSimpletests(LocalBasetests):
- """ Tests for view_file endpoint of the flask pagure app """
- def test_view_file_no_project(self):
- """ Test the view_file when the project is unknown. """
- output = self.app.get('/foo/blob/foo/f/sources')
- # No project registered in the DB
- self.assertEqual(output.status_code, 404)
- def test_view_file_no_git(self):
- """ Test the view_file when the project has no git repo. """
- tests.create_projects(self.session)
- output = self.app.get('/test/blob/foo/f/sources')
- # No git repo associated
- self.assertEqual(output.status_code, 404)
- def test_view_file_no_git_content(self):
- """ Test the view_file when the file doesn't exist. """
- tests.create_projects(self.session)
- tests.create_projects_git(os.path.join(self.path, 'repos'), bare=True)
- output = self.app.get('/test/blob/foo/f/sources')
- self.assertEqual(output.status_code, 404)
- class PagureFlaskRepoViewFiletests(LocalBasetests):
- """ Tests for view_file endpoint of the flask pagure app """
- def setUp(self):
- """ Set up the environnment, ran before every tests. """
- super(PagureFlaskRepoViewFiletests, self).setUp()
- tests.create_projects(self.session)
- tests.create_projects_git(
- os.path.join(self.path, 'repos'), bare=True)
- # Add some content to the git repo
- tests.add_content_git_repo(
- os.path.join(self.path, 'repos', 'test.git'))
- tests.add_readme_git_repo(
- os.path.join(self.path, 'repos', 'test.git'))
- tests.add_binary_git_repo(
- os.path.join(self.path, 'repos', 'test.git'), 'test.jpg')
- tests.add_binary_git_repo(
- os.path.join(self.path, 'repos', 'test.git'), 'test_binary')
- def test_view_file_invalid_file(self):
- """ Test the view_file when the file doesn't exist. """
- output = self.app.get('/test/blob/master/foofile')
- self.assertEqual(output.status_code, 404)
- output = self.app.get('/test/blob/sources/f/testfoo.jpg')
- self.assertEqual(output.status_code, 404)
- output = self.app.get('/test/blob/master/f/folder1/testfoo.jpg')
- self.assertEqual(output.status_code, 404)
- def test_view_file_basic_text(self):
- """ Test the view_file with a basic text file. """
- output = self.app.get('/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertTrue('<table class="code_table">' in output.data)
- self.assertTrue(
- '<tr><td class="cell1"><a id="_1" href="#_1" '
- 'data-line-number="1"></a></td>'
- in output.data)
- self.assertTrue(
- '<td class="cell2"><pre> bar</pre></td>' in output.data)
- def test_view_file_empty_file(self):
- """ Test the view_file with an empty file. """
- # Empty files should also be displayed
- tests.add_content_to_git(
- os.path.join(self.path, 'repos', 'test.git'),
- filename="emptyfile.md",
- content="")
- output = self.app.get('/test/blob/master/f/emptyfile.md')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<a class="btn btn-secondary btn-sm" '
- 'href="/test/raw/master/f/emptyfile.md" '
- 'title="View as raw">Raw</a>', output.data)
- self.assertIn(
- '<div class="m-a-2">\n'
- ' \n </div>', output.data)
- def test_view_file_binary_file(self):
- """ Test the view_file with a binary file. """
- # View what's supposed to be an image
- output = self.app.get('/test/blob/master/f/test.jpg')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- 'Binary files cannot be rendered.<br/>', output.data)
- self.assertIn(
- '<a href="/test/raw/master/f/test.jpg">view the raw version',
- output.data)
- def test_view_file_by_commit(self):
- """ Test the view_file in a specific commit. """
- # View by commit id
- repo = pygit2.Repository(os.path.join(self.path, 'repos', 'test.git'))
- commit = repo.revparse_single('HEAD')
- output = self.app.get('/test/blob/%s/f/test.jpg' % commit.oid.hex)
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- 'Binary files cannot be rendered.<br/>', output.data)
- self.assertIn('/f/test.jpg">view the raw version', output.data)
- def test_view_file_by_name(self):
- """ Test the view_file via a image name. """
- # View by image name -- somehow we support this
- output = self.app.get('/test/blob/sources/f/test.jpg')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- 'Binary files cannot be rendered.<br/>', output.data)
- self.assertIn('/f/test.jpg">view the raw version', output.data)
- def test_view_file_binary_file2(self):
- """ Test the view_file with a binary file (2). """
- # View binary file
- output = self.app.get('/test/blob/sources/f/test_binary')
- self.assertEqual(output.status_code, 200)
- self.assertIn('/f/test_binary">view the raw version', output.data)
- self.assertTrue(
- 'Binary files cannot be rendered.<br/>'
- in output.data)
- def test_view_file_for_folder(self):
- """ Test the view_file with a folder. """
- # View folder
- output = self.app.get('/test/blob/master/f/folder1')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<span class="oi text-muted" data-glyph="folder"></span>',
- output.data)
- self.assertIn('<title>Tree - test - Pagure</title>', output.data)
- self.assertIn(
- '<a href="/test/blob/master/f/folder1/folder2">', output.data)
- def test_view_file_nested_file(self):
- """ Test the view_file with a nested file. """
- # Verify the nav links correctly when viewing a nested folder/file.
- output = self.app.get('/test/blob/master/f/folder1/folder2/file')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<li><a href="/test/blob/master/f/folder1/folder2">\n'
- ' <span class="oi" data-glyph="folder">'
- '</span> folder2</a>\n'
- ' </li>', output.data)
- def test_view_file_non_ascii_file(self):
- """ Test the view_file with a non-ascii file name. """
- # View file with a non-ascii name
- tests.add_commit_git_repo(
- os.path.join(self.path, 'repos', 'test.git'),
- ncommits=1, filename='Šource')
- output = self.app.get('/test/blob/master/f/Šource')
- self.assertEqual(output.status_code, 200)
- self.assertEqual(output.headers['Content-Type'].lower(),
- 'text/html; charset=utf-8')
- self.assertIn('</span> Šource', output.data)
- self.assertIn('<table class="code_table">', output.data)
- self.assertIn(
- '<tr><td class="cell1"><a id="_1" href="#_1" '
- 'data-line-number="1"></a></td>', output.data)
- self.assertTrue(
- '<td class="cell2"><pre><span></span>Row 0</pre></td>'
- in output.data
- or
- '<td class="cell2"><pre>Row 0</pre></td>' in output.data
- )
- def test_view_file_fork_and_edit_logged_out(self):
- """ Test the view_file fork and edit button presence when logged
- out.
- """
- # not logged in, no edit button but fork & edit is there
- output = self.app.get('/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertNotIn(
- '<a class="btn btn-sm btn-secondary" '
- 'href="/test/edit/master/f/sources" title="Edit file">'
- 'Edit</a>', output.data)
- self.assertIn(
- 'onclick="fork_project.submit();">\n '
- ' Fork and Edit', output.data)
- def test_view_file_fork_and_edit_logged_in(self):
- """ Test the view_file fork and edit button presence when logged
- in.
- """
- # logged in, both buttons are there
- user = tests.FakeUser(username='pingou')
- with tests.user_set(self.app.application, user):
- output = self.app.get('/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<a class="btn btn-sm btn-secondary" '
- 'href="/test/edit/master/f/sources" title="Edit file">'
- 'Edit</a>', output.data)
- self.assertIn(
- 'onclick="fork_project.submit();">\n '
- ' Fork and Edit', output.data)
- class PagureFlaskRepoViewFileForktests(LocalBasetests):
- """ Tests for view_file endpoint of the flask pagure app for a fork """
- def setUp(self):
- """ Set up the environnment, ran before every tests. """
- super(PagureFlaskRepoViewFileForktests, self).setUp()
- tests.create_projects(self.session)
- tests.create_projects_git(
- os.path.join(self.path, 'repos'), bare=True)
- # Add some content to the git repo
- tests.add_content_git_repo(
- os.path.join(self.path, 'repos', 'test.git'))
- tests.add_readme_git_repo(
- os.path.join(self.path, 'repos', 'test.git'))
- tests.add_binary_git_repo(
- os.path.join(self.path, 'repos', 'test.git'), 'test.jpg')
- tests.add_binary_git_repo(
- os.path.join(self.path, 'repos', 'test.git'), 'test_binary')
- # Add a fork of a fork
- item = pagure.lib.model.Project(
- user_id=1, # pingou
- name='test',
- description='test project #3',
- is_fork=True,
- parent_id=1,
- hook_token='aaabbbppp',
- )
- self.session.add(item)
- self.session.commit()
- tests.add_content_git_repo(
- os.path.join(self.path, 'repos', 'forks', 'pingou', 'test.git'))
- tests.add_readme_git_repo(
- os.path.join(self.path, 'repos', 'forks', 'pingou', 'test.git'))
- tests.add_commit_git_repo(
- os.path.join(self.path, 'repos', 'forks', 'pingou', 'test.git'),
- ncommits=10)
- def test_view_file_nested_file_in_fork(self):
- """ Test the view_file with a nested file in fork. """
- # Verify the nav links correctly when viewing a file/folder in a fork.
- output = self.app.get(
- '/fork/pingou/test/blob/master/f/folder1/folder2/file')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<li><a href="/fork/pingou/test/blob/master/f/folder1/folder2">\n'
- ' <span class="oi" data-glyph="folder"></span> '
- 'folder2</a>\n </li>', output.data)
- def test_view_file_in_branch_in_fork(self):
- """ Test the view_file in a specific branch of a fork. """
- output = self.app.get('/fork/pingou/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertIn('<table class="code_table">', output.data)
- self.assertIn(
- '<tr><td class="cell1"><a id="_1" href="#_1" '
- 'data-line-number="1"></a></td>',
- output.data)
- self.assertIn(
- '<td class="cell2"><pre> barRow 0</pre></td>', output.data)
- def test_view_file_fork_and_edit_on_fork_logged_out(self):
- """ Test the view_file on a text file on a fork when logged out. """
- # not logged in, no edit button but fork & edit is there
- output = self.app.get('/fork/pingou/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertNotIn(
- '<a class="btn btn-sm btn-secondary" '
- 'href="/test/edit/master/f/sources" title="Edit file">'
- 'Edit</a>', output.data)
- self.assertIn(
- 'onclick="fork_project.submit();">\n '
- ' Fork and Edit', output.data)
- def test_view_file_fork_and_edit_on_your_fork(self):
- """ Test the view_file on a text file on your fork when logged in.
- """
- # logged in, but it's your own fork, so just edit button is there
- user = tests.FakeUser(username='pingou')
- with tests.user_set(self.app.application, user):
- output = self.app.get('/fork/pingou/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<a class="btn btn-sm btn-secondary" '
- 'href="/fork/pingou/test/edit/master/f/sources" title="Edit file">'
- 'Edit</a>', output.data)
- self.assertNotIn(
- 'onclick="fork_project.submit();">\n '
- ' Fork and Edit', output.data)
- def test_view_file_fork_and_edit_on_a_fork(self):
- """ Test the view_file on a text file on somone else's fork when
- logged in.
- """
- # logged in, but it's not your fork, so only fork and edit button
- # is there
- user = tests.FakeUser(username='foo')
- with tests.user_set(self.app.application, user):
- output = self.app.get('/fork/pingou/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertNotIn(
- '<a class="btn btn-sm btn-secondary" '
- 'href="/fork/pingou/test/edit/master/f/sources" title="Edit file">'
- 'Edit</a>', output.data)
- self.assertIn(
- 'onclick="fork_project.submit();">\n '
- ' Fork and Edit', output.data)
- def test_view_file_fork_and_edit_on_project(self):
- """ Test the view_file on a text file on somone else's fork when
- logged in.
- """
- # logged in and seeing the project you forked
- user = tests.FakeUser(username='pingou')
- with tests.user_set(self.app.application, user):
- output = self.app.get('/test/blob/master/f/sources')
- self.assertEqual(output.status_code, 200)
- self.assertIn(
- '<a class="btn btn-sm btn-secondary" '
- 'href="/test/edit/master/f/sources" title="Edit file">'
- 'Edit</a>', output.data)
- self.assertIn(
- 'onclick="fork_project.submit();">\n '
- ' Edit in your fork', output.data)
- if __name__ == '__main__':
- unittest.main(verbosity=2)
|