mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 22:56:15 +01:00
105 lines
3.8 KiB
Gherkin
105 lines
3.8 KiB
Gherkin
Feature: `osc getbinaries <repo> <arch>` command from a project checkout
|
|
|
|
|
|
# common steps for all scenarios
|
|
Background:
|
|
Given I set working directory to "{context.osc.temp}"
|
|
And I execute osc with args "checkout test:factory"
|
|
And I set working directory to "{context.osc.temp}/test:factory"
|
|
|
|
|
|
Scenario: Run `osc getbinaries <repo> <arch>` from a project checkout
|
|
When I execute osc with args "getbinaries standard x86_64"
|
|
Then directory tree in "{context.osc.temp}/test:factory/binaries/" is
|
|
"""
|
|
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
|
|
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 <repo> <arch> --multibuild-package=<flavor>` from a project checkout
|
|
When I execute osc with args "getbinaries standard x86_64 --multibuild-package=flavor1"
|
|
# the option is allowed only in a package checkout
|
|
Then the exit code is 2
|
|
|
|
|
|
Scenario: Run `osc getbinaries <repo> <arch> --sources` from a project checkout
|
|
When I execute osc with args "getbinaries standard x86_64 --sources"
|
|
Then directory tree in "{context.osc.temp}/test:factory/binaries/" is
|
|
"""
|
|
multibuild-pkg-1-1.src.rpm
|
|
multibuild-pkg-1-1.x86_64.rpm
|
|
multibuild-pkg-1-1.src.rpm
|
|
multibuild-pkg-flavor1-1-1.x86_64.rpm
|
|
multibuild-pkg-1-1.src.rpm
|
|
multibuild-pkg-flavor2-1-1.x86_64.rpm
|
|
test-pkgA-3-1.noarch.rpm
|
|
test-pkgA-3-1.src.rpm
|
|
test-pkgB-2-1.noarch.rpm
|
|
test-pkgB-2-1.src.rpm
|
|
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 <repo> <arch> --debuginfo` from a project checkout
|
|
When I execute osc with args "getbinaries standard x86_64 --debuginfo"
|
|
Then directory tree in "{context.osc.temp}/test:factory/binaries/" is
|
|
"""
|
|
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
|
|
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
|
|
"""
|