##// END OF EJS Templates
files: accept URLs with no path and no slash after the revision...
files: accept URLs with no path and no slash after the revision This kind of URLs will frequently be edited by hand and trailing slashes are usually just ignored.

File last commit:

r3557:58dcef7e beta
r3576:c177f304 beta
Show More
test_changelog.py
126 lines | 5.2 KiB | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode.tests import *
test fixes for latest changes
r1895
renamed project to rhodecode
r547 class TestChangelogController(TestController):
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 def test_index_hg(self):
renamed project to rhodecode
r547 self.log_user()
removed users_group controller in replace for model methods,...
r1436 response = self.app.get(url(controller='changelog', action='index',
repo_name=HG_REPO))
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
Repo size - show just the size without duplicating text...
r3550 response.mustcontain('''id="chg_20" class="container tablerow1"''')
test fixes for latest changes
r1895 response.mustcontain(
fixed few test failures
r2515 """<input class="changeset_range" """
"""id="5e204e7583b9c8e7b93a020bd036564b1e731dae" """
"""name="5e204e7583b9c8e7b93a020bd036564b1e731dae" """
"""type="checkbox" value="1" />"""
test fixes for latest changes
r1895 )
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557
test fixes for latest changes
r1895 response.mustcontain(
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 """<span class="changeset_hash">r154:5e204e7583b9</span>"""
test fixes for latest changes
r1895 )
fixes timezone issues with tests
r1707
test fixes for latest changes
r1895 response.mustcontain("""Small update at simplevcs app""")
removed users_group controller in replace for model methods,...
r1436
Repo size - show just the size without duplicating text...
r3550 # 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>"""
# )
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 def test_index_pagination_hg(self):
self.log_user()
fixed whoosh failure on new repository...
r567 #pagination
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 self.app.get(url(controller='changelog', action='index',
fixed few test failures
r2515 repo_name=HG_REPO), {'page': 1})
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 self.app.get(url(controller='changelog', action='index',
fixed few test failures
r2515 repo_name=HG_REPO), {'page': 2})
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 self.app.get(url(controller='changelog', action='index',
fixed few test failures
r2515 repo_name=HG_REPO), {'page': 3})
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 self.app.get(url(controller='changelog', action='index',
fixed few test failures
r2515 repo_name=HG_REPO), {'page': 4})
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 self.app.get(url(controller='changelog', action='index',
fixed few test failures
r2515 repo_name=HG_REPO), {'page': 5})
removed users_group controller in replace for model methods,...
r1436 response = self.app.get(url(controller='changelog', action='index',
fixed few test failures
r2515 repo_name=HG_REPO), {'page': 6})
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688
test fixes for latest changes
r1895 # Test response after pagination...
response.mustcontain(
fixed few test failures
r2515 """<input class="changeset_range" """
"""id="46ad32a4f974e45472a898c6b0acb600320579b1" """
"""name="46ad32a4f974e45472a898c6b0acb600320579b1" """
"""type="checkbox" value="1" />"""
test fixes for latest changes
r1895 )
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557
test fixes for latest changes
r1895 response.mustcontain(
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557 """<span class="changeset_hash">r64:46ad32a4f974</span>"""
test fixes for latest changes
r1895 )
fixed tests
r1021
Repo size - show just the size without duplicating text...
r3550 # response.mustcontain(
# """<div id="changed_total_46ad32a4f974e45472a898c6b0acb600320579b1" """
# """style="float:right;" class="changed_total tooltip" """
# """title="Affected number of files, click to show """
# """more details">21</div>"""
# )
#
# response.mustcontain(
# """<a href="/%s/changeset/"""
# """46ad32a4f974e45472a898c6b0acb600320579b1" """
# """title="Merge with 2e6a2bf9356ca56df08807f4ad86d480da72a8f4">"""
# """46ad32a4f974</a>""" % HG_REPO
# )
Implemented show_id function that is a configurable way to display sha hashes in the changelog.
r3557
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>"""
)