##// END OF EJS Templates
settings ui: improve texts
settings ui: improve texts

File last commit:

r3056:6104dfd3 beta
r3408:a61ac64c beta
Show More
test_files.py
357 lines | 19.2 KiB | text/x-python | PythonLexer
renamed project to rhodecode
r547 from rhodecode.tests import *
Implemented #379 defaults settings page for creation of repositories...
r3056 from rhodecode.model.db import Repository
from rhodecode.model.meta import Session
renamed project to rhodecode
r547
Added tests for archival, cleaned changelog test from prints
r873 ARCHIVE_SPECS = {
fixes for issue #104, code rewrites for vcs 0.2
r951 '.tar.bz2': ('application/x-bzip2', 'tbz2', ''),
'.tar.gz': ('application/x-gzip', 'tgz', ''),
Added tests for archival, cleaned changelog test from prints
r873 '.zip': ('application/zip', 'zip', ''),
}
fixed tests after latest changes to history list
r1984
Implemented #379 defaults settings page for creation of repositories...
r3056 def _set_downloads(repo_name, set_to):
repo = Repository.get_by_repo_name(repo_name)
repo.enable_downloads = set_to
Session().add(repo)
Session().commit()
renamed project to rhodecode
r547 class TestFilesController(TestController):
def test_index(self):
self.log_user()
response = self.app.get(url(controller='files', action='index',
Tests rewrite for 1.2 added some globals configs to make tests easier....
r688 repo_name=HG_REPO,
renamed project to rhodecode
r547 revision='tip',
f_path='/'))
# Test response...
fixed tests after latest changes to history list
r1984 response.mustcontain('<a class="browser-dir ypjax-link" href="/vcs_test_hg/files/27cd5cce30c96924232dffcd24178a07ffeb5dfc/docs">docs</a>')
response.mustcontain('<a class="browser-dir ypjax-link" href="/vcs_test_hg/files/27cd5cce30c96924232dffcd24178a07ffeb5dfc/tests">tests</a>')
response.mustcontain('<a class="browser-dir ypjax-link" href="/vcs_test_hg/files/27cd5cce30c96924232dffcd24178a07ffeb5dfc/vcs">vcs</a>')
response.mustcontain('<a class="browser-file ypjax-link" href="/vcs_test_hg/files/27cd5cce30c96924232dffcd24178a07ffeb5dfc/.hgignore">.hgignore</a>')
response.mustcontain('<a class="browser-file ypjax-link" href="/vcs_test_hg/files/27cd5cce30c96924232dffcd24178a07ffeb5dfc/MANIFEST.in">MANIFEST.in</a>')
added some tests for files
r729
def test_index_revision(self):
self.log_user()
fixed tests after latest changes to history list
r1984 response = self.app.get(
url(controller='files', action='index',
repo_name=HG_REPO,
revision='7ba66bec8d6dbba14a2155be32408c435c5f4492',
f_path='/')
)
added some tests for files
r729
#Test response...
fixed tests after latest changes to history list
r1984 response.mustcontain('<a class="browser-dir ypjax-link" href="/vcs_test_hg/files/7ba66bec8d6dbba14a2155be32408c435c5f4492/docs">docs</a>')
response.mustcontain('<a class="browser-dir ypjax-link" href="/vcs_test_hg/files/7ba66bec8d6dbba14a2155be32408c435c5f4492/tests">tests</a>')
response.mustcontain('<a class="browser-file ypjax-link" href="/vcs_test_hg/files/7ba66bec8d6dbba14a2155be32408c435c5f4492/README.rst">README.rst</a>')
response.mustcontain('1.1 KiB')
response.mustcontain('text/x-python')
added some tests for files
r729
def test_index_different_branch(self):
self.log_user()
response = self.app.get(url(controller='files', action='index',
repo_name=HG_REPO,
revision='97e8b885c04894463c51898e14387d80c30ed1ee',
f_path='/'))
fixed tests after latest changes to history list
r1984 response.mustcontain("""<span style="text-transform: uppercase;"><a href="#">branch: git</a></span>""")
added some tests for files
r729
def test_index_paging(self):
self.log_user()
for r in [(73, 'a066b25d5df7016b45a41b7e2a78c33b57adc235'),
(92, 'cc66b61b8455b264a7a8a2d8ddc80fcfc58c221e'),
(109, '75feb4c33e81186c87eac740cee2447330288412'),
(1, '3d8f361e72ab303da48d799ff1ac40d5ac37c67e'),
(0, 'b986218ba1c9b0d6a259fac9b050b1724ed8e545')]:
response = self.app.get(url(controller='files', action='index',
repo_name=HG_REPO,
revision=r[1],
f_path='/'))
fixed tests after latest changes to history list
r1984 response.mustcontain("""@ r%s:%s""" % (r[0], r[1][:12]))
added some tests for files
r729
def test_file_source(self):
self.log_user()
response = self.app.get(url(controller='files', action='index',
repo_name=HG_REPO,
revision='27cd5cce30c96924232dffcd24178a07ffeb5dfc',
f_path='vcs/nodes.py'))
fixed file history tests
r3009 response.mustcontain("""<div class="commit">Partially implemented <a class="issue-tracker-link" href="https://myissueserver.com/vcs_test_hg/issue/16">#16</a>. filecontent/commit message/author/node name are safe_unicode now.
In addition some other __str__ are unicode as well
Added test for unicode
Improved test to clone into uniq repository.
removed extra unicode conversion in diff.</div>
""")
response.mustcontain("""<span style="text-transform: uppercase;"><a href="#">branch: default</a></span>""")
def test_file_source_history(self):
self.log_user()
response = self.app.get(url(controller='files', action='history',
repo_name=HG_REPO,
revision='27cd5cce30c96924232dffcd24178a07ffeb5dfc',
f_path='vcs/nodes.py'),
extra_environ={'HTTP_X_PARTIAL_XHR': '1'},)
added some tests for files
r729 #test or history
fixed tests after latest changes to history list
r1984 response.mustcontain("""<optgroup label="Changesets">
fixed some tests after last iteration
r2947 <option selected="selected" value="8911406ad776fdd3d0b9932a2e89677e57405a48">r167:8911406ad776 (default)</option>
fixed tests after latest changes to history list
r1984 <option value="aa957ed78c35a1541f508d2ec90e501b0a9e3167">r165:aa957ed78c35 (default)</option>
<option value="48e11b73e94c0db33e736eaeea692f990cb0b5f1">r140:48e11b73e94c (default)</option>
<option value="adf3cbf483298563b968a6c673cd5bde5f7d5eea">r126:adf3cbf48329 (default)</option>
<option value="6249fd0fb2cfb1411e764129f598e2cf0de79a6f">r113:6249fd0fb2cf (git)</option>
<option value="75feb4c33e81186c87eac740cee2447330288412">r109:75feb4c33e81 (default)</option>
<option value="9a4dc232ecdc763ef2e98ae2238cfcbba4f6ad8d">r108:9a4dc232ecdc (default)</option>
<option value="595cce4efa21fda2f2e4eeb4fe5f2a6befe6fa2d">r107:595cce4efa21 (default)</option>
<option value="4a8bd421fbc2dfbfb70d85a3fe064075ab2c49da">r104:4a8bd421fbc2 (default)</option>
<option value="57be63fc8f85e65a0106a53187f7316f8c487ffa">r102:57be63fc8f85 (default)</option>
<option value="5530bd87f7e2e124a64d07cb2654c997682128be">r101:5530bd87f7e2 (git)</option>
<option value="e516008b1c93f142263dc4b7961787cbad654ce1">r99:e516008b1c93 (default)</option>
<option value="41f43fc74b8b285984554532eb105ac3be5c434f">r93:41f43fc74b8b (default)</option>
<option value="cc66b61b8455b264a7a8a2d8ddc80fcfc58c221e">r92:cc66b61b8455 (default)</option>
<option value="73ab5b616b3271b0518682fb4988ce421de8099f">r91:73ab5b616b32 (default)</option>
<option value="e0da75f308c0f18f98e9ce6257626009fdda2b39">r82:e0da75f308c0 (default)</option>
<option value="fb2e41e0f0810be4d7103bc2a4c7be16ee3ec611">r81:fb2e41e0f081 (default)</option>
<option value="602ae2f5e7ade70b3b66a58cdd9e3e613dc8a028">r76:602ae2f5e7ad (default)</option>
<option value="a066b25d5df7016b45a41b7e2a78c33b57adc235">r73:a066b25d5df7 (default)</option>
<option value="637a933c905958ce5151f154147c25c1c7b68832">r61:637a933c9059 (web)</option>
<option value="0c21004effeb8ce2d2d5b4a8baf6afa8394b6fbc">r60:0c21004effeb (web)</option>
<option value="a1f39c56d3f1d52d5fb5920370a2a2716cd9a444">r59:a1f39c56d3f1 (web)</option>
<option value="97d32df05c715a3bbf936bf3cc4e32fb77fe1a7f">r58:97d32df05c71 (web)</option>
<option value="08eaf14517718dccea4b67755a93368341aca919">r57:08eaf1451771 (web)</option>
<option value="22f71ad265265a53238359c883aa976e725aa07d">r56:22f71ad26526 (web)</option>
<option value="97501f02b7b4330924b647755663a2d90a5e638d">r49:97501f02b7b4 (web)</option>
<option value="86ede6754f2b27309452bb11f997386ae01d0e5a">r47:86ede6754f2b (web)</option>
<option value="014c40c0203c423dc19ecf94644f7cac9d4cdce0">r45:014c40c0203c (web)</option>
<option value="ee87846a61c12153b51543bf860e1026c6d3dcba">r30:ee87846a61c1 (default)</option>
<option value="9bb326a04ae5d98d437dece54be04f830cf1edd9">r26:9bb326a04ae5 (default)</option>
<option value="536c1a19428381cfea92ac44985304f6a8049569">r24:536c1a194283 (default)</option>
<option value="dc5d2c0661b61928834a785d3e64a3f80d3aad9c">r8:dc5d2c0661b6 (default)</option>
<option value="3803844fdbd3b711175fc3da9bdacfcd6d29a6fb">r7:3803844fdbd3 (default)</option>
fixed broken test after latest changes
r782 </optgroup>
<optgroup label="Branches">
fixed some tests after last iteration
r2947 <option value="27cd5cce30c96924232dffcd24178a07ffeb5dfc">default</option>
fixed broken test after latest changes
r782 <option value="97e8b885c04894463c51898e14387d80c30ed1ee">git</option>
<option value="2e6a2bf9356ca56df08807f4ad86d480da72a8f4">web</option>
</optgroup>
<optgroup label="Tags">
fixed some tests after last iteration
r2947 <option value="27cd5cce30c96924232dffcd24178a07ffeb5dfc">tip</option>
fixed broken test after latest changes
r782 <option value="fd4bdb5e9b2a29b4393a4ac6caef48c17ee1a200">0.1.4</option>
<option value="17544fbfcd33ffb439e2b728b5d526b1ef30bfcf">0.1.3</option>
<option value="a7e60bff65d57ac3a1a1ce3b12a70f8a9e8a7720">0.1.2</option>
<option value="eb3a60fc964309c1a318b8dfe26aa2d1586c85ae">0.1.1</option>
fixed test after last fixes
r2085 </optgroup>
""")
added some tests for files
r729
def test_file_annotation(self):
self.log_user()
fixed annotate tests
r2180 response = self.app.get(url(controller='files', action='index',
added some tests for files
r729 repo_name=HG_REPO,
revision='27cd5cce30c96924232dffcd24178a07ffeb5dfc',
fixed annotate tests
r2180 f_path='vcs/nodes.py',
annotate=True))
added some tests for files
r729
fixed file history tests
r3009 response.mustcontain("""<span style="text-transform: uppercase;"><a href="#">branch: default</a></span>""")
def test_file_annotation_history(self):
self.log_user()
response = self.app.get(url(controller='files', action='history',
repo_name=HG_REPO,
revision='27cd5cce30c96924232dffcd24178a07ffeb5dfc',
f_path='vcs/nodes.py',
annotate=True),
extra_environ={'HTTP_X_PARTIAL_XHR': '1'})
fixed tests after latest changes to history list
r1984
response.mustcontain("""<optgroup label="Changesets">
fixed some tests after last iteration
r2947 <option selected="selected" value="8911406ad776fdd3d0b9932a2e89677e57405a48">r167:8911406ad776 (default)</option>
fixed tests after latest changes to history list
r1984 <option value="aa957ed78c35a1541f508d2ec90e501b0a9e3167">r165:aa957ed78c35 (default)</option>
<option value="48e11b73e94c0db33e736eaeea692f990cb0b5f1">r140:48e11b73e94c (default)</option>
<option value="adf3cbf483298563b968a6c673cd5bde5f7d5eea">r126:adf3cbf48329 (default)</option>
<option value="6249fd0fb2cfb1411e764129f598e2cf0de79a6f">r113:6249fd0fb2cf (git)</option>
<option value="75feb4c33e81186c87eac740cee2447330288412">r109:75feb4c33e81 (default)</option>
<option value="9a4dc232ecdc763ef2e98ae2238cfcbba4f6ad8d">r108:9a4dc232ecdc (default)</option>
<option value="595cce4efa21fda2f2e4eeb4fe5f2a6befe6fa2d">r107:595cce4efa21 (default)</option>
<option value="4a8bd421fbc2dfbfb70d85a3fe064075ab2c49da">r104:4a8bd421fbc2 (default)</option>
<option value="57be63fc8f85e65a0106a53187f7316f8c487ffa">r102:57be63fc8f85 (default)</option>
<option value="5530bd87f7e2e124a64d07cb2654c997682128be">r101:5530bd87f7e2 (git)</option>
<option value="e516008b1c93f142263dc4b7961787cbad654ce1">r99:e516008b1c93 (default)</option>
<option value="41f43fc74b8b285984554532eb105ac3be5c434f">r93:41f43fc74b8b (default)</option>
<option value="cc66b61b8455b264a7a8a2d8ddc80fcfc58c221e">r92:cc66b61b8455 (default)</option>
<option value="73ab5b616b3271b0518682fb4988ce421de8099f">r91:73ab5b616b32 (default)</option>
<option value="e0da75f308c0f18f98e9ce6257626009fdda2b39">r82:e0da75f308c0 (default)</option>
<option value="fb2e41e0f0810be4d7103bc2a4c7be16ee3ec611">r81:fb2e41e0f081 (default)</option>
<option value="602ae2f5e7ade70b3b66a58cdd9e3e613dc8a028">r76:602ae2f5e7ad (default)</option>
<option value="a066b25d5df7016b45a41b7e2a78c33b57adc235">r73:a066b25d5df7 (default)</option>
<option value="637a933c905958ce5151f154147c25c1c7b68832">r61:637a933c9059 (web)</option>
<option value="0c21004effeb8ce2d2d5b4a8baf6afa8394b6fbc">r60:0c21004effeb (web)</option>
<option value="a1f39c56d3f1d52d5fb5920370a2a2716cd9a444">r59:a1f39c56d3f1 (web)</option>
<option value="97d32df05c715a3bbf936bf3cc4e32fb77fe1a7f">r58:97d32df05c71 (web)</option>
<option value="08eaf14517718dccea4b67755a93368341aca919">r57:08eaf1451771 (web)</option>
<option value="22f71ad265265a53238359c883aa976e725aa07d">r56:22f71ad26526 (web)</option>
<option value="97501f02b7b4330924b647755663a2d90a5e638d">r49:97501f02b7b4 (web)</option>
<option value="86ede6754f2b27309452bb11f997386ae01d0e5a">r47:86ede6754f2b (web)</option>
<option value="014c40c0203c423dc19ecf94644f7cac9d4cdce0">r45:014c40c0203c (web)</option>
<option value="ee87846a61c12153b51543bf860e1026c6d3dcba">r30:ee87846a61c1 (default)</option>
<option value="9bb326a04ae5d98d437dece54be04f830cf1edd9">r26:9bb326a04ae5 (default)</option>
<option value="536c1a19428381cfea92ac44985304f6a8049569">r24:536c1a194283 (default)</option>
<option value="dc5d2c0661b61928834a785d3e64a3f80d3aad9c">r8:dc5d2c0661b6 (default)</option>
<option value="3803844fdbd3b711175fc3da9bdacfcd6d29a6fb">r7:3803844fdbd3 (default)</option>
fixed broken test after latest changes
r782 </optgroup>
<optgroup label="Branches">
fixed some tests after last iteration
r2947 <option value="27cd5cce30c96924232dffcd24178a07ffeb5dfc">default</option>
fixed broken test after latest changes
r782 <option value="97e8b885c04894463c51898e14387d80c30ed1ee">git</option>
<option value="2e6a2bf9356ca56df08807f4ad86d480da72a8f4">web</option>
</optgroup>
<optgroup label="Tags">
fixed some tests after last iteration
r2947 <option value="27cd5cce30c96924232dffcd24178a07ffeb5dfc">tip</option>
fixed broken test after latest changes
r782 <option value="fd4bdb5e9b2a29b4393a4ac6caef48c17ee1a200">0.1.4</option>
<option value="17544fbfcd33ffb439e2b728b5d526b1ef30bfcf">0.1.3</option>
<option value="a7e60bff65d57ac3a1a1ce3b12a70f8a9e8a7720">0.1.2</option>
<option value="eb3a60fc964309c1a318b8dfe26aa2d1586c85ae">0.1.1</option>
fixed test after last fixes
r2085 </optgroup>""")
added some tests for files
r729
Added vcs testsuite for better integration tests + added fetching...
r2451 def test_file_annotation_git(self):
self.log_user()
response = self.app.get(url(controller='files', action='index',
repo_name=GIT_REPO,
revision='master',
f_path='vcs/nodes.py',
annotate=True))
Added tests for archival, cleaned changelog test from prints
r873 def test_archival(self):
self.log_user()
Implemented #379 defaults settings page for creation of repositories...
r3056 _set_downloads(HG_REPO, set_to=True)
Added tests for archival, cleaned changelog test from prints
r873 for arch_ext, info in ARCHIVE_SPECS.items():
fixed tests, and archival method
r2277 short = '27cd5cce30c9%s' % arch_ext
Added tests for archival, cleaned changelog test from prints
r873 fname = '27cd5cce30c96924232dffcd24178a07ffeb5dfc%s' % arch_ext
fixed tests, and archival method
r2277 filename = '%s-%s' % (HG_REPO, short)
renamed setup module into a setup_rhodecode....
r2289 response = self.app.get(url(controller='files',
fixed tests, and archival method
r2277 action='archivefile',
Added tests for archival, cleaned changelog test from prints
r873 repo_name=HG_REPO,
fname=fname))
fixes for tests on Windows
r2255 self.assertEqual(response.status, '200 OK')
Use paste fileapp to properly send the archive size
r2294 heads = [
white space cleanup
r2367 ('Pragma', 'no-cache'),
('Cache-Control', 'no-cache'),
fixes issue #455 Creating an archive generates an exception on Windows...
r2318 ('Content-Disposition', 'attachment; filename=%s' % filename),
('Content-Type', '%s; charset=utf-8' % info[0]),
Use paste fileapp to properly send the archive size
r2294 ]
self.assertEqual(response.response._headers.items(), heads)
Added tests for archival, cleaned changelog test from prints
r873
def test_archival_wrong_ext(self):
self.log_user()
Implemented #379 defaults settings page for creation of repositories...
r3056 _set_downloads(HG_REPO, set_to=True)
Added tests for archival, cleaned changelog test from prints
r873 for arch_ext in ['tar', 'rar', 'x', '..ax', '.zipz']:
fname = '27cd5cce30c96924232dffcd24178a07ffeb5dfc%s' % arch_ext
white space cleanup
r2367 response = self.app.get(url(controller='files',
fixes issue #455 Creating an archive generates an exception on Windows...
r2318 action='archivefile',
Added tests for archival, cleaned changelog test from prints
r873 repo_name=HG_REPO,
fname=fname))
fixes for tests on Windows
r2255 response.mustcontain('Unknown archive type')
Added tests for archival, cleaned changelog test from prints
r873
def test_archival_wrong_revision(self):
self.log_user()
Implemented #379 defaults settings page for creation of repositories...
r3056 _set_downloads(HG_REPO, set_to=True)
fixes issue #455 Creating an archive generates an exception on Windows...
r2318 for rev in ['00x000000', 'tar', 'wrong', '@##$@$42413232', '232dffcd']:
Added tests for archival, cleaned changelog test from prints
r873 fname = '%s.zip' % rev
fixes issue #455 Creating an archive generates an exception on Windows...
r2318 response = self.app.get(url(controller='files',
action='archivefile',
Added tests for archival, cleaned changelog test from prints
r873 repo_name=HG_REPO,
fname=fname))
fixes for tests on Windows
r2255 response.mustcontain('Unknown revision')
Added tests for archival, cleaned changelog test from prints
r873
tests update
r1047 #==========================================================================
# RAW FILE
#==========================================================================
def test_raw_file_ok(self):
self.log_user()
response = self.app.get(url(controller='files', action='rawfile',
repo_name=HG_REPO,
revision='27cd5cce30c96924232dffcd24178a07ffeb5dfc',
f_path='vcs/nodes.py'))
file tests updates + extended the feed tests
r1064
fixes for tests on Windows
r2255 self.assertEqual(response.content_disposition, "attachment; filename=nodes.py")
self.assertEqual(response.content_type, "text/x-python")
fixes and extends file tests
r1063
tests update
r1047 def test_raw_file_wrong_cs(self):
self.log_user()
fixes and extends file tests
r1063 rev = u'ERRORce30c96924232dffcd24178a07ffeb5dfc'
tests update
r1047 f_path = 'vcs/nodes.py'
response = self.app.get(url(controller='files', action='rawfile',
repo_name=HG_REPO,
fixes and extends file tests
r1063 revision=rev,
file tests updates + extended the feed tests
r1064 f_path=f_path))
fixes and extends file tests
r1063
fixed tests after latest changes to history list
r1984 msg = """Revision %r does not exist for this repository""" % (rev)
self.checkSessionFlash(response, msg)
tests update
r1047
fixed tests after latest changes to history list
r1984 msg = """%s""" % (HG_REPO)
self.checkSessionFlash(response, msg)
Added tests for archival, cleaned changelog test from prints
r873
tests update
r1047 def test_raw_file_wrong_f_path(self):
self.log_user()
rev = '27cd5cce30c96924232dffcd24178a07ffeb5dfc'
f_path = 'vcs/ERRORnodes.py'
response = self.app.get(url(controller='files', action='rawfile',
repo_name=HG_REPO,
revision=rev,
f_path=f_path))
fixed tests after latest changes to history list
r1984
msg = "There is no file nor directory at the given path: %r at revision %r" % (f_path, rev[:12])
self.checkSessionFlash(response, msg)
tests update
r1047
#==========================================================================
file tests updates + extended the feed tests
r1064 # RAW RESPONSE - PLAIN
tests update
r1047 #==========================================================================
def test_raw_ok(self):
self.log_user()
response = self.app.get(url(controller='files', action='raw',
repo_name=HG_REPO,
revision='27cd5cce30c96924232dffcd24178a07ffeb5dfc',
f_path='vcs/nodes.py'))
file tests updates + extended the feed tests
r1064
fixes for tests on Windows
r2255 self.assertEqual(response.content_type, "text/plain")
fixes and extends file tests
r1063
tests update
r1047 def test_raw_wrong_cs(self):
self.log_user()
fixes and extends file tests
r1063 rev = u'ERRORcce30c96924232dffcd24178a07ffeb5dfc'
tests update
r1047 f_path = 'vcs/nodes.py'
response = self.app.get(url(controller='files', action='raw',
repo_name=HG_REPO,
fixes and extends file tests
r1063 revision=rev,
file tests updates + extended the feed tests
r1064 f_path=f_path))
fixed tests after latest changes to history list
r1984 msg = """Revision %r does not exist for this repository""" % (rev)
self.checkSessionFlash(response, msg)
fixes and extends file tests
r1063
fixed tests after latest changes to history list
r1984 msg = """%s""" % (HG_REPO)
self.checkSessionFlash(response, msg)
tests update
r1047
def test_raw_wrong_f_path(self):
self.log_user()
rev = '27cd5cce30c96924232dffcd24178a07ffeb5dfc'
f_path = 'vcs/ERRORnodes.py'
response = self.app.get(url(controller='files', action='raw',
repo_name=HG_REPO,
revision=rev,
f_path=f_path))
fixed tests after latest changes to history list
r1984 msg = "There is no file nor directory at the given path: %r at revision %r" % (f_path, rev[:12])
self.checkSessionFlash(response, msg)
commit less models...
r1749
def test_ajaxed_files_list(self):
self.log_user()
auto white-space removal
r1818 rev = '27cd5cce30c96924232dffcd24178a07ffeb5dfc'
fixed tests after latest changes to history list
r1984 response = self.app.get(
url('files_nodelist_home', repo_name=HG_REPO,f_path='/',revision=rev),
extra_environ={'HTTP_X_PARTIAL_XHR': '1'},
)
response.mustcontain("vcs/web/simplevcs/views/repository.py")