1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-21 09:46:19 +02:00

detachbranch: Migrate to pop_project_package_from_args()

This commit is contained in:
Daniel Mach 2023-01-02 14:53:23 +01:00
parent f7d2d1592a
commit d779eb936d
2 changed files with 34 additions and 12 deletions

View File

@ -0,0 +1,27 @@
Feature: `osc detachbranch` command
# common steps for all scenarios
Background:
Given I set working directory to "{context.osc.temp}"
And I execute osc with args "linkpac test:factory/test-pkgA home:Admin"
@destructive
Scenario: Run `osc detachbranch <project> <package>`
When I execute osc with args "detachbranch home:Admin test-pkgA"
Then the exit code is 0
@destructive
Scenario: Run `osc detachbranch <project>`
When I execute osc with args "detachbranch home:Admin"
Then the exit code is 1
@destructive
Scenario: Run `osc detachbranch` from a package working copy
Given I execute osc with args "co home:Admin/test-pkgA"
And I set working directory to "{context.osc.temp}/home:Admin/test-pkgA"
When I execute osc with args "detachbranch"
Then the exit code is 0

View File

@ -2974,21 +2974,16 @@ Please submit there instead, or use --nodevelproject to force direct submission.
does not exist anymore.
usage:
osc detachbranch # can be used in package working copy
osc detachbranch # from a package working copy
osc detachbranch PROJECT PACKAGE
"""
args = slash_split(args)
apiurl = self.get_api_url()
if len(args) == 0:
project = store_read_project(Path.cwd())
package = store_read_package(Path.cwd())
elif len(args) == 2:
project = self._process_project_name(args[0])
package = args[1]
elif len(args) > 2:
raise oscerr.WrongArgs('Too many arguments (required none or two)')
else:
raise oscerr.WrongArgs('Too few arguments (required none or two)')
args = list(args)
project, package = pop_project_package_from_args(
args, default_project=".", default_package=".", package_is_optional=False
)
ensure_no_remaining_args(args)
try:
copy_pac(apiurl, project, package, apiurl, project, package, expand=True, comment=opts.message)