changeset 7309:f359ebe73041 stable

tests: fix some incorrect test use of create_repo to create forks This would create problems later when we start checking clone_uri.
author Mads Kiilerich <mads@kiilerich.com>
date Mon, 07 May 2018 00:49:44 +0200
parents 959e009afcae
children d64cf8f33f6f
files kallithea/tests/functional/test_compare.py
diffstat 1 files changed, 4 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/tests/functional/test_compare.py	Mon May 07 00:49:44 2018 +0200
+++ b/kallithea/tests/functional/test_compare.py	Mon May 07 00:49:44 2018 +0200
@@ -457,17 +457,13 @@
         Session().commit()
         self.assertEqual(repo1.scm_instance.revisions, [cs0.raw_id])
         #fork the repo1
-        repo2 = fixture.create_repo('one-fork', repo_type='hg',
-                                    repo_description='diff-test',
-                                    cur_user=TEST_USER_ADMIN_LOGIN,
-                                    clone_uri=repo1.repo_full_path,
-                                    fork_of='one')
+        repo2 = fixture.create_fork(r1_name, 'one-fork',
+                                    cur_user=TEST_USER_ADMIN_LOGIN)
         Session().commit()
         self.assertEqual(repo2.scm_instance.revisions, [cs0.raw_id])
         self.r2_id = repo2.repo_id
         r2_name = repo2.repo_name
 
-
         cs1 = fixture.commit_change(repo=r2_name, filename='file1-fork',
                 content='file1-line1-from-fork', message='commit1-fork',
                 vcs_type='hg', parent=repo2.scm_instance[-1], newfile=True)
@@ -537,11 +533,8 @@
         Session().commit()
         self.assertEqual(repo1.scm_instance.revisions, [cs0.raw_id])
         #fork the repo1
-        repo2 = fixture.create_repo('one-git-fork', repo_type='git',
-                                    repo_description='diff-test',
-                                    cur_user=TEST_USER_ADMIN_LOGIN,
-                                    clone_uri=repo1.repo_full_path,
-                                    fork_of='one-git')
+        repo2 = fixture.create_fork(r1_name, 'one-git-fork',
+                                    cur_user=TEST_USER_ADMIN_LOGIN)
         Session().commit()
         self.assertEqual(repo2.scm_instance.revisions, [cs0.raw_id])
         self.r2_id = repo2.repo_id