class SnapshotCompare
Class comparing snapshots of Firewall Nodes.
This object can be used to compare two Firewall snapshots made with the
CheckFirewall.run_snapshots()
method and present results of this comparison. Its main purpose is to compare two snapshots made with the
CheckFirewall
class. However, the code is
generic enough to compare any two dictionaries as long as they follow the schema below:
{
'root_key': {
'key': value
}
}
Where:
root_key
has to be present and mapped to a method in theself._functions_mapping
variable in order to be recognized during a comparison.value
can be either of a simple type (str
,int
,float
,bool
) or a nesteddict
.
Attributes
_functions_mapping (dict)
: Internal variable containing the map of all valid report types mapped to the specific methods.This mapping is used to verify the requested report and to map the report to an actual method that will eventually run. Keys in this dictionary are report names as defined in the
SnapType
class. Essentially, these are the same values that one would specify when creating a snapshot with theCheckFirewall.run_snapshots()
method. Values are references to the methods that will run.
SnapshotCompare.__init__
def __init__(left_snapshot: Dict[str, Union[str, dict]],
right_snapshot: Dict[str, Union[str, dict]]) -> None
SnapshotCompare constructor.
Initializes an object by storing both snapshots to be compared.
Parameters
- left_snapshot (
dict
): First snapshot dictionary to be compared, usually the older one, for example a pre-upgrade snapshot. - right_snapshot (
dict
): Second snapshot dictionary to be compared, usually the newer one, for example a post-upgrade snapshot.
SnapshotCompare.compare_snapshots
def compare_snapshots(
reports: Optional[List[Union[dict, str]]] = None) -> Dict[str, dict]
A method that triggers the actual snapshot comparison.
This is a single point of entry to generate a comparison report. It takes both reports stored in the class object and
compares areas specified in the reports
parameter.
Refer to the documentation on reporting for details on the currently available snapshot areas and optional parameters that can be configured for them.
Parameters
reports (
list, optional
): A list of reports - snapshot state areas with optional configuration. This parameter follows thedialect
ofConfigParser
class.The reports list is essentially the list of keys present in the snapshots. These keys, however, are the state areas specified when the snapshot is made with the
CheckFirewall.run_snapshots()
method. This means that the reports list is basically the list of state areas. The only difference is that for reports, it is possible to specify an additional configuration. This means that the list can be specified in two ways, asstr
ordict
(in the same manner as forCheckFirewall.run_readiness_checks()
).For the elements specified as
str
- the element value is the name of the report (state area),dict
- the element contains the report name (state area) as the key and report configuration as the element value.
Raises
WrongDataTypeException
: An exception is raised when the configuration in a data type is different thanstr
ordict
.
Returns
dict
: Result of comparison in a form of the Python dictionary. Keys in this dictionary are again state areas where values
depend on the actual comparison method that was run.
SnapshotCompare.key_checker
@staticmethod
def key_checker(left_dict: dict, right_dict: dict, key: Union[str, set,
list]) -> None
The static method to check if a key or a list/set of keys is available in both dictionaries.
This method looks for a given key or list/set of keys in two dictionaries. Its main purpose is to assure that when comparing a key-value pair from two dictionaries, it actually exists in both.
Parameters
- left_dict (
dict
): 1st dictionary to verify. - right_dict (
dict
): 2nd dictionary to verify. - key (
str, set, list
): Key name or set/list of keys to check.
Raises
MissingKeyException
: when key is not available in at least one snapshot.
SnapshotCompare.calculate_change_percentage
@staticmethod
def calculate_change_percentage(
first_value: Union[str, int], second_value: Union[str, int],
threshold: Union[str, float]) -> Dict[str, Union[bool, float]]
The static method to compare differences between values against a given threshold.
Values to be compared should be the int
or str
representation of int
. This method is used when comparing a count of
elements so a floating point value here is not expected. The threshold value, on the other hand, should be the float
or
str
representation of float
. This is a percentage value.
The format of the returned value is the following:
{
passed: bool,
change_percentage: float,
change_threshold: float
}
Where:
passed
is an information if the test passed:True
if difference is lower or equal to threshold,False
otherwise,
- the actual difference represented as percentage,
- the originally requested threshold (for reporting purposes).
Parameters
- first_value (
int, str
): First value to compare. - second_value (
int, str
): Second value to compare. - threshold (
float, str
): Maximal difference between values given as percentage.
Raises
WrongDataTypeException
: An exception is raised when the threshold value is not between0
and100
(typical percentage boundaries).
Returns
dict
: A dictionary with the comparison results.
SnapshotCompare.calculate_diff_on_dicts
@staticmethod
def calculate_diff_on_dicts(
left_side_to_compare: Dict[str, Union[str, dict]],
right_side_to_compare: Dict[str, Union[str, dict]],
properties: Optional[List[str]] = None) -> Dict[str, dict]
The static method to calculate a difference between two dictionaries.
By default dictionaries are compared by going down all nested levels. It is possible to configure which keys on each
level should be compared (by default we compare all available keys). This is done using the properties
parameter.
It's a list of keys that can be compared or skipped on each level. For example, when comparing route tables snapshots are
formatted like:
{
"routes": {
"default_0.0.0.0/0_ethernet1/3_10.26.129.129": {
"virtual-router": "default",
"destination": "0.0.0.0/0",
"nexthop": "10.26.129.129",
"metric": "10",
"flags": "A S",
"age": null,
"interface": "ethernet1/3",
"route-table": "unicast"
},
...
}
}
The keys to process here can be:
default_0.0.0.0/0_ethernet1/3_10.26.129.129
,virtual-router
,destination
,nexthop
,metric
,flags
,age
,interface
,route-table
.
This list follows ConfigParser
dialect
.
The difference between dictionaries is calculated from three perspectives:
- are there any keys missing in the 2nd (right) dictionary that are present in the 1st (left) - this is represented
under the
missing
key in the results. - are there any keys in the 2nd (right) dictionary that are not present in the 1st (left) - this is represented under
the
added
key in the results. - for the keys that are present in both dictionaries, are values for these keys the same or different - this is
represented under the
changed
key in the results.
This is a recursive method. When calculating changed values, if a value for the key is dict
, we run the method
again on that dictionary - we go down one level in the nested structure. We do that to a point where the value is one of
str
, int
type or None. Therefore, when the final comparison results are presented, the changed
key usually contains
a nested results structure. This means it contains a dictionary with the missing
, added
, and changed
keys.
Each comparison perspective contains the passed
property that immediately informs if this comparison gave any results
(False
) or not (True
).
properties
can be defined for any level of nested dictionaries which implies:
- Allow comparison of specific parent dictionaries.
- Skip specific parent dictionaries.
- Allow comparison/exclusion of specific sub-dictionaries or keys only.
- If given keys have parent-child relationship then all keys for a matching parent are compared. Meaning it doesn’t do an "AND" operation on the given properities for nested dictionaries.
Also note that missing/added keys in parent dictionaries are not reported for comparison when specific keys
are requested to be compared with the properties
parameter.
Example
Let's assume we want to compare two dictionaries of the following structure:
left_dict = {
'root_key1'= {
'key'= 'value'
}
'root_key2'= {
'key'= 'value'
}
}
right_dict = {
'root_key2'= {
'key'= 'other_value'
}
}
The result of this comparison would look like this:
{
"missing": {
"passed": false,
"missing_keys": [
"root_key1"
]
},
"added": {
"passed": true,
"added_keys": []
},
"changed": {
"passed": false,
"changed_raw": {
"root_key2": {
"missing": {
"passed": true,
"missing_keys": []
},
"added": {
"passed": true,
"added_keys": []
},
"changed": {
"passed": false,
"changed_raw": {
"key": {
"left_snap": "value",
"right_snap": "other_value"
}
}
},
"passed": false
}
}
}
Parameters
- left_side_to_compare (
dict
): 1st dictionary to compare. When this method is triggered bycompare_snapshots()
, the dictionary comes from theself.left_snap
snapshot. - right_side_to_compare (
dict
): 2nd dictionary to compare, comes from the self.right_snap snapshot. When this method is triggered bycompare_snapshots()
, the dictionary comes from theself.right_snap
snapshot. - properties (
list(str), optional
): The list of properties used to compare two dictionaries.
Raises
WrongDataTypeException
: Thrown when one of theproperties
elements has a wrong data type.
Returns
dict
: Summary of the differences between dictionaries. The output has the following format:
{
'missing': {
'passed': True,
'missing_keys': []
},
'added': {
'passed': True,
'added_keys': []
},
'changed': {
'passed': True,
'changed_raw': {}
}
}
SnapshotCompare.calculate_passed
@staticmethod
def calculate_passed(result: Dict[str, Union[dict, str]]) -> None
The static method to calculate the upper level passed
value.
When two snapshots are compared, a dictionary that is the result of this comparison is structured as in the following
get_diff_and_threshold()
method: each root key contains a dictionary that has
a structure returned by the calculate_diff_on_dicts()
method.
This method takes a dictionary under the root key and calculates the passed
flag based on the all passed
flags in
that dictionary. This provides a quick way of finding out if any comparison made on data under a root key failed or not.
To illustrate that, the passed
flag added by this method is highlighted:
{
'added': {
'added_keys': [],
'passed': True
},
'changed': {
'changed_raw': {},
'passed': True
},
'missing': {
'missing_keys': [
'default_0.0.0.0/0_ethernet1/3_10.26.129.129'
],
'passed': False
},
'passed': False
}
This method operates on the passed dictionary directly.
Parameters
- result (
dict
): A dictionary for which thepassed
property should be calculated.
SnapshotCompare.get_diff_and_threshold
def get_diff_and_threshold(
report_type: str,
properties: Optional[List[str]] = None,
count_change_threshold: Optional[Union[int, float]] = None
) -> Optional[Dict[str, Optional[Union[bool, dict]]]]
The generic snapshot comparison method.
The generic method to compare two snapshots of a given type. It is meant to fit most of the comparison cases.
It is capable of calculating both - a difference between two snapshots and the change count in the elements against a
given threshold. The 1st calculation is done by the
calculate_diff_on_dicts()
method, the 2nd - internally.
The changed elements count does not compare the count of elements in each snapshot. This value represents the number of actual changes, so elements added, missing and changed. This is compared against the number of elements in the left snapshot as this one is usually the 1st one taken and it's treated as a source of truth.
The changed elements count is presented as a percentage. In scenarios where the right snapshot has more elements then the left one, it can give values greater than 100%.
This method produces a complex set of nested dictionaries. Each level contains the passed
flag indicating if the
comparison of a particular type or for a particular level failed or not, and the actual comparison results.
An example for the route tables, crafted in a way that almost each level fails:
{
"added": {
"added_keys": [
"default_10.26.129.0/25_ethernet1/2_10.26.129.1",
"default_168.63.129.16/32_ethernet1/3_10.26.129.129"
],
"passed": "False"
},
"missing": {
"missing_keys": [
"default_0.0.0.0/0_ethernet1/3_10.26.129.129"
],
"passed": "False"
},
"changed": {
"changed_raw": {
"default_10.26.130.0/25_ethernet1/2_10.26.129.1": {
"added": {
"added_keys": [],
"passed": "True"
},
"missing": {
"missing_keys": [],
"passed": "True"
},
"changed": {
"changed_raw": {
"flags": {
"left_snap": "A S",
"right_snap": "A"
}
},
"passed": "False"
},
"passed": "False"
}
},
"passed": "False"
},
"count_change_percentage": {
"change_percentage": 33.33,
"change_threshold": 1,
"passed": "False"
},
"passed": "False"
}
In the example above, you can also see a nested dictionary produced by the
calculate_diff_on_dicts()
method under changed.changed_raw
.
Parameters
- report_type (
str
): Name of report (type) that has to be compared. Basically this is a snapshot state area, for examplenics
,routes
, etc. - properties (
list(str), optional
): (defaults toNone
) An optional list of properties to include or exclude when comparing snapshots. This parameter is passed directly to thecalculate_diff_on_dicts()
method. For details on this method parameters, see the documentation for this method. - count_change_threshold (
int, float, optional
): (defaults toNone
) The maximum difference between number of changed elements in each snapshot (as percentage).
Returns
dict
: Comparison results.
SnapshotCompare.get_count_change_percentage
def get_count_change_percentage(
report_type: str,
thresholds: Optional[List[Dict[str, Union[int, float]]]] = None
) -> Optional[Dict[str, Union[bool, dict]]]
Generic method to calculate the change on values and compare them against a given threshold.
In opposition to the get_diff_and_threshold()
method, this one does not
calculate the count change but the actual difference between the numerical values.
A good example is a change in the session count. The snapshot for this area is a dictionary with the keys taking values
of different session types and values containing the actual session count:
{
"session_stats": {
"tmo-5gcdelete": "15",
"tmo-sctpshutdown": "60",
"tmo-tcp": "3600",
"tmo-tcpinit": "5",
"pps": "2",
"tmo-tcp-delayed-ack": "250",
"num-max": "819200",
"age-scan-thresh": "80",
"tmo-tcphalfclosed": "120",
"num-active": "3",
"tmo-sctp": "3600",
"dis-def": "60",
"num-tcp": "1",
"num-udp": "0",
...
}
}
This method:
- sweeps through all the session types provided in the
thresholds
variable, - calculates the actual difference,
- compares the actual difference with the threshold value (percentage) for a particular session type.
It takes as parameter a list of dictionaries describing elements to compare, in a form of:
{
"element_type": threshold_value
}
Where:
element_type
is a key which value we are going to compare,threshold_value
is a percentage value provided as eitherint
orfloat
. If the list is empty, the method will returnNone
.
This list does not support ConfigParser
dialect
.
Below there is a sample list for the sessions_stat
dictionary shown above that would calculate differences for the TCP
and UDP sessions:
[
{ "num-tcp": 1.5 },
{ "num-udp": 15 },
]
Parameters
- thresholds (
list
): (defaults toNone
) The list of elements to compare with thresholds.
Raises
SnapshotSchemeMismatchException
: Thrown when a snapshot element has a different set of properties in both snapshots.
Returns
dict
: The result of difference compared against a threshold. The result for each value is in the same form as returned by the calculate_change_percentage()
method. For the examples above, the return value would be:
{
'num-tcp': {
'change_percentage': 99.0,
'change_threshold': 1.5,
'passed': False
},
'num-udp': {
'change_percentage': 100.0,
'change_threshold': 15.0,
'passed': False
},
'passed': False
}