mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-13 07:56:14 +01:00
45 lines
1.6 KiB
Gherkin
45 lines
1.6 KiB
Gherkin
@no-snapshot
|
|
Feature: `osc getbinaries <repo> <arch>` command from a package checkout
|
|
|
|
|
|
# common steps for all scenarios
|
|
Background:
|
|
Given I set working directory to "{context.osc.temp}"
|
|
And I execute osc with args "checkout openSUSE:Factory multibuild-pkg"
|
|
And I set working directory to "{context.osc.temp}/openSUSE:Factory/multibuild-pkg"
|
|
|
|
|
|
Scenario: Run `osc getbinaries <repo> <arch>` from a package checkout
|
|
When I execute osc with args "getbinaries standard x86_64"
|
|
Then directory listing of "{context.osc.temp}/openSUSE:Factory/multibuild-pkg/binaries/" is
|
|
"""
|
|
multibuild-pkg-1-1.1.x86_64.rpm
|
|
_buildenv
|
|
_statistics
|
|
rpmlint.log
|
|
"""
|
|
|
|
|
|
Scenario: Run `osc getbinaries <repo> <arch> --multibuild-package=<flavor>` from a package checkout
|
|
When I execute osc with args "getbinaries standard x86_64 --multibuild-package=flavor1"
|
|
Then directory listing of "{context.osc.temp}/openSUSE:Factory/multibuild-pkg/binaries/" is
|
|
"""
|
|
multibuild-pkg-flavor1-1-1.1.x86_64.rpm
|
|
_buildenv
|
|
_statistics
|
|
rpmlint.log
|
|
"""
|
|
|
|
|
|
Scenario: Run `osc getbinaries <repo> <arch> --debuginfo` from a package checkout
|
|
When I execute osc with args "getbinaries standard x86_64 --debuginfo"
|
|
Then directory listing of "{context.osc.temp}/openSUSE:Factory/multibuild-pkg/binaries/" is
|
|
"""
|
|
multibuild-pkg-1-1.1.x86_64.rpm
|
|
multibuild-pkg-debuginfo-1-1.1.x86_64.rpm
|
|
multibuild-pkg-debugsource-1-1.1.x86_64.rpm
|
|
_buildenv
|
|
_statistics
|
|
rpmlint.log
|
|
"""
|