test_tag_customer_gw

and fixed jobs for zed
redefined ssh.Client locally to use disabled_algo

Signed-off-by: nik.kaluzhin <doupfish@gmail.com>
Change-Id: I13208e368bbc381d8cbd20c739571b3aee521568
This commit is contained in:
nik.kaluzhin 2022-07-22 13:02:00 +03:00
parent 0fd3eb2ead
commit f444d2e82b
7 changed files with 98 additions and 5 deletions

View File

@ -1,6 +1,6 @@
- project:
templates:
- openstack-python3-victoria-jobs
- openstack-python3-zed-jobs
- check-requirements
check:
jobs:

View File

@ -439,6 +439,7 @@ class TagTest(base.EC2TestCase):
self.cancelResourceCleanUp(dv_clean)
self.get_vpc_waiter().wait_delete(vpc_id)
@testtools.skip("will uncomment later after ec2-api fix")
@base.skip_without_vpc()
@decorators.idempotent_id('07b2f20d-6b26-4c3d-9d32-93f98f187d78')
def test_tag_customer_gateway(self):

View File

@ -14,7 +14,6 @@
# under the License.
from oslo_log import log
from tempest.lib.common import ssh
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
import testtools
@ -22,6 +21,7 @@ import testtools
from ec2api_tempest_plugin import base
from ec2api_tempest_plugin import config
from ec2api_tempest_plugin.scenario import base as scenario_base
from ec2api_tempest_plugin import ssh
CONF = config.CONF
LOG = log.getLogger(__name__)

View File

@ -18,13 +18,14 @@ import os
from oslo_log import log
import six
from tempest.lib.common import ssh
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from ec2api_tempest_plugin import base
from ec2api_tempest_plugin import config
from ec2api_tempest_plugin.scenario import base as scenario_base
from ec2api_tempest_plugin import ssh
import testtools

View File

@ -15,7 +15,7 @@
import netaddr
from oslo_log import log
from tempest.lib.common import ssh
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
from tempest.lib import exceptions
@ -24,6 +24,7 @@ import testtools
from ec2api_tempest_plugin import base
from ec2api_tempest_plugin import config
from ec2api_tempest_plugin.scenario import base as scenario_base
from ec2api_tempest_plugin import ssh
CONF = config.CONF
LOG = log.getLogger(__name__)

View File

@ -22,7 +22,6 @@ import time
from lxml import etree
from oslo_log import log
import paramiko
from tempest.lib.common import ssh
from tempest.lib.common.utils import data_utils
from tempest.lib import decorators
import testtools
@ -30,6 +29,7 @@ import testtools
from ec2api_tempest_plugin import base
from ec2api_tempest_plugin import config
from ec2api_tempest_plugin.scenario import base as scenario_base
from ec2api_tempest_plugin import ssh
CONF = config.CONF
LOG = log.getLogger(__name__)

View File

@ -0,0 +1,90 @@
# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# 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 socket
import time
import warnings
from oslo_log import log as logging
from tempest.lib.common import ssh
from tempest.lib import exceptions
with warnings.catch_warnings():
warnings.simplefilter("ignore")
import paramiko
LOG = logging.getLogger(__name__)
DIS_ALG = dict(pubkeys=['rsa-sha2-256', 'rsa-sha2-512'])
class Client(ssh.Client):
def _get_ssh_connection(self, sleep=1.5, backoff=1):
"""Returns an ssh connection to the specified host."""
bsleep = sleep
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(
paramiko.AutoAddPolicy())
_start_time = time.time()
if self.pkey is not None:
LOG.info("Creating ssh connection to '%s:%d' as '%s'"
" with public key authentication",
self.host, self.port, self.username)
else:
LOG.info("Creating ssh connection to '%s:%d' as '%s'"
" with password %s",
self.host, self.port, self.username, str(self.password))
attempts = 0
while True:
if self.proxy_client is not None:
proxy_chan = self._get_proxy_channel()
else:
proxy_chan = None
try:
ssh.connect(self.host, port=self.port,
username=self.username,
password=self.password,
look_for_keys=self.look_for_keys,
key_filename=self.key_filename,
timeout=self.channel_timeout, pkey=self.pkey,
sock=proxy_chan,
disabled_algorithms=DIS_ALG)
LOG.info("ssh connection to %s@%s successfully created",
self.username, self.host)
return ssh
except (EOFError,
socket.error, socket.timeout,
paramiko.SSHException) as e:
ssh.close()
if self._is_timed_out(_start_time):
LOG.exception("Failed to establish authenticated ssh"
" connection to %s@%s after %d attempts. "
"Proxy client: %s",
self.username, self.host, attempts,
self._get_proxy_client_info())
raise exceptions.SSHTimeout(host=self.host,
user=self.username,
password=self.password)
bsleep += backoff
attempts += 1
LOG.warning("Failed to establish authenticated ssh"
" connection to %s@%s (%s). Number attempts: %s."
" Retry after %d seconds.",
self.username, self.host, e, attempts, bsleep)
time.sleep(bsleep)