Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
75343870
Commit
75343870
authored
9 years ago
by
Jenkins
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Separate exclusion list for source and binary types"
parents
06b16d57
dcbfbcd2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_build.py
+32
-27
32 additions, 27 deletions
tests/test_build.py
with
32 additions
and
27 deletions
tests/test_build.py
+
32
−
27
View file @
75343870
...
...
@@ -10,24 +10,27 @@
# License for the specific language governing permissions and limitations
# under the License.
import
abc
import
os
import
sys
from
mock
import
patch
from
os
import
path
from
oslo_log
import
fixture
as
log_fixture
from
oslo_log
import
log
as
logging
from
oslotest
import
base
import
six
import
testtools
import
sys
sy
s
.
path
.
append
(
path
.
abspath
(
path
.
join
(
path
.
dirname
(
__file__
),
'
../tools
'
)))
sys
.
path
.
append
(
o
s
.
path
.
abspath
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
../tools
'
)))
from
kolla.cmd
import
build
LOG
=
logging
.
getLogger
(
__name__
)
class
BuildTest
(
base
.
BaseTestCase
):
@six.add_metaclass
(
abc
.
ABCMeta
)
class
BuildTest
(
object
):
excluded_images
=
abc
.
abstractproperty
()
def
setUp
(
self
):
super
(
BuildTest
,
self
).
setUp
()
...
...
@@ -42,16 +45,9 @@ class BuildTest(base.BaseTestCase):
LOG
.
info
(
"
Running with args %s
"
,
self
.
build_args
)
bad_results
,
good_results
,
unmatched_results
=
build
.
main
()
# these are images that are known to not build properly
excluded_images
=
[
"
gnocchi-base
"
,
"
murano-base
"
,
"
ironic-pxe
"
,
"
ironic-discoverd
"
,
"
mistral-base
"
]
failures
=
0
for
image
,
result
in
six
.
iteritems
(
bad_results
):
if
image
in
excluded_images
:
if
image
in
self
.
excluded_images
:
if
result
is
'
error
'
:
continue
failures
=
failures
+
1
...
...
@@ -70,46 +66,55 @@ class BuildTest(base.BaseTestCase):
self
.
assertEqual
(
failures
,
0
,
"
%d failure(s) occurred
"
%
failures
)
class
BuildTestCentosBinary
(
BuildTest
):
class
BuildTestCentosBinary
(
BuildTest
,
base
.
BaseTestCase
):
excluded_images
=
[
"
gnocchi-base
"
,
"
murano-base
"
,
"
ironic-pxe
"
,
"
ironic-discoverd
"
,
"
mistral-base
"
,
"
murano-base
"
]
def
setUp
(
self
):
super
(
BuildTestCentosBinary
,
self
).
setUp
()
self
.
build_args
.
extend
([
"
--base
"
,
"
centos
"
,
"
--type
"
,
"
binary
"
])
class
BuildTestCentosSource
(
BuildTest
):
class
BuildTestCentosSource
(
BuildTest
,
base
.
BaseTestCase
):
excluded_images
=
[
"
gnocchi-base
"
,
"
murano-base
"
,
"
ironic-pxe
"
,
"
ironic-discoverd
"
,
"
mistral-base
"
]
def
setUp
(
self
):
super
(
BuildTestCentosSource
,
self
).
setUp
()
self
.
build_args
.
extend
([
"
--base
"
,
"
centos
"
,
"
--type
"
,
"
source
"
])
class
BuildTestUbuntuSource
(
BuildTest
):
class
BuildTestUbuntuSource
(
BuildTest
,
base
.
BaseTestCase
):
excluded_images
=
[]
def
setUp
(
self
):
super
(
BuildTestUbuntuSource
,
self
).
setUp
()
self
.
build_args
.
extend
([
"
--base
"
,
"
ubuntu
"
,
"
--type
"
,
"
source
"
])
class
DeployTestCentosBinary
(
BuildTest
):
class
DeployTestCentosBinary
(
BuildTest
CentosBinary
):
def
setUp
(
self
):
super
(
DeployTestCentosBinary
,
self
).
setUp
()
self
.
build_args
.
extend
([
"
--base
"
,
"
centos
"
,
"
--type
"
,
"
binary
"
,
"
--profile
"
,
"
gate
"
])
self
.
build_args
.
extend
([
"
--profile
"
,
"
gate
"
])
class
DeployTestCentosSource
(
BuildTest
):
class
DeployTestCentosSource
(
BuildTest
CentosSource
):
def
setUp
(
self
):
super
(
DeployTestCentosSource
,
self
).
setUp
()
self
.
build_args
.
extend
([
"
--base
"
,
"
centos
"
,
"
--type
"
,
"
source
"
,
"
--profile
"
,
"
gate
"
])
self
.
build_args
.
extend
([
"
--profile
"
,
"
gate
"
])
class
DeployTestUbuntuSource
(
BuildTest
):
class
DeployTestUbuntuSource
(
BuildTest
UbuntuSource
):
def
setUp
(
self
):
super
(
DeployTestUbuntuSource
,
self
).
setUp
()
self
.
build_args
.
extend
([
"
--base
"
,
"
ubuntu
"
,
"
--type
"
,
"
source
"
,
"
--profile
"
,
"
gate
"
])
self
.
build_args
.
extend
([
"
--profile
"
,
"
gate
"
])
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment