Files @ ffd45b185016
Branch filter:

Location: kallithea/rhodecode/tests/functional/test_changelog.py - annotation

Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5.

This imports changes between changesets 21af6c4eab3d and 6177597791c2 in
RhodeCode's original repository, including only changes to Python files and HTML.

RhodeCode clearly licensed its changes to these files under GPLv3
in their /LICENSE file, which states the following:
The Python code and integrated HTML are licensed under the GPLv3 license.

(See:
https://code.rhodecode.com/rhodecode/files/v2.2.5/LICENSE
or
http://web.archive.org/web/20140512193334/https://code.rhodecode.com/rhodecode/files/f3b123159901f15426d18e3dc395e8369f70ebe0/LICENSE
for an online copy of that LICENSE file)

Conservancy reviewed these changes and confirmed that they can be licensed as
a whole to the Kallithea project under GPLv3-only.

While some of the contents committed herein are clearly licensed
GPLv3-or-later, on the whole we must assume the are GPLv3-only, since the
statement above from RhodeCode indicates that they intend GPLv3-only as their
license, per GPLv3ยง14 and other relevant sections of GPLv3.
1e757ac98988
1e757ac98988
b7adbd5456c2
1e757ac98988
1e757ac98988
8acbfa837180
1e757ac98988
88d13c1c6a55
88d13c1c6a55
8acbfa837180
7abbb77b02d0
b7adbd5456c2
623e1d68a2e0
d7488551578e
d7488551578e
623e1d68a2e0
b7adbd5456c2
d7488551578e
b7adbd5456c2
d7488551578e
b7adbd5456c2
d7488551578e
8acbfa837180
58dcef7eef03
58dcef7eef03
80dc0a23edf7
58dcef7eef03
623e1d68a2e0
58dcef7eef03
623e1d68a2e0
58dcef7eef03
623e1d68a2e0
58dcef7eef03
623e1d68a2e0
58dcef7eef03
623e1d68a2e0
88d13c1c6a55
623e1d68a2e0
8acbfa837180
b7adbd5456c2
b7adbd5456c2
623e1d68a2e0
d7488551578e
d7488551578e
623e1d68a2e0
b7adbd5456c2
58dcef7eef03
b7adbd5456c2
d7488551578e
b7adbd5456c2
0ea8eca2d63e
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
58dcef7eef03
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
6302a1423a4e
from rhodecode.tests import *


class TestChangelogController(TestController):

    def test_index_hg(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO))

        response.mustcontain('''id="chg_20" class="container tablerow1"''')
        response.mustcontain(
            """<input class="changeset_range" """
            """id="7b22a518347bb9bc19679f6af07cd0a61bfe16e7" """
            """name="7b22a518347bb9bc19679f6af07cd0a61bfe16e7" """
            """type="checkbox" value="1" />"""
        )
        #rev 640: code garden
        response.mustcontain(
            """<span class="changeset_hash">r640:0a4e54a44604</span>"""
        )
        response.mustcontain("""code garden""")

    def test_index_pagination_hg(self):
        self.log_user()
        #pagination
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO), {'page': 1})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO), {'page': 2})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO), {'page': 3})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO), {'page': 4})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO), {'page': 5})
        response = self.app.get(url(controller='changelog', action='index',
                                    repo_name=HG_REPO), {'page': 6})

        # Test response after pagination...
        response.mustcontain(
            """<input class="changeset_range" """
            """id="22baf968d547386b9516965ce89d189665003a31" """
            """name="22baf968d547386b9516965ce89d189665003a31" """
            """type="checkbox" value="1" />"""
        )

        response.mustcontain(
            """<span class="changeset_hash">r539:22baf968d547</span>"""
        )

    def test_index_git(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO))

        response.mustcontain('''id="chg_20" class="container tablerow1"''')
        response.mustcontain(
            """<input class="changeset_range" """
            """id="95f9a91d775b0084b2368ae7779e44931c849c0e" """
            """name="95f9a91d775b0084b2368ae7779e44931c849c0e" """
            """type="checkbox" value="1" />"""
        )

        response.mustcontain(
            """<span class="changeset_hash">r613:95f9a91d775b</span>"""
        )

        response.mustcontain("""fixing stupid typo in context for mercurial""")

#        response.mustcontain(
#            """<div id="changed_total_5e204e7583b9c8e7b93a020bd036564b1e731dae" """
#            """style="float:right;" class="changed_total tooltip" """
#            """title="Affected number of files, click to show """
#            """more details">3</div>"""
#        )

    def test_index_pagination_git(self):
        self.log_user()
        #pagination
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO), {'page': 1})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO), {'page': 2})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO), {'page': 3})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO), {'page': 4})
        self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO), {'page': 5})
        response = self.app.get(url(controller='changelog', action='index',
                                    repo_name=GIT_REPO), {'page': 6})

        # Test response after pagination...
        response.mustcontain(
            """<input class="changeset_range" """
            """id="636ed213f2f11ef91071b9c24f2d5e6bd01a6ed5" """
            """name="636ed213f2f11ef91071b9c24f2d5e6bd01a6ed5" """
            """type="checkbox" value="1" />"""
        )

        response.mustcontain(
            """<span class="changeset_hash">r515:636ed213f2f1</span>"""
        )

    def test_index_hg_with_filenode(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    revision='tip', f_path='/vcs/exceptions.py',
                                    repo_name=HG_REPO))
        #history commits messages
        response.mustcontain('Added exceptions module, this time for real')
        response.mustcontain('Added not implemented hg backend test case')
        response.mustcontain('Added BaseChangeset class')
        # Test response...

    def test_index_git_with_filenode(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    revision='tip', f_path='/vcs/exceptions.py',
                                    repo_name=GIT_REPO))
        #history commits messages
        response.mustcontain('Added exceptions module, this time for real')
        response.mustcontain('Added not implemented hg backend test case')
        response.mustcontain('Added BaseChangeset class')

    def test_index_hg_with_filenode_that_is_dirnode(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    revision='tip', f_path='/tests',
                                    repo_name=HG_REPO))
        self.assertEqual(response.status, '302 Found')

    def test_index_git_with_filenode_that_is_dirnode(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    revision='tip', f_path='/tests',
                                    repo_name=GIT_REPO))
        self.assertEqual(response.status, '302 Found')

    def test_index_hg_with_filenode_not_existing(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    revision='tip', f_path='/wrong_path',
                                    repo_name=HG_REPO))
        self.assertEqual(response.status, '302 Found')

    def test_index_git_with_filenode_not_existing(self):
        self.log_user()
        response = self.app.get(url(controller='changelog', action='index',
                                    revision='tip', f_path='/wrong_path',
                                    repo_name=GIT_REPO))
        self.assertEqual(response.status, '302 Found')