Skip to content

Commit

Permalink
Merge pull request #133 from CiscoTestAutomation/release_23.9
Browse files Browse the repository at this point in the history
Releasing v23.9
  • Loading branch information
Taarini authored Sep 27, 2023
2 parents 3779690 + 678fa81 commit 2555acd
Show file tree
Hide file tree
Showing 257 changed files with 12,742 additions and 993 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ CYTHON_CMD = compileAll
RELATED_PKGS = genie.libs.health genie.libs.clean genie.libs.conf genie.libs.ops genie.libs.robot genie.libs.sdk
RELATED_PKGS += genie.libs.filetransferutils
# pinning the version of pysnmp and pyasn1 to fix the type error when using execute_power_cycle_device api
DEPENDENCIES = restview psutil==5.9.2 Sphinx wheel asynctest pysnmp==4.4.12 pyasn1==0.4.8
DEPENDENCIES = restview psutil==5.9.2 Sphinx wheel asynctest pysnmp-lextudio==5.0.29 pyasn1==0.4.8
DEPENDENCIES += sphinx-rtd-theme==1.1.0 pyftpdlib tftpy\<0.8.1 robotframework
# aiohttp-swagger 1.0.15 requires jinja2==2.11.2 and markupsafe==1.1.1
DEPENDENCIES += Cython requests ruamel.yaml grpcio protobuf jinja2==2.11.2 markupsafe==1.1.1
DEPENDENCIES += Cython==3.0.0 requests ruamel.yaml grpcio protobuf jinja2==2.11.2 markupsafe==1.1.1
# aiohttp requires charset-normalizer<3.0.0
DEPENDENCIES += charset-normalizer==2.1.1
# Internal variables.
Expand All @@ -64,6 +64,7 @@ ALL_PKGS = $(PYPI_PKGS)
.PHONY: help docs distribute_docs clean check devnet\
develop undevelop distribute distribute_staging distribute_staging_external\
test install_build_deps uninstall_build_deps $(ALL_PKGS) $(DEV_PKGS)
test install_build_deps uninstall_build_deps $(ALL_PKGS) $(DEV_PKGS)
$(UNDEV_PKGS)

help:
Expand Down
17 changes: 17 additions & 0 deletions pkgs/clean-pkg/changelog/2023/september.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
--------------------------------------------------------------------------------
New
--------------------------------------------------------------------------------

* iosxe
* Added
* Class ConfigureReplace in clean stages


--------------------------------------------------------------------------------
Fix
--------------------------------------------------------------------------------

* iosxe
* Added `verify_running_image` check to ``install_image`` clean stage


29 changes: 19 additions & 10 deletions pkgs/clean-pkg/sdk_generator/output/github_clean.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkgs/clean-pkg/src/genie/libs/clean/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'''

# metadata
__version__ = '23.8'
__version__ = '23.9'
__author__ = 'Cisco Systems Inc.'
__contact__ = ['[email protected]', '[email protected]']
__copyright__ = 'Copyright (c) 2019, Cisco Systems Inc.'
Expand Down
117 changes: 107 additions & 10 deletions pkgs/clean-pkg/src/genie/libs/clean/stages/iosxe/stages.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,34 @@
# Python
import re
import time
import shutil
import os.path
import fnmatch
import ipaddress
from typing import List
import logging
import time
from ipaddress import IPv4Address, IPv6Address, IPv4Interface, IPv6Interface
from ipaddress import IPv4Interface, IPv6Interface

# pyATS
from pyats.async_ import pcall
from pyats.utils.fileutils import FileUtils
from pyats.utils.fileutils import FileUtils

# Genie
from genie.abstract import Lookup
from genie.libs import clean
from genie.libs.clean.recovery.recovery import _disconnect_reconnect
from genie.metaparser.util.schemaengine import Optional, Required, Any
from genie.utils import Dq
from genie.metaparser.util.schemaengine import Optional, Required, Any, Or, ListOf
from genie.utils import Dq
from genie.utils.timeout import Timeout
from genie.libs.clean import BaseStage
from genie.libs.sdk.libs.abstracted_libs.iosxe.subsection import get_default_dir
from genie.libs.clean.utils import (
_apply_configuration,
find_clean_variable,
verify_num_images_provided,
remove_string_from_image,
raise_)

# Unicon
from unicon.eal.dialogs import Statement, Dialog
from unicon.core.errors import SubCommandFailure

# Logger
log = logging.getLogger(__name__)
Expand Down Expand Up @@ -529,6 +525,7 @@ class InstallImage(BaseStage):
directory (str): directory where packages.conf is created
save_system_config (bool, optional): Whether or not to save the system
config if it was modified. Defaults to False.
Expand All @@ -538,6 +535,10 @@ class InstallImage(BaseStage):
reload_timeout (int, optional): Maximum time in seconds to wait for reload
process to finish. Defaults to 800.
verify_running_image (bool, optional): Compare the image filename with the running
image version on device. If a match is found, the stage will be skipped.
Defaults to True.
reload_service_args (optional):
reload_creds (str, optional): The credential to use after the reload is
Expand Down Expand Up @@ -576,6 +577,8 @@ class InstallImage(BaseStage):
}
ISSU = False
SKIP_BOOT_VARIABLE = False
VERIFY_RUNNING_IMAGE = True

# ============
# Stage Schema
# ============
Expand All @@ -587,6 +590,7 @@ class InstallImage(BaseStage):
Optional('reload_timeout'): int,
Optional('issu'): bool,
Optional('skip_boot_variable'): bool,
Optional('verify_running_image', description="Compare the image filename with the running image version on device. If a match is found, the stage will be skipped", default=VERIFY_RUNNING_IMAGE): bool,
Optional('reload_service_args'): {
Optional('reload_creds'): str,
Optional('prompt_recovery'): bool,
Expand All @@ -599,13 +603,38 @@ class InstallImage(BaseStage):
# Execution order of Stage steps
# ==============================
exec_order = [
'verify_running_image',
'delete_boot_variable',
'set_boot_variable',
'save_running_config',
'verify_boot_variable',
'install_image'
]

def verify_running_image(self, steps, device, images, verify_running_image=VERIFY_RUNNING_IMAGE):
# Check the running image
if verify_running_image:
# Verify the image running in the device
with steps.start("Verify the image running in the device") as step:
try:
out = device.parse("show version")
except Exception as e:
step.failed("Failed to verify the running image")

# if the device is in bundle mode this step will not be executed.
if "BUNDLE" in Dq(out).get_values("mode"):
step.skipped(f"The device is in bundle mode. Skipping the verify running image check.")
else:
# To get the image version
image_version = out.get("version", {}).get("xe_version", {})
image_match = re.search(image_version, images[0])
if image_match:
image_mapping = self.history['InstallImage'].parameters.setdefault('image_mapping', {})
system_image = device.api.get_running_image()
image_mapping.update({images[0]: system_image})
self.skipped(f"The image file provided is same as the current running image {image_version} on the device.\n\
Skipping the install image stage.")

def delete_boot_variable(self, steps, device, issu=ISSU, skip_boot_variable=SKIP_BOOT_VARIABLE):
with steps.start("Delete all boot variables") as step:
if issu or skip_boot_variable:
Expand Down Expand Up @@ -936,6 +965,7 @@ def reload(self, steps, device, reload_service_args=None):
continue_timer=False),
])


self.reload_service_args.update({
'reply': reload_dialog
})
Expand Down Expand Up @@ -1083,6 +1113,7 @@ class RommonBoot(BaseStage):
tftp_server (str, optional): Tftp server that is reachable with management interface
recovery_password (str): Enable password for device
required after bootup. Defaults to None.
Expand All @@ -1101,6 +1132,7 @@ class RommonBoot(BaseStage):
config_reg_timeout (int, optional): Max time to set config-register.
Defaults to 30.
rommon_timeout (int, optional): Timeout after bringing the device to rommon. Default to 15 sec.
reconnect_timeout (int, optional): Timeout to reconnect the device after booting. Default to 90 sec.
Expand Down Expand Up @@ -1128,11 +1160,13 @@ class RommonBoot(BaseStage):
testbed:
name:
name:
passwords:
tacacs: test
enable: test
servers:
tftp:
tftp:
address: 10.x.x.x
credentials:
Expand Down Expand Up @@ -1216,6 +1250,7 @@ def go_to_rommon(self, steps, device, rommon_timeout=ROMMON_TIMEOUT):
except Exception as e:
step.failed("Failed to bring device to rommon!", from_exception=e)


log.info("Device is reloading")
device.destroy_all()

Expand All @@ -1225,10 +1260,12 @@ def rommon_boot(self, steps, device, image, tftp=None, timeout=TIMEOUT, recovery
if not tftp:
tftp = {}


# Check if management attribute in device object, if not set to empty dict
if not hasattr(device, 'management'):
setattr(device, "management", {})


# Getting the tftp information, if the info not provided by user, it takes from testbed
address = device.management.get('address', {}).get('ipv4', '')
if isinstance(address, IPv4Interface):
Expand All @@ -1248,6 +1285,7 @@ def rommon_boot(self, steps, device, image, tftp=None, timeout=TIMEOUT, recovery
# setting tftp empty if ttfp information is missing
tftp = {}


# Need to instantiate to get the device.start
# The device.start only works because of a|b
device.instantiate(connection_timeout=timeout)
Expand Down Expand Up @@ -1305,6 +1343,7 @@ def reconnect(self, steps, device, reconnect_timeout=RECONNECT_TIMEOUT):
def enable_device_autoboot(self, steps, device):
with steps.start("Enable autoboot after reconnect") as step:


if hasattr(device.api, "configure_autoboot"):
try:
device.api.configure_autoboot()
Expand Down Expand Up @@ -1604,11 +1643,15 @@ def copy_to_device(self, steps, device, origin, destination,
step.skipped(f"The device is in bundle mode and install_image stage is passed in clean file. Skipping the verify running image check.")
else:
# To get the image version
image_version = out.get("version", {}).get("xe_version", {})
image_version = out.get("version", {}).get("xe_version", "")
image_match = re.search(image_version, file)
if image_match:
dest_file_path = out.get("version", {}).get('system_image', "")
if 'packages.conf' not in dest_file_path:
image_mapping = self.history['CopyToDevice'].parameters.setdefault('image_mapping', {})
image_mapping.update({origin['files'][index]: dest_file_path})
self.skipped(f"The image file provided is same as the current running image {image_version} on the device.\n\
Skipping the copy process.")
Setting the destination image to {dest_file_path}. Skipping the copy process.")

if server:
# Get filesize of image files on remote server
Expand Down Expand Up @@ -1937,3 +1980,57 @@ def copy_to_device(self, steps, device, origin, destination,
"File has been copied to device {}.Cannot verify integrity as "
"the original file size is unknown.".format(device.name))

class ConfigureReplace(BaseStage):
"""This stage does a configure replace on the device."""

# =================
# Argument Defaults
# =================
CONFIG_REPLACE_OPTIONS = ""
TIMEOUT = 60
KNOWN_WARNINGS = None

# ============
# Stage Schema
# ============
schema = {
'path': str,
'file': str,
Optional('config_replace_options'): str,
Optional('known_warnings'): list,
Optional('timeout'): int,
}

# ==============================
# Execution order of Stage steps
# ==============================
exec_order = [
'configure_replace',
]

def configure_replace(self, steps, device, path, file, config_replace_options=CONFIG_REPLACE_OPTIONS, known_warnings=KNOWN_WARNINGS, timeout=TIMEOUT):
"""This step does a configure replace on the device."""

if known_warnings is None:
known_warnings = []

with steps.start(f"Configure replace on '{device.name}'") as step:
try:
output = device.api.configure_replace(path=path, file=file, config_replace_options=config_replace_options, timeout=timeout)
pattern = r'\*+\n*!List of Rollback Commands:(?P<rejected_cmds>.*?)end\n\*+'
if re.search(pattern, output, re.DOTALL):
rejected_cmds = re.search(pattern, output, re.DOTALL).group('rejected_cmds').strip().split('\n')
else:
rejected_cmds = []
if rejected_cmds:
if set(rejected_cmds).issubset(set(known_warnings)):
step.passx("Configure replace warnings are expected")
else:
log.warning(f"Rejected commands: {rejected_cmds}")
log.warning(f"Unexpected warnings: {set(rejected_cmds) - set(known_warnings)}")
step.failed("Configure replace warnings are not expected")
else:
step.passed("Configure replace passed without rejection")

except Exception as e:
step.failed("Configure replace failed", from_exception=e)
Loading

0 comments on commit 2555acd

Please sign in to comment.