spec = parse_spec(options, repo, branch)
pq_branch = pq_branch_name(branch, options, spec.version)
if not repo.has_branch(pq_branch):
- upstream_commit = find_upstream_commit(repo, spec, options.upstream_tag)
- try:
- repo.create_branch(pq_branch, rev=upstream_commit)
- except GitRepositoryError as err:
- raise GbpError("Cannot create patch-queue branch: %s" % err)
+ raise GbpError("Branch '%s' does not exist" % pq_branch)
gbp.log.info("Switching to branch '%s'" % pq_branch)
repo.set_branch(pq_branch)
+
def apply_single_patch(repo, patchfile, options):
"""Apply a single patch onto the pq branch"""
current = repo.get_branch()
repo = self.init_test_repo('gbp-test')
pkg_files = repo.list_files()
branches = repo.get_local_branches() + ['development/master']
- upstr_files = ['dummy.sh', 'Makefile', 'README']
- # Switch to non-existent pq-branch should create one
+ # Switch to non-existent pq-branch should fail
+ eq_(mock_pq(['switch']), 1)
+ self._check_log(-1, ".*Branch 'development/master' does not exist")
+
+ # Import and switch to base branch and back to pq
+ eq_(mock_pq(['import']), 0)
eq_(mock_pq(['switch']), 0)
- self._check_repo_state(repo, 'development/master', branches,
- upstr_files)
+ self._check_repo_state(repo, 'master', branches)
+ eq_(mock_pq(['switch']), 0)
+ self._check_repo_state(repo, 'development/master', branches)
# Switch to base branch and back to pq
eq_(mock_pq(['switch']), 0)
self._check_repo_state(repo, 'master', branches, pkg_files)
eq_(mock_pq(['switch']), 0)
- self._check_repo_state(repo, 'development/master', branches,
- upstr_files)
+ self._check_repo_state(repo, 'development/master', branches)
def test_switch_drop(self):
"""Basic test for drop action"""