2022-01-24 09:57:40 +01:00
|
|
|
Feature: `osc getbinaries <project> <repo> <arch>` command
|
|
|
|
|
|
|
|
|
|
|
|
# common steps for all scenarios
|
|
|
|
Background:
|
|
|
|
Given I set working directory to "{context.osc.temp}"
|
|
|
|
|
|
|
|
|
|
|
|
Scenario: Run `osc getbinaries <project> <repo> <arch>`
|
2022-12-08 09:52:50 +01:00
|
|
|
When I execute osc with args "getbinaries test:factory standard x86_64"
|
2022-01-24 09:57:40 +01:00
|
|
|
Then directory tree in "{context.osc.temp}/binaries/" is
|
|
|
|
"""
|
2022-12-05 15:10:50 +01:00
|
|
|
multibuild-pkg-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-flavor1-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-flavor2-1-1.x86_64.rpm
|
|
|
|
test-pkgA-3-1.noarch.rpm
|
|
|
|
test-pkgB-2-1.noarch.rpm
|
2022-01-24 09:57:40 +01:00
|
|
|
multibuild-pkg/_buildenv
|
|
|
|
multibuild-pkg/_statistics
|
|
|
|
multibuild-pkg/rpmlint.log
|
|
|
|
multibuild-pkg:flavor1/_buildenv
|
|
|
|
multibuild-pkg:flavor1/_statistics
|
|
|
|
multibuild-pkg:flavor1/rpmlint.log
|
|
|
|
multibuild-pkg:flavor2/_buildenv
|
|
|
|
multibuild-pkg:flavor2/_statistics
|
|
|
|
multibuild-pkg:flavor2/rpmlint.log
|
|
|
|
test-pkgA/_buildenv
|
|
|
|
test-pkgA/_statistics
|
|
|
|
test-pkgA/rpmlint.log
|
|
|
|
test-pkgB/_buildenv
|
|
|
|
test-pkgB/_statistics
|
|
|
|
test-pkgB/rpmlint.log
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
Scenario: Run `osc getbinaries <project> <repo> <arch> --multibuild-package=<flavor>`
|
2022-12-08 09:52:50 +01:00
|
|
|
When I execute osc with args "getbinaries test:factory standard x86_64 --multibuild-package=flavor1"
|
2022-01-24 09:57:40 +01:00
|
|
|
# the option is allowed only in a package checkout
|
|
|
|
Then the exit code is 2
|
|
|
|
|
|
|
|
|
|
|
|
Scenario: Run `osc getbinaries <project> <repo> <arch> --debuginfo`
|
2022-12-08 09:52:50 +01:00
|
|
|
When I execute osc with args "getbinaries test:factory standard x86_64 --debuginfo"
|
2022-01-24 09:57:40 +01:00
|
|
|
Then directory tree in "{context.osc.temp}/binaries/" is
|
|
|
|
"""
|
2022-12-05 15:10:50 +01:00
|
|
|
multibuild-pkg-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-debuginfo-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-debugsource-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-flavor1-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-flavor1-debuginfo-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-flavor2-1-1.x86_64.rpm
|
|
|
|
multibuild-pkg-flavor2-debuginfo-1-1.x86_64.rpm
|
|
|
|
test-pkgA-3-1.noarch.rpm
|
|
|
|
test-pkgB-2-1.noarch.rpm
|
2022-01-24 09:57:40 +01:00
|
|
|
multibuild-pkg/_buildenv
|
|
|
|
multibuild-pkg/_statistics
|
|
|
|
multibuild-pkg/rpmlint.log
|
|
|
|
multibuild-pkg:flavor1/_buildenv
|
|
|
|
multibuild-pkg:flavor1/_statistics
|
|
|
|
multibuild-pkg:flavor1/rpmlint.log
|
|
|
|
multibuild-pkg:flavor2/_buildenv
|
|
|
|
multibuild-pkg:flavor2/_statistics
|
|
|
|
multibuild-pkg:flavor2/rpmlint.log
|
|
|
|
test-pkgA/_buildenv
|
|
|
|
test-pkgA/_statistics
|
|
|
|
test-pkgA/rpmlint.log
|
|
|
|
test-pkgB/_buildenv
|
|
|
|
test-pkgB/_statistics
|
|
|
|
test-pkgB/rpmlint.log
|
|
|
|
"""
|