
The existing gate partitioned a disk for use with docker, depending on the gate it would use the swap disk (RAX) or a spare disk (HP). However, with the new gates (Bluebox + OVH) there is neither a spare disk nor a swap disk. This leaves us with one choice: File based loop device. This patch creates a file at /swapfile to ensure we have swap. It creates a file at /docker to ensure we have a loop device for Docker. Right now the /docker file is 10GB and the /swapfile is 4GB due to size limitations in the gate across all servers and types. This has proven to be enough space for all our current tests. Additionally, reduce the number of threads the gate uses to 4 to prevent the lockup and hour timeout we have been seeing as more recently in the gate. The scripts that setup the gate are moved to the tools directory rather than the tests directory to match the structure of the other projects. Partially-Implements: blueprint functional-testing-gate Change-Id: I3e370f2382b6df36103d8b2ceda9b21d9b4229d5
117 lines
4.1 KiB
Python
117 lines
4.1 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import os
|
|
|
|
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
|
|
sys.path.append(path.abspath(path.join(path.dirname(__file__), '../tools')))
|
|
from kolla.cmd import build
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class BuildTest(base.BaseTestCase):
|
|
|
|
def setUp(self):
|
|
super(BuildTest, self).setUp()
|
|
self.useFixture(log_fixture.SetLogLevel([__name__],
|
|
logging.logging.INFO))
|
|
self.build_args = [__name__, "--debug", '--threads', '4']
|
|
|
|
@testtools.skipUnless(os.environ.get('DOCKER_BUILD_TEST'),
|
|
'Skip the docker build test')
|
|
def runTest(self):
|
|
with patch.object(sys, 'argv', self.build_args):
|
|
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",
|
|
"manila-base"]
|
|
|
|
failures = 0
|
|
for image, result in six.iteritems(bad_results):
|
|
if image in excluded_images:
|
|
if result is 'error':
|
|
continue
|
|
failures = failures + 1
|
|
LOG.warning(">>> Expected image '%s' to fail, please update"
|
|
" the excluded_images in source file above if the"
|
|
" image build has been fixed.", image)
|
|
else:
|
|
if result is not 'error':
|
|
continue
|
|
failures = failures + 1
|
|
LOG.critical(">>> Expected image '%s' to succeed!", image)
|
|
|
|
for image in unmatched_results.keys():
|
|
LOG.warning(">>> Image '%s' was not matched", image)
|
|
|
|
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 BuildTestCentosSource(BuildTest):
|
|
def setUp(self):
|
|
super(BuildTestCentosSource, self).setUp()
|
|
self.build_args.extend(["--base", "centos",
|
|
"--type", "source"])
|
|
|
|
|
|
class BuildTestUbuntuSource(BuildTest):
|
|
def setUp(self):
|
|
super(BuildTestUbuntuSource, self).setUp()
|
|
self.build_args.extend(["--base", "ubuntu",
|
|
"--type", "source"])
|
|
|
|
|
|
class DeployTestCentosBinary(BuildTest):
|
|
def setUp(self):
|
|
super(DeployTestCentosBinary, self).setUp()
|
|
self.build_args.extend(["--base", "centos",
|
|
"--type", "binary",
|
|
"--profile", "gate"])
|
|
|
|
|
|
class DeployTestCentosSource(BuildTest):
|
|
def setUp(self):
|
|
super(DeployTestCentosSource, self).setUp()
|
|
self.build_args.extend(["--base", "centos",
|
|
"--type", "source",
|
|
"--profile", "gate"])
|
|
|
|
|
|
class DeployTestUbuntuSource(BuildTest):
|
|
def setUp(self):
|
|
super(DeployTestUbuntuSource, self).setUp()
|
|
self.build_args.extend(["--base", "ubuntu",
|
|
"--type", "source",
|
|
"--profile", "gate"])
|