Skip to content
Snippets Groups Projects
Commit f33f5913 authored by Jeff Peeler's avatar Jeff Peeler
Browse files

Use inheritance for overriding of builder args

This establishes a pattern for adding any number of combinations for the
new build script to use. Each individual test class may be called
separately to only do builds of a select type. An example testr command
looks like:

testr run '^(test_build.BuildTestCentosBinary)' or even more simply
testr run test_build.BuildTestCentosBinary

Change-Id: I828a8c9c36a771bd5ad23e0dee6dffe3e94067e1
Paritally-Implements: blueprint gate-source-builds
parent b36abefd
No related branches found
No related tags found
No related merge requests found
...@@ -30,10 +30,11 @@ class BuildTest(base.BaseTestCase): ...@@ -30,10 +30,11 @@ class BuildTest(base.BaseTestCase):
super(BuildTest, self).setUp() super(BuildTest, self).setUp()
self.useFixture(log_fixture.SetLogLevel([__name__], self.useFixture(log_fixture.SetLogLevel([__name__],
logging.logging.INFO)) logging.logging.INFO))
self.build_args = [__name__, "--debug"]
def test_build(self): def runTest(self):
build_args = ["--debug"] with patch.object(sys, 'argv', self.build_args):
with patch.object(sys, 'argv', build_args): LOG.info("Running with args %s" % self.build_args)
bad_results, good_results = build.main() bad_results, good_results = build.main()
# these are images that are known to not build properly # these are images that are known to not build properly
...@@ -57,3 +58,33 @@ class BuildTest(base.BaseTestCase): ...@@ -57,3 +58,33 @@ class BuildTest(base.BaseTestCase):
LOG.critical(">>> Expected image '%s' to succeed!" % image) LOG.critical(">>> Expected image '%s' to succeed!" % image)
self.assertEqual(failures, 0, "%d failure(s) occurred" % failures) self.assertEqual(failures, 0, "%d failure(s) occurred" % failures)
class BuildTestCentosBinary(BuildTest):
def setUp(self):
super(BuildTestCentosBinary, self).setUp()
self.build_args.extend(["--base", "centos",
"--type", "binary"])
class BuildTestTemplateCentosBinary(BuildTest):
def setUp(self):
super(BuildTestCentosBinary, self).setUp()
self.build_args.extend(["--base", "centos",
"--type", "binary",
"--template"])
class BuildTestCentosSource(BuildTest):
def setUp(self):
super(BuildTestCentosSource, self).setUp()
self.build_args.extend(["--base", "centos",
"--type", "source"])
class BuildTestTemplateCentosSource(BuildTest):
def setUp(self):
super(BuildTestCentosSource, self).setUp()
self.build_args.extend(["--base", "centos",
"--type", "source",
"--template"])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment