Merge "Fix inspection issues"
This commit is contained in:
commit
eaea19b42f
@ -13,6 +13,7 @@
|
||||
# under the License.
|
||||
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
|
||||
|
@ -26,6 +26,7 @@ from fuelweb_test.helpers.ssh_manager import SSHManager
|
||||
ssh_manager = SSHManager()
|
||||
|
||||
|
||||
# noinspection PyUnresolvedReferences
|
||||
class TestCephRadosGW(object):
|
||||
"""Test class consits the tests for clustre with Ceph and RadosGW"""
|
||||
|
||||
|
@ -29,7 +29,9 @@ from proboscis.asserts import assert_equal
|
||||
from proboscis.asserts import assert_false
|
||||
from proboscis.asserts import assert_true
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import URLError
|
||||
# pylint: enable=import-error
|
||||
import yaml
|
||||
@ -923,7 +925,7 @@ def check_neutron_dhcp_lease(ip, instance_ip, instance_mac,
|
||||
dhcp_server_ip, dhcp_port_tag):
|
||||
"""Check if the DHCP server offers a lease for a client with the specified
|
||||
MAC address
|
||||
:param SSHClient remote: fuel-devops.helpers.helpers object
|
||||
:param ip: remote IP
|
||||
:param str instance_ip: IP address of instance
|
||||
:param str instance_mac: MAC address that will be checked
|
||||
:param str dhcp_server_ip: IP address of DHCP server for request a lease
|
||||
|
@ -26,9 +26,11 @@ import neutronclient.v2_0.client as neutronclient
|
||||
from proboscis.asserts import assert_equal
|
||||
import six
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -26,6 +26,7 @@ from proboscis.asserts import assert_equal
|
||||
from proboscis.asserts import assert_true
|
||||
import requests
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
@ -119,7 +120,7 @@ def log_snapshot_after_test(func):
|
||||
try:
|
||||
result = func(*args, **kwargs)
|
||||
except SkipTest:
|
||||
raise SkipTest()
|
||||
raise
|
||||
except Exception:
|
||||
name = 'error_{:s}'.format(func.__name__)
|
||||
store_error_details(name, args[0].env)
|
||||
@ -522,6 +523,7 @@ def __getcallargs(func, *positional, **named):
|
||||
if sys.version_info.major < 3:
|
||||
return inspect.getcallargs(func, *positional, **named)
|
||||
else:
|
||||
# noinspection PyUnresolvedReferences
|
||||
return inspect.signature(func).bind(*positional, **named).arguments
|
||||
|
||||
|
||||
@ -546,6 +548,7 @@ def __get_arg_names(func):
|
||||
if sys.version_info.major < 3:
|
||||
return [arg for arg in inspect.getargspec(func=func).args]
|
||||
else:
|
||||
# noinspection PyUnresolvedReferences
|
||||
return list(inspect.signature(obj=func).parameters.keys())
|
||||
# pylint:enable=no-member
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
|
||||
import os
|
||||
import re
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import cStringIO
|
||||
|
||||
from devops.helpers.helpers import wait
|
||||
|
@ -18,6 +18,7 @@ import os
|
||||
import re
|
||||
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
|
||||
|
@ -18,7 +18,9 @@ import traceback
|
||||
from keystoneclient.v2_0 import Client as KeystoneClient
|
||||
from keystoneclient import exceptions
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib import request
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -5,6 +5,7 @@ from devops.helpers.helpers import wait
|
||||
from proboscis import asserts
|
||||
import requests
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -26,7 +26,9 @@ from proboscis.asserts import assert_is_not_none
|
||||
from proboscis.asserts import assert_not_equal
|
||||
from proboscis.asserts import assert_true
|
||||
# pylint: disable=import-error,wrong-import-order
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import urlopen
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.parse import urlparse
|
||||
# pylint: enable=import-error,wrong-import-order
|
||||
import yaml
|
||||
|
@ -20,8 +20,11 @@ import zlib
|
||||
|
||||
from proboscis.asserts import assert_equal
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import urlopen
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import URLError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -78,7 +78,7 @@ c1=(MD5Sum: SHA1: SHA256: SHA512:)
|
||||
c2=(md5 sha1 sha256 sha512)
|
||||
|
||||
i=0
|
||||
while [ $i -lt ${#c1[*]} ]; do
|
||||
while [ ${i} -lt ${#c1[*]} ]; do
|
||||
echo ${c1[i]}
|
||||
for hashme in `find ${SECTION} -type f \( -not -name "*~" -name "Package*" -o -name "Release*" \)`; do
|
||||
ohash=`openssl dgst -${c2[$i]} ${hashme}`
|
||||
|
@ -55,8 +55,10 @@ class SSHManager(object):
|
||||
""" It will be moved to __init__
|
||||
|
||||
:param admin_ip: ip address of admin node
|
||||
:param login: user name
|
||||
:param password: password for user
|
||||
:param admin_login: user name
|
||||
:param admin_password: password for user
|
||||
:param slave_login: user name
|
||||
:param slave_password: password for user
|
||||
:return: None
|
||||
"""
|
||||
self.admin_ip = admin_ip
|
||||
|
@ -32,9 +32,11 @@ from proboscis import asserts
|
||||
from proboscis.asserts import assert_true
|
||||
from proboscis.asserts import assert_equal
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import configparser
|
||||
# pylint: enable=import-error
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
import yaml
|
||||
@ -1113,7 +1115,7 @@ def get_file_size(ip, file_name, file_path):
|
||||
def get_quantity_of_numa(ip):
|
||||
"""Get number of NUMA nodes that are contained on remote node
|
||||
|
||||
:param remote: node IP
|
||||
:param ip: node IP
|
||||
:return: int, count of available NUMA nodes on the node
|
||||
"""
|
||||
|
||||
@ -1140,7 +1142,7 @@ def dict_merge(a, b):
|
||||
if not isinstance(b, dict):
|
||||
return copy.deepcopy(b)
|
||||
result = copy.deepcopy(a)
|
||||
for k, v in b.iteritems():
|
||||
for k, v in b.items():
|
||||
if k in result and isinstance(result[k], dict):
|
||||
result[k] = dict_merge(result[k], v)
|
||||
else:
|
||||
|
@ -34,6 +34,7 @@ from proboscis.asserts import assert_not_equal
|
||||
from proboscis.asserts import assert_raises
|
||||
from proboscis.asserts import assert_true
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
import yaml
|
||||
@ -340,8 +341,8 @@ class FuelWebClient29(object):
|
||||
task = self.task_wait(task, timeout, interval)
|
||||
assert_equal(
|
||||
'error', task['status'],
|
||||
"Task '{name}' has incorrect status. {} != {}".format(
|
||||
task['status'], 'error', name=task["name"]
|
||||
"Task '{name}' has incorrect status. {status} != {exp}".format(
|
||||
status=task['status'], exp='error', name=task["name"]
|
||||
)
|
||||
)
|
||||
|
||||
@ -487,7 +488,7 @@ class FuelWebClient29(object):
|
||||
:param settings:
|
||||
:param port:
|
||||
:param configure_ssl:
|
||||
:param cgroup_data:
|
||||
:param release_id:
|
||||
:return: cluster_id
|
||||
"""
|
||||
logger.info('Create cluster with name %s', name)
|
||||
@ -1969,7 +1970,7 @@ class FuelWebClient29(object):
|
||||
cmd = 'ip netns exec {0} ip -4 ' \
|
||||
'-o address show {1}'.format(namespace, interface)
|
||||
else:
|
||||
cmd = 'ip -4 -o address show {1}'.format(interface)
|
||||
cmd = 'ip -4 -o address show {0}'.format(interface)
|
||||
|
||||
with self.get_ssh_for_node(node_name) as remote:
|
||||
ret = remote.check_call(cmd)
|
||||
@ -2843,14 +2844,17 @@ class FuelWebClient30(FuelWebClient29):
|
||||
self.environment.d_env.get_groups()}
|
||||
ng_nets = []
|
||||
for rack in self.environment.d_env.get_groups():
|
||||
nets = {'name': rack.name}
|
||||
nets['networks'] = {r.name: r.address_pool.name for
|
||||
r in rack.get_network_pools(
|
||||
name__in=['fuelweb_admin',
|
||||
'public',
|
||||
'management',
|
||||
'storage',
|
||||
'private'])}
|
||||
nets = {
|
||||
'name': rack.name,
|
||||
'networks': {
|
||||
r.name: r.address_pool.name
|
||||
for r in rack.get_network_pools(
|
||||
name__in=[
|
||||
'fuelweb_admin',
|
||||
'public',
|
||||
'management',
|
||||
'storage',
|
||||
'private'])}}
|
||||
ng_nets.append(nets)
|
||||
self.update_nodegroups(cluster_id=cluster_id,
|
||||
node_groups=ng)
|
||||
@ -3087,6 +3091,7 @@ class FuelWebClient30(FuelWebClient29):
|
||||
|
||||
# TODO(ddmitriev): this code will be removed after moving to fuel-devops3.0
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
if (distutils.version.LooseVersion(devops.__version__) <
|
||||
distutils.version.LooseVersion('3')):
|
||||
logger.info("Use FuelWebClient compatible to fuel-devops 2.9")
|
||||
|
@ -18,6 +18,7 @@ import json
|
||||
import re
|
||||
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib import request
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -21,6 +21,7 @@ import json
|
||||
from logging import DEBUG
|
||||
from optparse import OptionParser
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import urlopen
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -20,6 +20,7 @@ import optparse
|
||||
from xml.etree import ElementTree
|
||||
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -30,8 +30,11 @@ import json
|
||||
import time
|
||||
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import urlopen
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import Request
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -16,7 +16,9 @@ import os
|
||||
from proboscis import asserts
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import configparser
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import cStringIO
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -21,6 +21,7 @@ from proboscis.asserts import assert_true
|
||||
from proboscis import test
|
||||
import requests
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -24,7 +24,9 @@ from proboscis.asserts import assert_equal
|
||||
from proboscis.asserts import assert_true
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import urlopen
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.xmlrpc_client import ServerProxy
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -18,6 +18,7 @@ from proboscis.asserts import assert_equal
|
||||
from proboscis.asserts import assert_raises
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -21,6 +21,7 @@ from proboscis.asserts import assert_true
|
||||
from devops.error import TimeoutError
|
||||
from devops.helpers.helpers import wait
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
@ -108,8 +109,8 @@ class CommandLine(TestBasic):
|
||||
.format(took=took, task=task))
|
||||
assert_equal(
|
||||
task['status'], 'ready',
|
||||
"Task '{name}' has incorrect status. {} != {}".format(
|
||||
task['status'], 'ready', name=task["name"]
|
||||
"Task '{name}' has incorrect status. {status} != {exp}".format(
|
||||
status=task['status'], exp='ready', name=task["name"]
|
||||
)
|
||||
)
|
||||
|
||||
|
@ -17,6 +17,7 @@ from proboscis.asserts import fail
|
||||
from proboscis import test
|
||||
from proboscis import SkipTest
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -17,6 +17,7 @@ import random
|
||||
from proboscis import asserts
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -19,6 +19,7 @@ from proboscis.asserts import assert_raises
|
||||
from proboscis.asserts import assert_true
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -17,6 +17,7 @@ from proboscis.asserts import fail
|
||||
from proboscis import test
|
||||
from proboscis import SkipTest
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -21,6 +21,7 @@ import netaddr
|
||||
from proboscis import asserts
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
@ -118,6 +119,7 @@ class ServicesReconfiguration(TestBasic):
|
||||
else:
|
||||
new_range = [default_range[0] + number_excluded_ips + 1,
|
||||
default_range[1]]
|
||||
# noinspection PyUnresolvedReferences
|
||||
default_network["ip_ranges"][0] = [str(ip)
|
||||
for ip in new_range]
|
||||
|
||||
|
@ -15,7 +15,9 @@
|
||||
from proboscis import test
|
||||
from proboscis.asserts import assert_equal
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import http_client
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import urllib
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -19,6 +19,7 @@ from proboscis import test
|
||||
from proboscis.asserts import assert_is_not_none
|
||||
from proboscis.asserts import assert_true
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.request import urlopen
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
from proboscis import asserts
|
||||
from proboscis import test
|
||||
# pylint: disable=import-error
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves.urllib.error import HTTPError
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
@ -25,6 +25,7 @@ from proboscis.asserts import assert_not_equal
|
||||
from proboscis.asserts import assert_true
|
||||
from proboscis import SkipTest
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
import yaml
|
||||
|
@ -17,6 +17,7 @@ import time
|
||||
from proboscis import test
|
||||
from proboscis.asserts import assert_true
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
|
||||
|
@ -24,6 +24,7 @@ from proboscis import SkipTest
|
||||
from proboscis.asserts import assert_equal
|
||||
from proboscis.asserts import assert_true
|
||||
# pylint: disable=redefined-builtin
|
||||
# noinspection PyUnresolvedReferences
|
||||
from six.moves import xrange
|
||||
# pylint: enable=redefined-builtin
|
||||
|
||||
@ -46,6 +47,7 @@ from system_test.helpers.decorators import make_snapshot_if_step_fail
|
||||
|
||||
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
class PrepareActions(object):
|
||||
"""Base class with prepare actions
|
||||
|
||||
@ -157,8 +159,8 @@ class PrepareActions(object):
|
||||
dns_ext = ''.join(settings.EXTERNAL_DNS)
|
||||
hostname = ''.join((settings.FUEL_MASTER_HOSTNAME,
|
||||
settings.DNS_SUFFIX))
|
||||
user = settings.SSH_CREDENTIALS['login']
|
||||
password = settings.SSH_CREDENTIALS['password']
|
||||
user = settings.SSH_FUEL_CREDENTIALS['login']
|
||||
password = settings.SSH_FUEL_CREDENTIALS['password']
|
||||
generate_cloud_image_settings(cloud_image_settings_path, admin_network,
|
||||
interface_name, admin_ip, admin_netmask,
|
||||
gateway, dns, dns_ext,
|
||||
@ -225,6 +227,7 @@ class PrepareActions(object):
|
||||
snapshot_name = "ready_with_{}_slaves".format(slaves)
|
||||
self.env.revert_snapshot(snapshot_name)
|
||||
|
||||
# noinspection PyMethodParameters
|
||||
@nested_action
|
||||
def prepare_admin_node_with_slaves():
|
||||
"""Combine preparation steps in alias"""
|
||||
@ -236,6 +239,7 @@ class PrepareActions(object):
|
||||
]
|
||||
|
||||
|
||||
# noinspection PyUnresolvedReferences
|
||||
class BaseActions(PrepareActions, HealthCheckActions, PluginsActions):
|
||||
"""Basic actions for acceptance cases
|
||||
|
||||
|
@ -20,6 +20,7 @@ from system_test.helpers.decorators import make_snapshot_if_step_fail
|
||||
|
||||
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
class FuelMasterActions(object):
|
||||
"""Actions specific only to Fuel Master node
|
||||
|
||||
|
@ -21,6 +21,7 @@ from system_test.helpers.decorators import make_snapshot_if_step_fail
|
||||
|
||||
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
class HealthCheckActions(object):
|
||||
"""Basic actions for OSTF tests
|
||||
|
||||
|
@ -26,11 +26,13 @@ from system_test.helpers.decorators import make_snapshot_if_step_fail
|
||||
|
||||
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
class PluginsActions(object):
|
||||
|
||||
plugin_name = None
|
||||
plugin_path = None
|
||||
|
||||
# noinspection PyMethodParameters
|
||||
@nested_action
|
||||
def prepare_env_with_plugin():
|
||||
return [
|
||||
|
@ -31,6 +31,7 @@ from system_test.helpers.decorators import make_snapshot_if_step_fail
|
||||
|
||||
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
class StrengthActions(object):
|
||||
|
||||
destroyed_devops_nodes = []
|
||||
@ -110,6 +111,7 @@ class StrengthActions(object):
|
||||
self.destroyed_devops_nodes)
|
||||
|
||||
|
||||
# noinspection PyUnresolvedReferences
|
||||
class FillRootActions(object):
|
||||
|
||||
ostf_tests_should_failed = 0
|
||||
|
@ -29,6 +29,7 @@ from system_test.helpers.decorators import make_snapshot_if_step_fail
|
||||
|
||||
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
class VMwareActions(object):
|
||||
"""VMware vCenter/DVS related actions"""
|
||||
|
||||
|
@ -30,9 +30,10 @@ def cached_add_group(yamls):
|
||||
validate_config=True):
|
||||
"""Add user friendly group
|
||||
|
||||
:type group_name: str
|
||||
:type group: str
|
||||
:type systest_group: str
|
||||
:type config_name: str
|
||||
:type validate_config: bool
|
||||
|
||||
"""
|
||||
if validate_config and config_name not in yamls:
|
||||
|
@ -83,7 +83,7 @@ class ActionsFactory(object):
|
||||
actions_method = cls.get_actions()
|
||||
linear_order = []
|
||||
# pylint: disable=no-member
|
||||
|
||||
# noinspection PyUnresolvedReferences
|
||||
for action in cls.actions_order:
|
||||
try:
|
||||
action_method = actions_method[action]
|
||||
@ -98,6 +98,7 @@ class ActionsFactory(object):
|
||||
for (n, l) in cutted]
|
||||
cutted = ["Line {line_num:04d}: {line}".format(
|
||||
line_num=n, line=l) for (n, l) in cutted]
|
||||
# noinspection PyUnresolvedReferences
|
||||
raise LookupError("Class {} orders to run '{}' action as {} "
|
||||
"step,\n\tbut action method doesn't exist "
|
||||
"in class.\nLook at '{}':\n\n{}".format(
|
||||
@ -206,7 +207,9 @@ class ActionsFactory(object):
|
||||
|
||||
# Generate test case groups
|
||||
# pylint: disable=no-member
|
||||
# noinspection PyUnresolvedReferences
|
||||
groups = ['{}({})'.format(g, case_group) for g in cls._base_groups]
|
||||
# noinspection PyUnresolvedReferences
|
||||
groups = cls._base_groups + groups
|
||||
# pylint: enable=no-member
|
||||
|
||||
|
@ -39,7 +39,7 @@ def make_snapshot_if_step_fail(func):
|
||||
try:
|
||||
result = func(*args, **kwargs)
|
||||
except SkipTest:
|
||||
raise SkipTest()
|
||||
raise
|
||||
except Exception:
|
||||
name = 'error_%s' % func.__name__
|
||||
case_name = getattr(func, '_base_class', None)
|
||||
|
@ -137,7 +137,7 @@ GlobalVariables() {
|
||||
|
||||
GetoptsVariables() {
|
||||
while getopts ":w:j:i:t:o:a:A:m:U:r:b:V:l:LdkKe:v:h" opt; do
|
||||
case $opt in
|
||||
case ${opt} in
|
||||
w)
|
||||
WORKSPACE="${OPTARG}"
|
||||
;;
|
||||
@ -202,12 +202,12 @@ GetoptsVariables() {
|
||||
\?)
|
||||
echo "Invalid option: -$OPTARG"
|
||||
ShowHelp
|
||||
exit $INVALIDOPTS_ERR
|
||||
exit ${INVALIDOPTS_ERR}
|
||||
;;
|
||||
:)
|
||||
echo "Option -$OPTARG requires an argument."
|
||||
ShowHelp
|
||||
exit $INVALIDOPTS_ERR
|
||||
exit ${INVALIDOPTS_ERR}
|
||||
;;
|
||||
esac
|
||||
done
|
||||
@ -217,22 +217,22 @@ CheckVariables() {
|
||||
|
||||
if [ -z "${JOB_NAME}" ]; then
|
||||
echo "Error! JOB_NAME is not set!"
|
||||
exit $NOJOBNAME_ERR
|
||||
exit ${NOJOBNAME_ERR}
|
||||
fi
|
||||
|
||||
if [ -z "${ISO_PATH}" ]; then
|
||||
echo "Error! ISO_PATH is not set!"
|
||||
exit $NOISOPATH_ERR
|
||||
exit ${NOISOPATH_ERR}
|
||||
fi
|
||||
|
||||
if [ -z "${TASK_NAME}" ]; then
|
||||
echo "Error! TASK_NAME is not set!"
|
||||
exit $NOTASKNAME_ERR
|
||||
exit ${NOTASKNAME_ERR}
|
||||
fi
|
||||
|
||||
if [ -z "${WORKSPACE}" ]; then
|
||||
echo "Error! WORKSPACE is not set!"
|
||||
exit $NOWORKSPACE_ERR
|
||||
exit ${NOWORKSPACE_ERR}
|
||||
fi
|
||||
}
|
||||
|
||||
@ -249,7 +249,7 @@ MakeISO() {
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error! Deep clean failed!"
|
||||
exit $DEEPCLEAN_ERR
|
||||
exit ${DEEPCLEAN_ERR}
|
||||
fi
|
||||
|
||||
# create ISO file
|
||||
@ -263,7 +263,7 @@ MakeISO() {
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error making ISO!"
|
||||
exit $MAKEISO_ERR
|
||||
exit ${MAKEISO_ERR}
|
||||
fi
|
||||
|
||||
if [ "${DRY_RUN}" = "yes" ]; then
|
||||
@ -273,7 +273,7 @@ MakeISO() {
|
||||
# check that ISO file exists
|
||||
if [ ! -f "${ISO}" ]; then
|
||||
echo "Error! ISO file not found!"
|
||||
exit $NOISOFOUND_ERR
|
||||
exit ${NOISOFOUND_ERR}
|
||||
fi
|
||||
fi
|
||||
|
||||
@ -294,7 +294,7 @@ MakeISO() {
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error! Copy ${ISO} to ${NEW_BUILD_ISO_PATH} failed!"
|
||||
exit $COPYISO_ERR
|
||||
exit ${COPYISO_ERR}
|
||||
fi
|
||||
|
||||
# create symlink to the last built ISO file
|
||||
@ -307,7 +307,7 @@ MakeISO() {
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error! Create symlink from ${NEW_BUILD_ISO_PATH} to ${ISO_PATH} failed!"
|
||||
exit $SYMLINKISO_ERR
|
||||
exit ${SYMLINKISO_ERR}
|
||||
fi
|
||||
else
|
||||
# just copy file to shared dir
|
||||
@ -320,13 +320,13 @@ MakeISO() {
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error! Copy ${ISO} to ${ISO_PATH} failed!"
|
||||
exit $COPYISO_ERR
|
||||
exit ${COPYISO_ERR}
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error! Copy ISO from ${ISO} to ${ISO_PATH} failed!"
|
||||
exit $COPYISO_ERR
|
||||
exit ${COPYISO_ERR}
|
||||
fi
|
||||
echo "Finished building ISO: ${ISO_PATH}"
|
||||
exit 0
|
||||
@ -340,7 +340,7 @@ CdWorkSpace() {
|
||||
|
||||
if [ "${ec}" -gt "0" ]; then
|
||||
echo "Error! Cannot cd to WORKSPACE!"
|
||||
exit $CDWORKSPACE_ERR
|
||||
exit ${CDWORKSPACE_ERR}
|
||||
fi
|
||||
else
|
||||
echo cd "${WORKSPACE}"
|
||||
@ -354,7 +354,7 @@ RunTest() {
|
||||
if [ ! -f "${ISO_PATH}" ]; then
|
||||
if [ -z "${ISO_URL}" -a "${DRY_RUN}" != "yes" ]; then
|
||||
echo "Error! File ${ISO_PATH} not found and no ISO_URL (-U key) for downloading!"
|
||||
exit $NOISOFOUND_ERR
|
||||
exit ${NOISOFOUND_ERR}
|
||||
else
|
||||
if [ "${DRY_RUN}" = "yes" ]; then
|
||||
echo wget -c ${ISO_URL} -O ${ISO_PATH}
|
||||
@ -362,9 +362,9 @@ RunTest() {
|
||||
echo "No ${ISO_PATH} found. Trying to download file."
|
||||
wget -c ${ISO_URL} -O ${ISO_PATH}
|
||||
rc=$?
|
||||
if [ $rc -ne 0 ]; then
|
||||
if [ ${rc} -ne 0 ]; then
|
||||
echo "Failed to fetch ISO from ${ISO_URL}"
|
||||
exit $ISODOWNLOAD_ERR
|
||||
exit ${ISODOWNLOAD_ERR}
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
@ -377,9 +377,9 @@ RunTest() {
|
||||
# run python virtualenv
|
||||
if [ "${VENV}" = "yes" ]; then
|
||||
if [ "${DRY_RUN}" = "yes" ]; then
|
||||
echo . $VENV_PATH/bin/activate
|
||||
echo . ${VENV_PATH}/bin/activate
|
||||
else
|
||||
. $VENV_PATH/bin/activate
|
||||
. ${VENV_PATH}/bin/activate
|
||||
fi
|
||||
fi
|
||||
|
||||
@ -392,7 +392,7 @@ RunTest() {
|
||||
fi
|
||||
|
||||
if [ ! -f "$LOGS_DIR" ]; then
|
||||
mkdir -p $LOGS_DIR
|
||||
mkdir -p ${LOGS_DIR}
|
||||
fi
|
||||
|
||||
export ENV_NAME
|
||||
@ -468,7 +468,7 @@ RouteTasks() {
|
||||
;;
|
||||
*)
|
||||
echo "Unknown task: ${TASK_NAME}!"
|
||||
exit $INVALIDTASK_ERR
|
||||
exit ${INVALIDTASK_ERR}
|
||||
;;
|
||||
esac
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user