示例#1
0
    def test_check_syslog_exception(self):

        try:
            syslog_utils.check_syslog()
        except Exception as err:
            self.assertEqual(err.args[0],
                             "Mandatory argument: 'device' need to be passed")

        try:
            syslog_utils.check_syslog(device=self.mocked_obj)
        except Exception as err:
            self.assertEqual(
                err.args[0], "Mandatory argument: 'pattern' need to be passed")
示例#2
0
    def test_check_syslog_true(self):
        lst = [Response(""), Response(""), Response("5"), Response("")]
        self.mocked_obj.shell = MagicMock(side_effect=lst)
        self.assertEqual(
            syslog_utils.check_syslog(device=self.mocked_obj,
                                      pattern="abc",
                                      count=5,
                                      case_insensitive=True), True)

        lst = [Response(""), Response(""), Response("0"), Response("")]
        self.mocked_obj.shell.side_effect = lst
        self.assertEqual(
            syslog_utils.check_syslog(device=self.mocked_obj,
                                      pattern="def",
                                      syslog_src_ip="4.0.0.1",
                                      negate=True), True)

        lst = [Response(""), Response(""), Response("3"), Response("")]
        self.mocked_obj.shell.side_effect = lst
        self.assertEqual(
            syslog_utils.check_syslog(device=self.mocked_obj,
                                      pattern="abc",
                                      syslog_src_ip="4.0.0.1"), True)
示例#3
0
    def test_check_syslog_false(self):

        lst = [Response(""), Response(""), Response("5"), Response("")]
        self.mocked_obj.shell = MagicMock(side_effect=lst)
        try:
            syslog_utils.check_syslog(device=self.mocked_obj,
                                      pattern="def",
                                      negate=True,
                                      case_insensitive=True)
        except Exception as err:
            self.assertEqual(
                err.args[0],
                "String *def* is found 5 no of times, Expected : 0 times")

        lst = [Response(""), Response(""), Response("0"), Response("")]
        self.mocked_obj.shell.side_effect = lst
        try:
            syslog_utils.check_syslog(device=self.mocked_obj,
                                      pattern="abc",
                                      syslog_src_ip="4.0.0.1")
        except Exception as err:
            self.assertEqual(
                err.args[0],
                "String is found 0 times, Expected : 1 or more times")

        lst = [Response(""), Response(""), Response("1"), Response("")]
        self.mocked_obj.shell.side_effect = lst
        try:
            syslog_utils.check_syslog(device=self.mocked_obj,
                                      pattern="abc",
                                      syslog_src_ip="4.0.0.1",
                                      count=3)
        except Exception as err:
            self.assertEqual(
                err.args[0],
                "String *abc* is found 1 times, Expected : 3 times")
示例#4
0
def validate_ssl_proxy_syslog(device=None,
                              negate=False,
                              message=None,
                              file="/var/log/messages",
                              junos_version=None,
                              **kwargs):
    """
    To Validate SSL proxy syslog messages.
    Example:
        validate_ssl_proxy_syslog(device=device_handle,
                      message="revocation_reason:cessation_of_operation", file="/tmp/abc.txt",
                      destination_zone="trust", source_interface="ge-0/0/2.0",
                      syslog_src_ip="4.0.0.254")
        validate_ssl_proxy_syslog(device=device_handle, message="revocation_reason:remove_from_crl",
                      file="/tmp/abc.txt", source_zone="trust", destination_interface="ge-0/0/2.0",
                      nat_source_address="4.0.0.1")

    ROBOT Example:
        Validate SSL proxy syslog   device=${device_handle}
                    message=revocation_reason:cessation_of_operation   file=/tmp/abc.txt
                    destination_zone=trust   source_interface=ge-0/0/2.0   syslog_src_ip=4.0.0.254
        Validate SSL proxy syslog   device=${device_handle}
                    message=revocation_reason:remove_from_crl   file=/tmp/abc.txt
                    source_zone=trust   destination_interface=ge-0/0/2.0
                    nat_source_address=4.0.0.1

    :param Device device:
        **REQUIRED** Device Handle of the Syslog server
    :param str junos_version:
        *OPTIONAL* JunOS version information to support legacy SSL proxy syslog formats
    :param bool negate:
        *OPTIONAL* Argument to validate absence of a particular "message"
    :param str file:
        *OPTIONAL* Syslog logging filename. Default is "/var/log/messages"
    :param str source_address:
        *OPTIONAL* Source IP address (Both IPv4 and IPv6 formats are supported)
    :param str destination_address:
        *OPTIONAL* Destination IP address
    :param str nat_source_address:
        *OPTIONAL* Source NAT'ed IP address
    :param str nat_destination_address:
        *OPTIONAL* Destination NAT'ed IP address
    :param str source_port:
        *OPTIONAL* Source port
    :param str destination_port:
        *OPTIONAL* Destination port
    :param str nat_source_port:
        *OPTIONAL* Source NAT'ed port
    :param str nat_destination_port:
        *OPTIONAL* Destination NAT'ed port
    :param str source_zone:
        *OPTIONAL* Source/From zone
    :param str destination_zone:
        *OPTIONAL* Destination/To zone
    :param str source_interface:
        *OPTIONAL* Source Interface
    :param str destination_interface:
        *OPTIONAL* Destination Interface
    :param int count:
        *OPTIONAL* No. of times the log is expected. If not given, it looks for 1 or more.
    :param str syslog_src_ip:
        *OPTIONAL* IP address from where Syslog is generated.
    :param str message_type:
        *OPTIONAL* SSL message type.
        ``Supported values``:   DROP
                                ALLOW
                                INFO
                                IGNORE
                                WHITELIST
    :param str profile_name:
        *OPTIONAL* SSL Profile name
    :param str session_id:
        *OPTIONAL* Session ID
    :param str logical_system_name:
        *OPTIONAL* Logical system Name. Default is "root-logical-system"
    :param str syslog_mode:
        *OPTIONAL* Syslog mode in which logs are expected. Default is "event"
        ``Supported values``:   "event" & "structured"
    :param str message:
        **REQUIRED** SSL log message which is expected.
        ``Supported values``:
        "revocation_reason:unspecified"         - Server certificate revoked with unspecified code
        "revocation_reason:compromise"          - Server certificate revoked with compromised code
        "revocation_reason:ca_compromise"       - Server certificate revoked with ca compromised
                                                  code
        "revocation_reason:affiliation_changed" - Server certificate revoked with affilation
                                                  changed code
        "revocation_reason:superseded"          - Server certificate revoked with superseded code
        "revocation_reason:cessation_of_operation" - Server certificate revoked with cessation of
                                                     operation code
        "revocation_reason:certificate_hold"    - Server certificate revoked with certificiate on
                                                  hold
        "revocation_reason:"                    - Server certificate revoked with unknown reason
        "revocation_reason:remove_from_crl"     - Server certificate revoked with remove from crl
                                                  code
        "insecure_renegotiation_started"        - Session insecure renegotiation started
        "insecure_renegotiation_completed"      - Session insecure renegotiation completed
        "insecure_renegotiation_not_permitted"  - Session insecure renegotiation not permitted
        "secure_renegotiation_started"          - Session secure renegotiation started
        "secure_renegotiation_completed"        - Session secure renegotiation completed
        "renegotiation_server_cert_different"   - Received different server certificate in
                                                  renegotiation
        "cert_error:self_signed_cert"           - Self signed server certificate
        "cert_error:self_signed_chain_cert"     - Self signed chain server certificate
        "cert_error:subject_issuer_mismatch"    - Subject of the issuer mismatched
        "cert_error:unable_to_get_local_issuer_cert" - Unable to get local issuer certificate
        "whitelist"                             - Whitelisted session. In case of URL whitelisting,
                                                  'sni' or 'url_category', atleast one is mandatory
        "custom"                                - To give a custom message as argument (user
                                                  defined). Argument 'custom_message' is
                                                  mandatory in this case.
    :param str custom_message:
        *OPTIONAL* User defined message. It is mandatory if Argument 'message' = custom.
    :param str sni:
        *OPTIONAL* Server Name identifier
    :param str url_category:
        *OPTIONAL* URL Category
    :return: Boolean (True or False)
    :rtype: bool
    """
    if device is None:
        raise ValueError("'device' is a mandatory argument")

    if message is None:
        device.log(level="ERROR", message="'message' is a mandatory argument")
        raise ValueError("'message' is a mandatory argument")

    logical_system_name = kwargs.get('logical_system_name',
                                     "root-logical-system")
    source_address = kwargs.get('source_address', ".*")
    destination_address = kwargs.get('destination_address', ".*")
    nat_source_address = kwargs.get('nat_source_address', ".*")
    nat_destination_address = kwargs.get('nat_destination_address', ".*")
    source_zone = kwargs.get('source_zone', ".*")
    destination_zone = kwargs.get('destination_zone', ".*")
    source_interface = kwargs.get('source_interface', ".*")
    destination_interface = kwargs.get('destination_interface', ".*")
    count = kwargs.get('count', None)
    syslog_src_ip = kwargs.get('syslog_src_ip', None)
    message_type = kwargs.get('message_type', ".*")
    profile_name = kwargs.get('profile_name', ".*")
    source_port = kwargs.get('source_port', "[0-9]*")
    destination_port = kwargs.get('destination_port', "443")
    nat_source_port = kwargs.get('nat_source_port', "[0-9]*")
    nat_destination_port = kwargs.get('nat_destination_port', "443")
    session_id = kwargs.get('session_id', "[0-9]*")
    syslog_mode = kwargs.get('syslog_mode', "event")
    custom_message = kwargs.get('custom_message', None)

    if junos_version is not None:
        device.log(level="ERROR",
                   message="This 'if' branch is for later purposes")
        # CODE FOR LEGACY SSL syslog format
        # Will be Decided upon the JunOs version
        # return the keyword here itself
        return False

    if message_type == "ALLOW" or message_type == "DROP":
        message_type = "SSL_PROXY_SSL_SESSION_" + message_type
    elif message_type == "IGNORE" or message_type == "WHITELIST":
        message_type = "SSL_PROXY_SESSION_" + message_type
    elif message_type == "INFO":
        message_type = "SSL_PROXY_INFO"

    if re.search(".*revocation.*", message, re.DOTALL):
        message_complete = "Certificate\\s*error:CRL:\\s*certificate\\s*revoked\\s*" \
                  "cert-id:crl-ca-profile\\s*"
        if message == "revocation_reason:unspecified":
            message_complete = message_complete + "revocation-reason:0:Unspecified"
        elif message == "revocation_reason:compromise":
            message_complete = message_complete + "revocation-reason:1:Key\\s*Compromise"
        elif message == "revocation_reason:ca_compromise":
            message_complete = message_complete + "revocation-reason:2:CA\\s*Compromise"
        elif message == "revocation_reason:affiliation_changed":
            message_complete = message_complete + "revocation-reason:3:Affiliation\\s*Changed"
        elif message == "revocation_reason:superseded":
            message_complete = message_complete + "revocation-reason:4:Superseded"
        elif message == "revocation_reason:cessation_of_operation":
            message_complete = message_complete + "revocation-reason:5:Cessation\\s*Of\\s*Operation"
        elif message == "revocation_reason:certificate_hold":
            message_complete = message_complete + "revocation-reason:6:Certificate\\s*Hold"
        elif message == "revocation_reason:":
            message_complete = message_complete + "revocation-reason:[0-9]*:.*"
        elif message == "revocation_reason:remove_from_crl":
            message_complete = message_complete + "revocation-reason:8:Remove\\s*From\\s*CRL"
        else:
            device.log(level="ERROR",
                       message="Invalid value of Argument 'message' passed")
            raise ValueError("Invalid value of Argument 'message' passed")

    elif re.search(".*renegotiation.*", message, re.DOTALL):
        message_complete = "ssl:\\s*renegotiation\\s*context\\s*(1):\\s*"
        if message == "insecure_renegotiation_started":
            message_complete = message_complete + "insecure\\s*renegotiation\\s*started"
        elif message == "insecure_renegotiation_completed":
            message_complete = message_complete + "insecure\\s*renegotiation\\s*completed"
        elif message == "secure_renegotiation_started":
            message_complete = message_complete + "secure\\s*renegotiation\\s*started"
        elif message == "secure_renegotiation_completed":
            message_complete = message_complete + "secure\\s*renegotiation\\s*completed"
        elif message == "insecure_renegotiation_not_permitted":
            message_complete = "policy\\s*violation:\\s*insecure\\s*renegotiation\\s*not\\s*" \
                               "permitted"
        elif message == "renegotiation_server_cert_different":
            message_complete = "ssl:\\s*renegotiation\\s*context\\s*(3):\\s*certificate\\s*" \
                               "chain\\s*in\\s*renegotiation\\s*context\\s*different\\s*" \
                               "from\\s*original"
        else:
            device.log(level="ERROR",
                       message="Invalid value of Argument 'message' passed")
            raise ValueError("Invalid value of Argument 'message' passed")

    elif re.search(".*cert_error.*", message, re.DOTALL):
        message_complete = "certificate\\s*error:\\s*"
        if message == "cert_error:self_signed_cert":
            message_complete = message_complete + \
                               "self\\s*signed\\s*certificate\\s*in\\s*certificate\\s*chain"
        elif message == "cert_error:subject_issuer_mismatch":
            message_complete = message_complete + "subject\\s*issuer\\s*mismatch"
        elif message == "cert_error:self_signed_chain_cert":
            message_complete = message_complete + \
                               "renegotiation\\s*context\\s*(1):\\s*self\\s*signed\\s*" + \
                               "certificate\\s*in\\s*certificate\\s*chain"
        elif message == "cert_error:unable_to_get_local_issuer_cert":
            message_complete = message_complete + \
                               "unable\\s*to\\s*get\\s*local\\s*issuer\\s*certificate"
        else:
            device.log(level="ERROR",
                       message="Invalid value of Argument 'message' passed")
            raise ValueError("Invalid value of Argument 'message' passed")

    elif message == "whitelist":
        sni = kwargs.get('sni', ".*")
        url_category = kwargs.get('url_category', ".*")
        if 'sni' not in kwargs and 'url_category' not in kwargs:
            message_complete = "System:\\s*session\\s*whitelisted"
        else:
            message_complete = "session\\s*whitelisted\\s*url\\s*category\\s*match\\s*SNI " + sni +\
                               " URL_CATEGORY " + url_category

    elif message == "custom":
        if custom_message is None:
            device.log(level="ERROR", message="Argument 'custom_message' is mandatory if " + \
                                              "message=custom")
            raise ValueError(
                "Argument 'custom_message' is mandatory if message=custom")
        message_complete = str(custom_message)

    else:
        device.log(level="ERROR",
                   message="Invalid value of Argument 'message' passed")
        raise ValueError("Invalid value of Argument 'message' passed")

    # Building the string
    if syslog_mode == "event":
        pattern = "\\s*" + message_type + ":\\s*lsys:\\s*" + logical_system_name \
        + "\\s*" + session_id + "\\s*<" + source_address + "/" + source_port + "->" + \
        destination_address + "/" + destination_port + ">\\s*NAT:<" + nat_source_address + "/" + \
        nat_source_port + "->" + nat_destination_address + "/" + nat_destination_port + ">\\s*" + \
        profile_name + "\\s*<" + source_zone + ":" + source_interface + "->" + destination_zone + \
        ":" + destination_interface + ">\\s*message:\\s*" + message_complete + "$"

    elif syslog_mode == "structured":
        pattern = "\\s*" + message_type + "\\s*\\[.*logical-system-name=\"" + \
        logical_system_name + "\"\\s*session-id=\"" + session_id + "\"\\s*source-address=\"" \
        + source_address +"\"\\s*source-port=\"" + source_port + "\"\\s*destination-address=\"" \
        + destination_address + "\"\\s*destination-port=\"" + destination_port + \
        "\"\\s*nat-source-address=\"" + nat_source_address +"\"\\s*nat-source-port=\"" + \
        nat_source_port + "\"\\s*nat-destination-address=\"" + nat_destination_address + \
        "\"\\s*nat-destination-port=\"" + nat_destination_port + "\"\\s*profile-name=\"" + \
        profile_name + "\"\\s*source-zone-name=\"" + source_zone + \
        "\"\\s*source-interface-name=\"" + source_interface + "\"\\s*destination-zone-name=\"" + \
        destination_zone + "\"\\s*destination-interface-name=\"" + destination_interface + \
        "\"\\s*message=\"" + message_complete + "\"\\]$"

    else:
        device.log(level="ERROR",
                   message="Invalid value for Argument : syslog_mode")
        raise ValueError("Invalid value for Argument : syslog_mode")

    return check_syslog(device=device,
                        pattern=pattern,
                        file=file,
                        syslog_src_ip=syslog_src_ip,
                        negate=negate,
                        count=count,
                        case_insensitive=True)
示例#5
0
def validate_apptrack_syslog(device=None,
                             negate=False,
                             message=None,
                             file="/var/log/messages",
                             **kwargs):
    """
    To validate Apptrack Syslog messages
    Example:
        validate_apptrack_syslog(device=device_handle, message="CREATE", file="/tmp/abc.txt",
                source_address="2001:1000:1111:2222:3333:4444:5555:6666", source_port="33606",
                destination_address="2002:1000:1111:2222:3333:4444:5555:6666",
                service_name="junos-http", application="HTTP", protocol_id="6", policy_name="1",
                source_zone="untrust", destination_zone="trust", session_id="13071", encrypted="No")
    ROBOT Example:
        Validate Apptrack Syslog   device=${device_handle}   message=CREATE   file=/tmp/abc.txt
                source_address=2001:1000:1111:2222:3333:4444:5555:6666   source_port=33606
                destination_address=2002:1000:1111:2222:3333:4444:5555:6666
                service_name=junos-http   application=HTTP   protocol_id=6   policy_name=1
                source_zone=untrust   destination_zone=trust   session_id=13071   encrypted=No

    :param Device device:
        **REQUIRED** Device handle of the syslog server.
    :param bool negate:
        *OPTIONAL* Argument to validate absence of a particular "message"
    :param str message:
        **REQUIRED** Apptrack log message which is expected
        ``Supported values``:   "CREATE"
                                "VOL_UPDATE"
                                "CLOSE"
                                "ROUTE_UPDATE"
                                "APBR_ZONE_CHANGE"
    :param str file:
        *OPTIONAL* Syslog logging filename. Default is "/var/log/messages"
    :param str source_address:
        *OPTIONAL* Source IP address (Both IPv4 and IPv6 formats are supported)
    :param str destination_address
        *OPTIONAL* Destination IP address
    :param str source_port:
        *OPTIONAL* Source Port
    :param str destination_port:
        *OPTIONAL* Destination Port
    :param str nat_source_address:
        *OPTIONAL* Source NAT'ed IP address
    :param str nat_destination_address:
        *OPTIONAL* Destination NAT'ed IP address
    :param str nat_source_port
        *OPTIONAL* Source NAT'ed port
    :param str nat_destination_port:
        *OPTIONAL* Destination NAT'ed port
    :param str service_name:
        *OPTIONAL* Service name
    :param str application:
    `   *OPTIONAL* Application name
    :param str nested_application:
        *OPTIONAL* Nested Application name
    :param str src_nat_rule_name:
        *OPTIONAL* Source NAT Rule name
    :param str dst_nat_rule_name:
        *OPTIONAL* Destination NAT Rule name
    :param str protocol_id:
        *OPTIONAL* Protocol ID
    :param str policy_name:
        *OPTIONAL* Policy name
    :param str source_zone:
        *OPTIONAL* Source/From zone
    :param str destination_zone:
        *OPTIONAL* Destination/To zone
    :param str session_id:
        *OPTIONAL* Session ID
    :param str packets_from_client:
        *OPTIONAL* No. of packets from client
    :param str bytes_from_client:
        *OPTIONAL* Bytes from Client
    :param str packets_from_server:
        *OPTIONAL* Packets from server
    :param str bytes_from_server:
        *OPTIONAL* bytes from server
    :param str elapsed_time:
        *OPTIONAL* Elapsed time
    :param str username:
        *OPTIONAL* Username
    :param str roles:
        *OPTIONAL* Roles
    :param str encrypted:
        *OPTIONAL* Encryption is there or not.
        `Supported values``:    "Yes"
                                "No"
    :param str syslog_src_ip:
        *OPTIONAL* IP address from where Syslog is generated.
    :param str profile_name:
        *OPTIONAL* Profile Name
    :param str rule_name:
        *OPTIONAL Rule Name
    :param str action:
        *OPTIONAL* Action taken
    :param bool lsys:
        *OPTIONAL* Pass True if LSYS mode is there. By default, it is False.
    :param str category:
        *OPTIONAL* Category in APPID
    :param str subcategory:
        *OPTIONAL* Sub Category in APPID
    :param str destination_interface:
        *OPTIONAL* Destination Interface
    :param str routing_instance:
        *OPTIONAL* Name of Routing Instance
    :param str syslog_mode:
        *OPTIONAL* Syslog mode in which logs are expected. Default is "event"
        ``Supported values``:   "event" & "structured"
    :param int count:
        *OPTIONAL* No. of times the log is expected. If not given, it looks for 1 or more.
    :param str reason:
        *OPTIONAL* Reason mentioned in the syslog
    :return: Boolean (True or False)
    :rtype: bool
    :param uplink_interface:
        *OPTIONAL* Uplink interface name in close log
    :param uplink_tx_bytes:
        *OPTIONAL* Uplink Tx bytes in close log
    :param uplink_rx_bytes:
        *OPTIONAL* Uplink Rx bytes in close log
    :param apbr_policy_name:
        *OPTIONAL* sla policy name in close and route update log
    :param wf_category:
        *OPTIONAL* web filtering category in route update log
    """

    if device is None:
        raise ValueError("'device' is a mandatory argument")

    if message is None:
        device.log(level="ERROR", message="'message' is a mandatory argument")
        raise ValueError("'message' is a mandatory argument")

    source_address = kwargs.get('source_address', ".*")
    destination_address = kwargs.get('destination_address', ".*")
    source_port = kwargs.get('source_port', "[0-9]*")
    destination_port = kwargs.get('destination_port', "[0-9]*")
    nat_source_address = kwargs.get('nat_source_address', ".*")
    nat_destination_address = kwargs.get('nat_destination_address', ".*")
    nat_source_port = kwargs.get('nat_source_port', "[0-9]*")
    nat_destination_port = kwargs.get('nat_destination_port', "[0-9]*")
    service_name = kwargs.get('service_name', ".*")
    application = kwargs.get('application', ".*")
    nested_application = kwargs.get('nested_application', ".*")
    src_nat_rule_name = kwargs.get('src_nat_rule_name', ".*")
    dst_nat_rule_name = kwargs.get('dst_nat_rule_name', ".*")
    protocol_id = kwargs.get('protocol_id', ".*")
    policy_name = kwargs.get('policy_name', ".*")
    source_zone = kwargs.get('source_zone', "untrust")
    destination_zone = kwargs.get('destination_zone', "trust")
    session_id = kwargs.get('session_id', "[0-9]*")
    packets_from_client = kwargs.get('packets_from_client', "[0-9]*")
    bytes_from_client = kwargs.get('bytes_from_client', "[0-9]*")
    packets_from_server = kwargs.get('packets_from_server', "[0-9]*")
    bytes_from_server = kwargs.get('bytes_from_server', "[0-9]*")
    elapsed_time = kwargs.get('elapsed_time', "[0-9]*")
    username = kwargs.get('username', ".*")
    roles = kwargs.get('roles', ".*")
    encrypted = kwargs.get('encrypted', ".*")
    syslog_src_ip = kwargs.get('syslog_src_ip', None)
    syslog_mode = kwargs.get('syslog_mode', "event")
    count = kwargs.get('count', None)
    reason = kwargs.get('reason', ".*")
    destination_interface = kwargs.get('destination_interface', ".*")
    category = kwargs.get('category', ".*")
    subcategory = kwargs.get('subcategory', ".*")
    lsys = kwargs.get('lsys', False)
    action = kwargs.get('action', ".*")
    profile_name = kwargs.get('profile_name', ".*")
    rule_name = kwargs.get('rule_name', ".*")
    routing_instance = kwargs.get('routing_instance', ".*")
    uplink_interface = kwargs.get('uplink_interface', ".*")
    uplink_tx_bytes = kwargs.get('uplink_tx_bytes', ".*")
    uplink_rx_bytes = kwargs.get('uplink_rx_bytes', ".*")
    apbr_policy_name = kwargs.get('apbr_policy_name', "N/A")
    wf_category = kwargs.get('wf_category', "N/A")
    bypass = kwargs.get('bypass', "N/A")
    src_vrf_grp = kwargs.get('src_vrf_grp', "N/A")
    dst_vrf_grp = kwargs.get('dst_vrf_grp', "N/A")
    dscp_value = kwargs.get('dscp_value', ".*")
    apbr_rule_type = kwargs.get('apbr_rule_type', ".*")
    multipath_rule_name = kwargs.get('multipath_rule_name', ".*")

    # Convert IPv6 compressed format
    if source_address != ".*":
        source_address = normalize_ipv6(source_address, compress_zero=True)
    if destination_address != ".*":
        destination_address = normalize_ipv6(destination_address,
                                             compress_zero=True)
    if nat_source_address != ".*":
        nat_source_address = normalize_ipv6(nat_source_address,
                                            compress_zero=True)
    if nat_destination_address != ".*":
        nat_destination_address = normalize_ipv6(nat_destination_address,
                                                 compress_zero=True)

    if message != "APBR_ZONE_MISMATCH":
        message = "APPTRACK_SESSION_" + message

    if lsys is True and syslog_mode == "event":
        message = message + "_LS" + ":\\s*" + ".*"
    elif lsys is True and syslog_mode == "structured":
        message = message + "_LS" + "\\s*" + ".*"
    else:
        message = message
    resource_list = t.get_junos_resources()
    dut_name = ''
    for resource in resource_list:
        if t['resources'][resource]['system']['primary'].get(
                'uv-syslog-host', 'False') != 'False':
            dut_name = resource
            break
    dut_handle = t.get_handle(resource=dut_name)
    version = dut_handle.get_version()
    if service_name == 'junos-https':
        if application == 'HTTPS' and float(19.4) <= float(
                version[:4]) or float(18.2) > float(version[:4]):
            application = application.replace('HTTPS', 'HTTP')
        else:
            if application == 'HTTP' and float(18.2) <= float(
                    version[:4]) <= float(19.3):
                application = application.replace('HTTP', 'HTTPS')

    # Building pattern for Event Mode
    if syslog_mode == "event":
        message_suffix = ""
        if "CLOSE" in message:
            message_suffix = "AppTrack session closed"
        elif "CREATE" in message:
            message_suffix = "AppTrack session created"
        elif "VOL_UPDATE" in message:
            message_suffix = "AppTrack volume update"
        elif "ROUTE_UPDATE" in message:
            message_suffix = "AppTrack route update"
        elif "APBR_ZONE_MISMATCH" in message:
            message_suffix = "APBR zone mismatch"
        else:
            device.log(level="INFO", message="INVALID message value")
            raise Exception("INVALID message value")

        message_suffix = message_suffix + "\\s*" + reason
        if "CREATE" not in message:
            message_suffix = message_suffix + ":"

        pattern = ".*" + message + ":\\s*" + message_suffix + "\\s*" + source_address + "/" + \
        source_port + "->" + destination_address + "/" + destination_port + "\\s*" + service_name \
        + "\\s*" + application + "\\s*" + nested_application + "\\s*" + nat_source_address + \
        "/" + nat_source_port + "->" + nat_destination_address + "/" + nat_destination_port + \
        "\\s*" + src_nat_rule_name + "\\s*" + dst_nat_rule_name + "\\s*" + protocol_id + "\\s*" + \
        policy_name + "\\s*" + source_zone + "\\s*" + destination_zone + "\\s*" + session_id + \
        "\\s*"

        if "VOL_UPDATE" in message or "CLOSE" in message:
            pattern = pattern + packets_from_client + "(" + bytes_from_client + ")" + "\\s*" + \
            packets_from_server + "(" + bytes_from_server + ")" + "\\s*" + elapsed_time + "\\s*"

        pattern = pattern + username + "\\s*" + roles + "\\s*" + encrypted

        if "ROUTE_UPDATE" in message or "ZONE_CHANGE" in message or "CLOSE" in message:
            pattern = pattern + "\\s+" + profile_name + "\\s+" + rule_name + "\\s+" \
                      + routing_instance

        if 'destination_interface' in kwargs:
            if "CLOSE" in message and 'uplink_interface' in kwargs:
                pattern = pattern + "\\s+" + destination_interface + "\\s+" + uplink_interface + "\\s+" + uplink_tx_bytes + "\\s" + uplink_rx_bytes + "\\s*"
            else:
                pattern = pattern + "\\s+" + destination_interface + "\\s.*"

        if "APBR_ZONE_MISMATCH" in message:
            pattern = pattern + "\\s+" + action
        if 'category' in kwargs or 'subcategory' in kwargs:
            pattern = pattern + category + "\\s+" + subcategory
        if "ROUTE_UPDATE" in message or "CLOSE" in message:
            if 'apbr_policy_name' in kwargs or 'wf_category' in kwargs or 'bypass' in kwargs:
                pattern = pattern + "\\s+" + apbr_policy_name
                if ("ROUTE_UPDATE" in message and 'wf_category' in kwargs and
                        'bypass' in kwargs) or ("ROUTE_UPDATE" in message
                                                and 'wf_category' not in kwargs
                                                and 'bypass' in kwargs):
                    pattern = pattern + "\\s+" + wf_category + "\\s+" + bypass
                elif "ROUTE_UPDATE" in message and 'wf_category' in kwargs and 'bypass' not in kwargs:
                    pattern = pattern + "\\s+" + wf_category

    # Building pattern for Structured Mode
    elif syslog_mode == "structured":
        pattern = ".*" + message + "\\s*\\[.*"
        if 'reason' in kwargs:
            pattern = pattern + "reason=\"" + reason + "\""

        pattern = pattern + "\\s*" + "source-address=\"" + source_address + "\"\\s*source-port=\"" \
        + source_port + "\"\\s*destination-address=\"" + destination_address + "\"\\s*" + \
        "destination-port=\"" + destination_port + "\"\\s*service-name=\"" + service_name + \
        "\"\\s*application=\"" + application + "\"\\s*nested-application=\"" + nested_application \
        + "\"\\s*nat-source-address=\"" + nat_source_address + "\"\\s*nat-source-port=\"" + \
        nat_source_port + "\"\\s*nat-destination-address=\"" + nat_destination_address + "\"\\s*" \
        + "nat-destination-port=\"" + nat_destination_port + "\"\\s*src-nat-rule-name=\"" + \
        src_nat_rule_name + "\"\\s*dst-nat-rule-name=\"" + dst_nat_rule_name + "\"\\s*protocol-id" \
        + "=\"" + protocol_id + "\"\\s*policy-name=\"" + policy_name + "\"\\s*source-zone-name=\"" \
        + source_zone + "\"\\s*destination-zone-name=\"" + destination_zone + "\"\\s*session-id-32" \
        + "=\"" + session_id + "\"\\s*"

        if "VOL_UPDATE" in message or "CLOSE" in message:
            pattern = pattern + "packets-from-client=\"" + packets_from_client + "\"\\s*" + \
            "bytes-from-client=\"" + bytes_from_client + "\"\\s*packets-from-server=\"" + \
            packets_from_server + "\"\\s*bytes-from-server=\"" + bytes_from_server + "\"\\s*" + \
            "elapsed-time=\"" + elapsed_time + "\"\\s*"

        pattern = pattern + "username=\"" + username + "\"\\s*roles=\"" + roles + "\"\\s*" + \
        "encrypted=\"" + encrypted + "\""

        if "ROUTE_UPDATE" in message or "APBR_ZONE_MISMATCH" in message or "CLOSE" in message:
            pattern = pattern + "\\s*profile-name=\"" + profile_name + "\"\\s*rule-name=\"" + \
            rule_name + "\"\\s*routing-instance=\"" + routing_instance + "\""

        if 'destination_interface' in kwargs:
            if "CLOSE" in message and 'uplink_interface' in kwargs:
                pattern = pattern + "\\s*destination-interface-name=\"" + destination_interface + "\"\\s*uplink-incoming-interface-name=\"" + uplink_interface + "\"\\s*uplink-tx-bytes=\"" + uplink_tx_bytes + "\"\\s*uplink-rx-bytes=\"" + uplink_rx_bytes + "\\s*"
            else:
                pattern = pattern + "\\s*destination-interface-name=\"" + destination_interface + "\".*"
        if "APBR_ZONE_MISMATCH" in message:
            pattern = pattern + "\\s*action=\"" + action + "\""

        if 'category' in kwargs or 'subcategory' in kwargs:
            if float(version[:4]) >= 18.2:
                subcategory_field = "sub-category"
            else:
                subcategory_field = "subcategory"
            pattern = pattern + "category=\"" + category + "\"\\s*" + subcategory_field + "=\"" + subcategory + "\""

        if "ROUTE_UPDATE" in message or "CLOSE" in message:
            if 'apbr_policy_name' in kwargs or 'wf_category' in kwargs or 'bypass' in kwargs:
                pattern = pattern + "\\s*apbr-policy-name=\"" + apbr_policy_name + "\""
                if ("ROUTE_UPDATE" in message and 'wf_category' in kwargs and
                        'bypass' in kwargs) or ("ROUTE_UPDATE" in message
                                                and 'wf_category' not in kwargs
                                                and 'bypass' in kwargs):
                    pattern = pattern + "\\s*webfilter-category=\"" + wf_category + "\"" + "\\s*bypass-status=\"" + bypass + "\""
                elif "ROUTE_UPDATE" in message and 'wf_category' in kwargs and 'bypass' not in kwargs:
                    pattern = pattern + "\\s*webfilter-category=\"" + wf_category + "\""
        if "CLOSE" in message:
            if 'multipath_rule_name' in kwargs:
                pattern = pattern + "\\s*multipath-rule-name=\"" + multipath_rule_name + "\""
        if 'dscp_value' in kwargs and 'apbr_rule_type' in kwargs:
            pattern = pattern + "\\s*src-vrf-grp=\"" + src_vrf_grp + "\"\\s*dst-vrf-grp=\"" + dst_vrf_grp + "\"\\s*dscp-value=\"" + dscp_value + "\"\\s*apbr-rule-type=\"" + apbr_rule_type + "\""

    # Invalid Mode Branch
    else:
        device.log(level="ERROR", message="INVALID syslog mode")
        raise Exception("INVALID syslog mode")

    return check_syslog(device=device,
                        pattern=pattern,
                        file=file,
                        syslog_src_ip=syslog_src_ip,
                        negate=negate,
                        count=count,
                        case_insensitive=True)
示例#6
0
def validate_appqoe_apptrack_syslog(device=None, negate=False, message=None, file="/var/log/messages", **kwargs):
    """
    To validate AppQoE Apptrack Syslog messages
    Example:
        validate_appqoe_apptrack_syslog(device=device_handle, message="CREATE", file="/tmp/abc.txt",
                source_address="2001:1000:1111:2222:3333:4444:5555:6666", source_port="33606",
                destination_address="2002:1000:1111:2222:3333:4444:5555:6666",
                service_name="junos-http", application="HTTP", protocol_id="6", policy_name="1",
                source_zone="untrust1", destination_zone="trust", session_id="13071", encrypted="No")
    ROBOT Example:
        Validate AppQoE Apptrack Syslog   device=${device_handle}   message=CREATE   file=/tmp/abc.txt
                source_address=2001:1000:1111:2222:3333:4444:5555:6666   source_port=33606
                destination_address=2002:1000:1111:2222:3333:4444:5555:6666
                service_name=junos-http   application=HTTP   protocol_id=6   policy_name=1
                source_zone=untrust1   destination_zone=trust   session_id=13071   encrypted=No

    :param Device device:
        **REQUIRED** Device handle of the syslog server.
    :param bool negate:
        *OPTIONAL* Argument to validate absence of a particular "message"
    :param str message:
        **REQUIRED** Apptrack log message which is expected
        ``Supported values``:   "CREATE"
                                "VOL_UPDATE"
                                "CLOSE"
                                "ROUTE_UPDATE"
                                "APBR_ZONE_CHANGE"
    :param str file:
        *OPTIONAL* Syslog logging filename. Default is "/var/log/messages"
    :param str source_address:
        *OPTIONAL* Source IP address (Both IPv4 and IPv6 formats are supported)
    :param str destination_address
        *OPTIONAL* Destination IP address
    :param str source_port:
        *OPTIONAL* Source Port
    :param str destination_port:
        *OPTIONAL* Destination Port
    :param str nat_source_address:
        *OPTIONAL* Source NAT'ed IP address
    :param str nat_destination_address:
        *OPTIONAL* Destination NAT'ed IP address
    :param str nat_source_port
        *OPTIONAL* Source NAT'ed port
    :param str nat_destination_port:
        *OPTIONAL* Destination NAT'ed port
    :param str service_name:
        *OPTIONAL* Service name
    :param str application:
    `   *OPTIONAL* Application name
    :param str nested_application:
        *OPTIONAL* Nested Application name
    :param str src_nat_rule_name:
        *OPTIONAL* Source NAT Rule name
    :param str dst_nat_rule_name:
        *OPTIONAL* Destination NAT Rule name
    :param str protocol_id:
        *OPTIONAL* Protocol ID
    :param str policy_name:
        *OPTIONAL* Policy name
    :param str source_zone:
        *OPTIONAL* Source/From zone
    :param str destination_zone:
        *OPTIONAL* Destination/To zone
    :param str session_id:
        *OPTIONAL* Session ID
    :param str packets_from_client:
        *OPTIONAL* No. of packets from client
    :param str bytes_from_client:
        *OPTIONAL* Bytes from Client
    :param str packets_from_server:
        *OPTIONAL* Packets from server
    :param str bytes_from_server:
        *OPTIONAL* bytes from server
    :param str elapsed_time:
        *OPTIONAL* Elapsed time
    :param str username:
        *OPTIONAL* Username
    :param str roles:
        *OPTIONAL* Roles
    :param str encrypted:
        *OPTIONAL* Encryption is there or not.
        `Supported values``:    "Yes"
                                "No"
    :param str syslog_src_ip:
        *OPTIONAL* IP address from where Syslog is generated.
    :param str profile_name:
        *OPTIONAL* Profile Name
    :param str rule_name:
        *OPTIONAL Rule Name
    :param str action:
        *OPTIONAL* Action taken
    :param bool lsys:
        *OPTIONAL* Pass True if LSYS mode is there. By default, it is False.
    :param str category:
        *OPTIONAL* Category in APPID
    :param str subcategory:
        *OPTIONAL* Sub Category in APPID
    :param str destination_interface:
        *OPTIONAL* Destination Interface
    :param str routing_instance:
        *OPTIONAL* Name of Routing Instance
    :param str syslog_mode:
        *OPTIONAL* Syslog mode in which logs are expected. Default is "event"
        ``Supported values``:   "event" & "structured"
    :param int count:
        *OPTIONAL* No. of times the log is expected. If not given, it looks for 1 or more.
    :param str reason:
        *OPTIONAL* Reason mentioned in the syslog
    :return: Boolean (True or False)
    :rtype: bool
    """

    if device is None:
        raise ValueError("'device' is a mandatory argument")

    if message is None:
        device.log(level="ERROR", message="'message' is a mandatory argument")
        raise ValueError("'message' is a mandatory argument")

    source_address = kwargs.get('source_address', ".*")
    destination_address = kwargs.get('destination_address', ".*")
    source_port = kwargs.get('source_port', "[0-9]*")
    destination_port = kwargs.get('destination_port', "[0-9]*")
    nat_source_address = kwargs.get('nat_source_address', ".*")
    nat_destination_address = kwargs.get('nat_destination_address', ".*")
    nat_source_port = kwargs.get('nat_source_port', "[0-9]*")
    nat_destination_port = kwargs.get('nat_destination_port', "[0-9]*")
    service_name = kwargs.get('service_name', ".*")
    application = kwargs.get('application', ".*")
    nested_application = kwargs.get('nested_application', ".*")
    src_nat_rule_name = kwargs.get('src_nat_rule_name', ".*")
    dst_nat_rule_name = kwargs.get('dst_nat_rule_name', ".*")
    protocol_id = kwargs.get('protocol_id', ".*")
    policy_name = kwargs.get('policy_name', ".*")
    source_zone = kwargs.get('source_zone', ".*")
    destination_zone = kwargs.get('destination_zone', ".*")
    session_id = kwargs.get('session_id', "[0-9]*")
    packets_from_client = kwargs.get('packets_from_client', "[0-9]*")
    bytes_from_client = kwargs.get('bytes_from_client', "[0-9]*")
    packets_from_server = kwargs.get('packets_from_server', "[0-9]*")
    bytes_from_server = kwargs.get('bytes_from_server', "[0-9]*")
    elapsed_time = kwargs.get('elapsed_time', "[0-9]*")
    username = kwargs.get('username', ".*")
    roles = kwargs.get('roles', ".*")
    encrypted = kwargs.get('encrypted', ".*")
    syslog_src_ip = kwargs.get('syslog_src_ip', None)
    syslog_mode = kwargs.get('syslog_mode', "event")
    count = kwargs.get('count', None)
    reason = kwargs.get('reason', ".*")
    destination_interface = kwargs.get('destination_interface', ".*")
    category = kwargs.get('category', ".*")
    subcategory = kwargs.get('subcategory', ".*")
    lsys = kwargs.get('lsys', False)
    action = kwargs.get('action', ".*")
    profile_name = kwargs.get('profile_name', ".*")
    rule_name = kwargs.get('rule_name', ".*")
    routing_instance = kwargs.get('routing_instance', ".*")
    get = int(kwargs.get('get', 0))

    # Convert IPv6 compressed format
    if source_address != ".*":
        source_address = normalize_ipv6(source_address, compress_zero=True)
    if destination_address != ".*":
        destination_address = normalize_ipv6(destination_address, compress_zero=True)
    if nat_source_address != ".*":
        nat_source_address = normalize_ipv6(nat_source_address, compress_zero=True)
    if nat_destination_address != ".*":
        nat_destination_address = normalize_ipv6(nat_destination_address, compress_zero=True)

    if message != "APBR_ZONE_MISMATCH":
        message = "APPTRACK_SESSION_" + message

    if lsys is True:
        message = message + "_LS"+ ":\\s*" + ".*"

    # Building pattern for Event Mode
    if syslog_mode == "event":
        message_suffix = ""
        if "CLOSE" in message:
            message_suffix = "AppTrack session closed"
        elif "CREATE" in message:
            message_suffix = "AppTrack session created"
        elif "VOL_UPDATE" in message:
            message_suffix = "AppTrack volume update"
        elif "ROUTE_UPDATE" in message:
            message_suffix = "AppTrack route update"
        elif "APBR_ZONE_MISMATCH" in message:
            message_suffix = "APBR zone mismatch"
        else:
            device.log(level="INFO", message="INVALID message value")
            raise Exception("INVALID message value")

        message_suffix = message_suffix + "\\s*" + reason
        if "CREATE" not in message:
            message_suffix = message_suffix + ":"

        pattern = ".*" + message + ":\\s*" + message_suffix + "\\s*" + source_address + "/" + \
        source_port + "->" + destination_address + "/" + destination_port + "\\s*" + service_name \
        + "\\s*" + application + "\\s*" + nested_application + "\\s*" + nat_source_address + \
        "/" + nat_source_port + "->" + nat_destination_address + "/" + nat_destination_port + \
        "\\s*" + src_nat_rule_name + "\\s*" + dst_nat_rule_name + "\\s*" + protocol_id + "\\s*" + \
        policy_name + "\\s*" + source_zone + "\\s*" + destination_zone + "\\s*" + session_id + \
        "\\s*"

        if "VOL_UPDATE" in message or "CLOSE" in message:
            pattern = pattern + packets_from_client + "(" + bytes_from_client + ")" + "\\s*" + \
            packets_from_server + "(" + bytes_from_server + ")" + "\\s*" + elapsed_time + "\\s*"

        pattern = pattern + username + "\\s*" + roles + "\\s*" + encrypted

        if "ROUTE_UPDATE" in message or "ZONE_CHANGE" in message or "CLOSE" in message:
            pattern = pattern + "\\s+" + profile_name + "\\s+" + rule_name + "\\s+" \
                      + routing_instance

        if 'destination_interface' in kwargs:
            pattern = pattern + "\\s+" + destination_interface
        if "APBR_ZONE_MISMATCH" in message:
            pattern = pattern + "\\s+" + action
        if 'category' in kwargs or 'subcategory' in kwargs:
            pattern = pattern + "\\s+" + category + "\\s+" + subcategory


    # Building pattern for Structured Mode
    elif syslog_mode == "structured":
        pattern = ".*" + message + "[^\s]*\\[.*"

        pattern = pattern + "[^\\s]*" + "source-address=\"" + source_address + "\"[^\\s]*source-port=\"" \
          + source_port + "\"[^\\s]*destination-address=\"" + destination_address + "\"[^\\s]*" + \
          "destination-port=\"" + destination_port + "\"[^\\s]*service-name=\"" + service_name + \
          "\"[^\\s]*application=\"" + application + "\"[^\\s]*nested-application=\"" + nested_application \
          + "\"[^\\s]*nat-source-address=\"" + nat_source_address + "\"[^\\s]*nat-source-port=\"" + \
          nat_source_port + "\"[^\\s]*nat-destination-address=\"" + nat_destination_address + "\"[^\\s]*" \
          + "nat-destination-port=\"" + nat_destination_port + "\"[^\\s]*src-nat-rule-name=\"" + \
          src_nat_rule_name + "\"[^\\s]*dst-nat-rule-name=\"" + dst_nat_rule_name + "\"[^\\s]*protocol-id" \
          + "=\"" + protocol_id + "\"[^\\s]*policy-name=\"" + policy_name + "\"[^\\s]*source-zone-name=\"" \
          + source_zone + "\"[^\\s]*destination-zone-name=\"" + destination_zone + "\"[^\\s]*session-id-32" \
          + "=\"" + session_id + "\"[^\\s]*"

        if "VOL_UPDATE" in message or "CLOSE" in message:
            pattern = pattern + "packets-from-client=\"" + packets_from_client + "\"[^\\s]*" + \
                      "bytes-from-client=\"" + bytes_from_client + "\"[^\\s]*packets-from-server=\"" + \
                      packets_from_server + "\"[^\\s]*bytes-from-server=\"" + bytes_from_server + "\"[^\\s]*" + \
                      "elapsed-time=\"" + elapsed_time + "\"[^\\s]*"

        pattern = pattern + "username=\"" + username + "\"[^\\s]*roles=\"" + roles + "\"[^\\s]*" + \
                  "encrypted=\"" + encrypted + "\""

        if "ROUTE_UPDATE" in message or "APBR_ZONE_MISMATCH" in message or "CLOSE" in message:
            pattern = pattern + "[^\\s]*profile-name=\"" + profile_name + "\"[^\\s]*rule-name=\"" + \
                      rule_name + "\"[^\\s]*routing-instance=\"" + routing_instance + "\""

        if 'destination_interface' in kwargs:
            pattern = pattern + "[^\\s]*destination-interface-name=\"" + destination_interface + "\""
        if "APBR_ZONE_MISMATCH" in message:
            pattern = pattern + "[^\\s]*action=\"" + action + "\""

        if 'category' in kwargs or 'subcategory' in kwargs:
            pattern = pattern + "[^\\s]*category=\"" + category + "\"[^\\s]*subcategory=\"" \
                      + subcategory + "\""

        # Invalid Mode Branch
    else:
        device.log(level="ERROR", message="INVALID syslog mode")
        raise Exception("INVALID syslog mode")

    if get:
        device.log(level="INFO", message="In GET state")
        return get_syslog_close(device=device, pattern=pattern)
    else:
        device.log(level="INFO", message="In Verify state")
        return check_syslog(device=device, pattern=pattern, file=file, syslog_src_ip=syslog_src_ip, negate=negate,
                            count=count, case_insensitive=True)
示例#7
0
def validate_appqoe_path_violation_syslog(device=None, message=None, file="/var/log/messages", **kwargs):
    """
    To validate Appqoe Syslog messages
    Example:
        validate_appqoe_path_violation_syslog(dev_obj, message="APPQOE_SLA_METRIC_VIOLATION", syslog_mode="structured",
                                file="/var/tmp/syslog_test.txt", source_address="19.0.0.2", source_port="46965",
                                destination_address="9.0.0.2", destination_port="22", destination_interface="gr-0/0/0.0")

        validate_appqoe_path_violation_syslog(dev_obj, message="APPQOE_BEST_PATH_SELECTED", syslog_mode="structured",
                                file="/var/tmp/syslog_test.txt", source_address="19.0.0.2", source_port="46965",
                                destination_address="9.0.0.2", destination_port="22", previous_interface="gr-0/0/0.1")

    ROBOT Example:
        Validate Appqoe Path Violation Syslog     device=${spoke}    message=APPQOE_BEST_PATH_SELECTED    application=HTTP
        ...  ip_dscp=0    syslog_mode=structured    active_probe_params=probe1  destination_group_name=site1
        ...  file=/var/log/messages  sla_rule=sla1    source_address=${client-ipv4}  destination_address=${server-ipv4}
        ...  apbr_profile=apbr1    apbr_rule=rule1    source_zone=trust    destination_zone=untrust1
        ...  routing_instance=appqoe-vrf    nested_application=FACEBOOK-ACCESS

        Validate Appqoe Path Violation Syslog  device=${spoke}  message=APPQOE_SLA_METRIC_VIOLATION  file=/var/log/messages
        ...  source_address=${client-ipv4}    syslog_mode=structured    violation_reason=2
        ...  application=HTTP    nested_application=FACEBOOK-ACCESS    ip_dscp=0    active_probe_params=probe1
        ...  destination_group_name=site1    sla_rule=sla1    source_address=${client-ipv4}    destination_address=${server-ipv4}
        ...  apbr_profile=apbr1    apbr_rule=rule1    source_zone=trust    destination_zone=untrust1
        ...  routing_instance=appqoe-vrf    group_name=web:social-networking    target_jitter=10000    target_rtt=200000
        ...  target_pkt_loss=10    target_jitter_type=1    jitter_violation_count=2    destination_interface=${gre-spoke-int1}
        ...  destination_port=250

    :param Device device:
        **REQUIRED** Device handle of the syslog server.
    :param bool negate:
        *OPTIONAL* Argument to validate absence of a particular "message"
    :param str message:
        **REQUIRED** Appqoe log message which is expected
        ``Supported values``:   "APPQOE_SLA_METRIC_VIOLATION"
                                "APPQOE_BEST_PATH_SELECTED"

    :param str file:
        *OPTIONAL* Syslog logging filename. Default is "/var/log/messages"
    :param str source_address:
        *OPTIONAL* Source IP address (Both IPv4 and IPv6 formats are supported)
    :param str destination_address
        *OPTIONAL* Destination IP address
    :param str source_port:
        *OPTIONAL* Source Port
    :param str destination_port:
        *OPTIONAL* Destination Port
    :param str nat_source_address:
        *OPTIONAL* Source NAT'ed IP address
    :param str nat_destination_address:
        *OPTIONAL* Destination NAT'ed IP address
    :param str nat_source_port
        *OPTIONAL* Source NAT'ed port
    :param str nat_destination_port:
        *OPTIONAL* Destination NAT'ed port
    :param str service_name:
        *OPTIONAL* Service name
    :param str application:
    `   *OPTIONAL* Application name
    :param str nested_application:
        *OPTIONAL* Nested Application name
    :param str src_nat_rule_name:
        *OPTIONAL* Source NAT Rule name
    :param str dst_nat_rule_name:
        *OPTIONAL* Destination NAT Rule name
    :param str protocol_id:
        *OPTIONAL* Protocol ID
    :param str policy_name:
        *OPTIONAL* Policy name
    :param str source_zone:
        *OPTIONAL* Source/From zone
    :param str destination_zone:
        *OPTIONAL* Destination/To zone
    :param str session_id:
        *OPTIONAL* Session ID
    :param str packets_from_client:
        *OPTIONAL* No. of packets from client
    :param str bytes_from_client:
        *OPTIONAL* Bytes from Client
    :param str packets_from_server:
        *OPTIONAL* Packets from server
    :param str bytes_from_server:
        *OPTIONAL* bytes from server
    :param str elapsed_time:
        *OPTIONAL* Elapsed time
    :param str username:
        *OPTIONAL* Username
    :param str roles:
        *OPTIONAL* Roles
    :param str encrypted:
        *OPTIONAL* Encryption is there or not.
        `Supported values``:    "Yes"
                                "No"
    :param str syslog_src_ip:
        *OPTIONAL* IP address from where Syslog is generated.
    :param str profile_name:
        *OPTIONAL* Profile Name
    :param str rule_name:
        *OPTIONAL Rule Name
    :param str action:
        *OPTIONAL* Action taken
    :param bool lsys:
        *OPTIONAL* Pass True if LSYS mode is there. By default, it is False.
    :param str category:
        *OPTIONAL* Category in APPID
    :param str subcategory:
        *OPTIONAL* Sub Category in APPID
    :param str destination_interface:
        *OPTIONAL* Destination Interface
    :param str routing_instance:
        *OPTIONAL* Name of Routing Instance
    :param str syslog_mode:
        *OPTIONAL* Syslog mode in which logs are expected. Default is "event"
        ``Supported values``:   "non-structured" & "structured"
    :param int count:
        *OPTIONAL* No. of times the log is expected. If not given, it looks for 1 or more.
    :param str reason:
        *OPTIONAL* Reason mentioned in the syslog
    :return: Boolean (True or False)
    :rtype: bool
    """

    if device is None:
        raise ValueError("'device' is a mandatory argument")

    if message is None:
        device.log(level="ERROR", message="'message' is a mandatory argument")
        raise ValueError("'message' is a mandatory argument")

    source_address = kwargs.get('source_address', ".*")
    destination_address = kwargs.get('destination_address', ".*")
    source_port = kwargs.get('source_port', "[0-9]*")
    destination_port = kwargs.get('destination_port', "[0-9]*")
    apbr_profile = kwargs.get('apbr_profile', ".*")
    apbr_rule = kwargs.get('apbr_rule', ".*")
    application = kwargs.get('application', ".*")
    group_name = kwargs.get('group_name', ".*")
    service_name = kwargs.get('service_name', ".*")
    protocol_id = kwargs.get('protocol_id', "[0-9]*")
    source_zone = kwargs.get('source_zone', "trust")
    destination_zone = kwargs.get('destination_zone', "untrust1")
    session_id = kwargs.get('session_id', "[0-9]*")
    username = kwargs.get('username', ".*")
    roles = kwargs.get('roles', ".*")
    routing_instance = kwargs.get('routing_instance', ".*")
    destination_interface = kwargs.get('destination_interface', ".*")
    ip_dscp = kwargs.get('ip_dscp', "[0-9]*")
    sla_rule = kwargs.get('sla_rule', ".*")
    ingress_jitter = kwargs.get('ingress_jitter', "[0-9]*")
    egress_jitter = kwargs.get('egress_jitter', "[0-9]*")
    rtt_jitter = kwargs.get('rtt_jitter', "[0-9]*")
    rtt = kwargs.get('rtt', "[0-9]*")
    pkt_loss = kwargs.get('pkt_loss', "[0-9]*")
    target_jitter_type = kwargs.get('target_jitter_type', "[0-9]*")
    target_jitter = kwargs.get('target_jitter', "[0-9]*")
    target_rtt = kwargs.get('target_rtt', "[0-9]*")
    target_pkt_loss = kwargs.get('target_pkt_loss', "[0-9]*")
    violation_reason = kwargs.get('violation_reason', "[0-9]*")
    jitter_violation_count = kwargs.get('jitter_violation_count', "[0-9]*")
    pkt_loss_violation_count = kwargs.get('pkt_loss_violation_count', "[0-9]*")
    rtt_violation_count = kwargs.get('rtt_violation_count', "[0-9]*")
    violation_duration = kwargs.get('violation_duration', "[0-9]*")
    bytes_from_client = kwargs.get('bytes_from_client', "[0-9]*")
    bytes_from_server = kwargs.get('bytes_from_server', "[0-9]*")
    packets_from_client = kwargs.get('packets_from_client', "[0-9]*")
    packets_from_server = kwargs.get('packets_from_server', "[0-9]*")
    monitoring_time = kwargs.get('monitoring_time', "[0-9]*")
    elapsed_time = kwargs.get('elapsed_time', "[0-9]*")
    previous_interface = kwargs.get('previous_interface', ".*")
    syslog_mode = kwargs.get('syslog_mode', ".*")
    syslog_src_ip = kwargs.get('syslog_src_ip', None)
    count = kwargs.get('count', None)
    destination_group_name = kwargs.get('destination_group_name', ".*")
    active_probe_params = kwargs.get('active_probe_params', ".*")
    nested_application = kwargs.get('nested_application', ".*")
    get = int(kwargs.get('get', 0))
    reason = kwargs.get('reason', ".*")
    nat_source_address = ''
    nat_source_port = ''
    nat_destination_address = ''
    nat_destination_port = ''
    src_nat_rule_name = ''
    dst_nat_rule_name = ''
    policy_name = ''
    #Building pattern for Event Mode
    if syslog_mode == "event":
        message_suffix = ""
        if "VIOLATION" in message:
            message_suffix = "AppQoE SLA Violation happened"
        elif "BEST" in message:
            message_suffix = "AppQoE Best path selected"
        else:
            device.log(level="INFO", message="INVALID message value")
            raise Exception("INVALID message value")
        ## Remove this reason option here.
        message_suffix = message_suffix + "[^\\s]*" + reason
        if "VIOLATION" not in message:
            message_suffix = message_suffix + ":"

        pattern = ".*" + message + ":[^\\s]*" + message_suffix + "[^\\s]*" + source_address + "/" + \
        source_port + "->" + destination_address + "/" + destination_port + "[^\\s]*" + service_name \
        + "[^\\s]*" + application + "[^\\s]*" + nested_application + "[^\\s]*" + nat_source_address + \
        "/" + nat_source_port + "->" + nat_destination_address + "/" + nat_destination_port + \
        "[^\\s]*" + src_nat_rule_name + "[^\\s]*" + dst_nat_rule_name + "[^\\s]*" + protocol_id + "[^\\s]*" + \
        policy_name + "[^\\s]*" + source_zone + "[^\\s]*" + destination_zone + "[^\\s]*" + session_id + \
        "[^\\s]*"

    #Building pattern for Structured Mode
    elif syslog_mode == "structured":
        message_suffix = ""
        if "APPQOE_SLA_METRIC_VIOLATION" in message:
            message_suffix = "AppQoE SLA Violation happened"
            pattern = ".*" + message + "[^\\s]*\\[.*"

            pattern = pattern + "[^\\s]*" + "source-address=\"" + source_address + "\"[^\\s]*source-port=\"" \
            + source_port + "\"[^\\s]*destination-address=\"" + \
            destination_address + "\"[^\\s]*" + "destination-port=\"" + destination_port + \
            "\"[^\\s]*apbr-profile=\"" + apbr_profile + "\"[^\\s]*apbr-rule=\"" + apbr_rule + \
            "\"[^\\s]*application=\"" + application + "\"[^\\s]*nested-application=\"" + nested_application + \
            "\"[^\\s]*group-name=\"" + group_name + \
            "\"[^\\s]*service-name=\"" + service_name + "\"[^\\s]*protocol-id=\"" + protocol_id + \
            "\"[^\\s]*source-zone-name=\"" + source_zone + "\"[^\\s]*destination-zone-name=\"" + \
            destination_zone + "\"[^\\s]*session-id-32" + "=\"" + session_id + "\"[^\\s]*username=\"" \
            + username + "\"[^\\s]*roles=\"" + roles + "\"[^\\s]*routing-instance=\"" + routing_instance + \
            "\"[^\\s]*destination-interface-name=\"" + destination_interface + "\"[^\\s]*ip-dscp=\"" + \
            ip_dscp + "\"[^\\s]*sla-rule=\"" + sla_rule + "\"[^\\s]*ingress-jitter=\"" + ingress_jitter + \
            "\"[^\\s]*egress-jitter=\"" + egress_jitter + "\"[^\\s]*rtt-jitter=\"" + rtt_jitter + \
            "\"[^\\s]*rtt=\"" + rtt + "\"[^\\s]*pkt-loss=\"" + pkt_loss + "\"[^\\s]*target-jitter-type=\"" + \
            target_jitter_type + "\"[^\\s]*target-jitter=\"" + target_jitter + \
            "\"[^\\s]*target-rtt=\"" + target_rtt + "\"[^\\s]*target-pkt-loss=\"" + target_pkt_loss + \
            "\"[^\\s]*violation-reason=\"" + violation_reason + "\"[^\\s]*jitter-violation-count=\"" + \
            jitter_violation_count + "\"[^\\s]*pkt-loss-violation-count=\"" + pkt_loss_violation_count + \
            "\"[^\\s]*rtt-violation-count=\"" + rtt_violation_count + "\"[^\\s]*violation-duration=\"" + \
            violation_duration + "\"[^\\s]*bytes-from-client=\"" + bytes_from_client + \
            "\"[^\\s]*bytes-from-server=\"" + bytes_from_server + "\"[^\\s]*packets-from-client=\"" + \
            packets_from_client + "\"[^\\s]*packets-from-server=\"" + packets_from_server + \
            "\"[^\\s]*monitoring-time=\"" + monitoring_time \
            + "\"[^\\s]*active-probe-params=\"" + active_probe_params \
            + "\"[^\\s]*destination-group-name=\"" + destination_group_name + "\"[^\\s]*]"

        elif "APPQOE_BEST_PATH_SELECTED" in message:
            message_suffix = "AppQoE Best path selected"
            pattern = ".*" + message + "[^\\s]*\\[.*"

            pattern = pattern + "[^\\s]*" + "source-address=\"" + source_address + "\"[^\\s]*source-port=\"" \
            + source_port + "\"[^\\s]*destination-address=\"" + \
            destination_address + "\"[^\\s]*" + "destination-port=\"" + destination_port + \
            "\"[^\\s]*apbr-profile=\"" + apbr_profile + "\"[^\\s]*apbr-rule=\"" + apbr_rule + \
            "\"[^\\s]*application=\"" + application + "\"[^\\s]*nested-application=\"" + nested_application + \
            "\"[^\\s]*group-name=\"" + group_name + \
            "\"[^\\s]*service-name=\"" + service_name + "\"[^\\s]*protocol-id=\"" + protocol_id + \
            "\"[^\\s]*source-zone-name=\"" + source_zone + "\"[^\\s]*destination-zone-name=\"" + \
            destination_zone + "\"[^\\s]*session-id-32" + "=\"" + session_id + "\"[^\\s]*username=\"" \
            + username + "\"[^\\s]*roles=\"" + roles + "\"[^\\s]*routing-instance=\"" + routing_instance + \
            "\"[^\\s]*destination-interface-name=\"" + destination_interface + "\"[^\\s]*ip-dscp=\"" + \
            ip_dscp + "\"[^\\s]*sla-rule=\"" + sla_rule + "\"[^\\s]*elapsed-time=\"" + elapsed_time + \
            "\"[^\\s]*bytes-from-client=\"" + bytes_from_client + \
            "\"[^\\s]*bytes-from-server=\"" + bytes_from_server + "\"[^\\s]*packets-from-client=\"" + \
            packets_from_client + "\"[^\\s]*packets-from-server=\"" + packets_from_server + \
            "\"[^\\s]*previous-interface=\"" + previous_interface  \
            + "\"[^\\s]*active-probe-params=\""+ active_probe_params \
            + "\"[^\\s]*destination-group-name=\""+ destination_group_name + "\"[^\\s]*reason=\""+ reason + "\"[^\\s]*]"

        else:
            device.log(level="INFO", message="INVALID message value")
            raise Exception("INVALID message value")

    #Invalid Mode Branch
    else:
        device.log(level="ERROR", message="INVALID syslog mode")
        raise Exception("INVALID syslog mode")
    if get == 2:
        # when we grep a syslog from linux vm, response has some special characters. When we split the output using splitlines, output is not parsed properly.
        # To avoid this adding a new keyword to grep syslog from the linux machine
        device.log(level="INFO", message="In GET state")
        return get_syslog_from_linux(device=device, pattern=pattern)
    elif get:
        device.log(level="INFO", message="In GET state")
        return get_syslog(device=device, pattern=pattern)
    else:
        device.log(level="INFO", message="In Verify state")
        negate = kwargs.get('negate')
        print("value is " + str(negate))
        if negate == "True":
            return check_syslog(device=device, pattern=pattern, file=file, syslog_src_ip=syslog_src_ip,
                                negate=True, count=count, case_insensitive=True)
        else:
            return check_syslog(device=device, pattern=pattern, file=file, syslog_src_ip=syslog_src_ip,
                                negate=negate, count=count, case_insensitive=True)
示例#8
0
def validate_appqoe_metric_syslog(device=None, message=None, file="/var/log/messages", **kwargs):
    """
    To validate Appqoe metric syslog
    Example:
        validate_appqoe_metric_syslog(dev_obj, message="ACTIVE", syslog_mode="structured",
                                file="/var/tmp/syslog_test.txt", source_address="19.0.0.2", source_port="46965",
                                destination_address="9.0.0.2", destination_port="22", destination_interface="gr-0/0/0.0")

        validate_appqoe_metric_syslog(dev_obj, message="PASSIVE", syslog_mode="structured",
                                file="/var/tmp/syslog_test.txt", source_address="19.0.0.2", source_port="46965",
                                destination_address="9.0.0.2", destination_port="22", destination_interface="gr-0/0/0.0")

    ROBOT Example:
        Validate Appqoe Metric Syslog    device=${spoke}    message=ACTIVE     syslog_mode=structured
        ...  source_address=19.0.0.2  destination_address=9.0.0.2  destination_group_name=site1
        ...  active_probe_params=probe2    routing_instance=appqoe-vrf  application=UDP    ip_dscp=0

        Validate Appqoe Metric Syslog    device=${spoke}    message=PASSIVE    syslog_mode=structured
        ...  source_address=19.0.0.2    destination_address=9.0.0.2  apbr_rule=rule2    application=HTTP
        ...  source_zone=trust    destination_zone=untrust1    protocol_id=6  apbr_profile=apbr1
        ...  routing_instance=appqoe-vrf    sla_rule=sla3    ip_dscp=0  active_probe_params=probe3
        ...  destination_group_name=site1    destination_port=300

    :param Device device:
        **REQUIRED** Device handle of the syslog server.
    :param bool negate:
        *OPTIONAL* Argument to validate absence of a particular "message"
    :param str message:
        **REQUIRED** Apptrack log message which is expected
        ``Supported values``:   "PASSIVE"
                                "ACTIVE"
    :param str file:
        *OPTIONAL* Syslog logging filename. Default is "/var/log/messages"
    :param str source_address:
        *OPTIONAL* Source IP address (Both IPv4 and IPv6 formats are supported)
    :param str destination_address
        *OPTIONAL* Destination IP address
    :param str source_port:
        *OPTIONAL* Source Port
    :param str destination_port:
        *OPTIONAL* Destination Port
    :param str service_name:
        *OPTIONAL* Service name
    :param str application:
    `   *OPTIONAL* Application name
    :param str nested_application:
        *OPTIONAL* Nested Application name
    :param str protocol_id:
        *OPTIONAL* Protocol ID
    :param str policy_name:
        *OPTIONAL* Policy name
    :param str source_zone:
        *OPTIONAL* Source/From zone
    :param str destination_zone:
        *OPTIONAL* Destination/To zone
    :param str session_id:
        *OPTIONAL* Session ID
    :param str packets_from_client:
        *OPTIONAL* No. of packets from client
    :param str bytes_from_client:
        *OPTIONAL* Bytes from Client
    :param str packets_from_server:
        *OPTIONAL* Packets from server
    :param str bytes_from_server:
        *OPTIONAL* bytes from server
    :param str monitoring_time:
        *OPTIONAL* Monitoring time
    :param str username:
        *OPTIONAL* Username
    :param str roles:
        *OPTIONAL* Roles
    :param str ip_dscp:
        *OPTIONAL* IP DSCP value
    :param str syslog_src_ip:
        *OPTIONAL* IP address from where Syslog is generated.
    :param str profile_name:
        *OPTIONAL* Profile Name
    :param str rule_name:
        *OPTIONAL Rule Name
    :param str destination_interface:
        *OPTIONAL* Destination Interface
    :param str routing_instance:
        *OPTIONAL* Name of Routing Instance
    :param str syslog_mode:
        *OPTIONAL* Syslog mode in which logs are expected. Default is "event"
        ``Supported values``:   "event" & "structured"
    :param int count:
        *OPTIONAL* No. of times the log is expected. If not given, it looks for 1 or more.
    :param str reason:
        *OPTIONAL* Reason mentioned in the syslog
    :param str ingress_jitter:
        *OPTIONAL* Ingress Jitter measured
    :param str egress_jitter:
        *OPTIONAL* Egress Jitter measured
    :param str rtt_jitter:
        *OPTIONAL* Rtt jitter measured
    :param str rtt:
        *OPTIONAL* RTT measured
    :param str pkt_loss:
        *OPTIONAL Packet loss measured
    :param str destination_group_name:
        *OPTIONAL* Destination Group Name
    :param str sla_rule:
        *OPTIONAL* LSA rule name
    :param str active_probe_params:
        *OPTIONAL Active Probe Name
    :param str get:
        *OPTIONAL* To get the syslog

    :return: Boolean (True or False)
    :rtype: bool
    """

    if device is None:
        raise ValueError("'device' is a mandatory argument")

    if message is None:
        device.log(level="ERROR", message="'message' is a mandatory argument")
        raise ValueError("'message' is a mandatory argument")

    source_address = kwargs.get('source_address', ".*")
    destination_address = kwargs.get('destination_address', ".*")
    source_port = kwargs.get('source_port', "[0-9]*")
    destination_port = kwargs.get('destination_port', "[0-9]*")
    application = kwargs.get('application', ".*")
    protocol_id = kwargs.get('protocol_id', "[0-9]*")
    destination_zone = kwargs.get('destination_zone', "untrust1")
    session_id = kwargs.get('session_id', "[0-9]*")
    packets_from_client = kwargs.get('packets_from_client', "[0-9]*")
    bytes_from_client = kwargs.get('bytes_from_client', "[0-9]*")
    packets_from_server = kwargs.get('packets_from_server', "[0-9]*")
    bytes_from_server = kwargs.get('bytes_from_server', "[0-9]*")
    rtt = kwargs.get('rtt', "[0-9]*")
    syslog_src_ip = kwargs.get('syslog_src_ip', None)
    syslog_mode = kwargs.get('syslog_mode', "*")
    count = kwargs.get('count', None)
    reason = kwargs.get('reason', ".*")
    destination_interface = kwargs.get('destination_interface', ".*")
    routing_instance = kwargs.get('routing_instance', ".*")
    ip_dscp = kwargs.get('ip_dscp', "[0-9]*")
    ingress_jitter = kwargs.get('ingress_jitter', "[0-9]*")
    egress_jitter = kwargs.get('egress_jitter', "[0-9]*")
    rtt_jitter = kwargs.get('rtt_jitter', "[0-9]*")
    monitoring_time = kwargs.get('monitoring_time', "[0-9]*")
    active_probe_params = kwargs.get('active_probe_params', ".*")
    pkt_loss = kwargs.get('pkt_loss', ".*")
    apbr_profile = kwargs.get('apbr_profile', ".*")
    apbr_rule = kwargs.get('apbr_rule', ".*")
    group_name = kwargs.get('group_name', ".*")
    service_name = kwargs.get('service_name', ".*")
    source_zone = kwargs.get('source_zone', ".*")
    session_id = kwargs.get('session_id', "[0-9]*")
    username = kwargs.get('username', ".*")
    roles = kwargs.get('roles', ".*")
    sla_rule = kwargs.get('sla_rule', ".*")
    destination_group_name = kwargs.get('destination_group_name', ".*")
    nested_application = kwargs.get('nested_application', ".*")
    get = int(kwargs.get('get', 0))

    nat_source_address = ''
    nat_source_port = ''
    nat_destination_address = ''
    nat_destination_port = ''
    src_nat_rule_name = ''
    dst_nat_rule_name = ''
    policy_name = ''
    # Building pattern for Event Mode
    if syslog_mode == "event":
        pattern = ".*" + message + ":\\s*" + source_address + "/" + \
                  source_port + "->" + destination_address + "/" + destination_port + "\\s*" + service_name \
                  + "\\s*" + application + "\\s*" + nested_application + "\\s*" + nat_source_address + \
                  "/" + nat_source_port + "->" + nat_destination_address + "/" + nat_destination_port + \
                  "\\s*" + src_nat_rule_name + "\\s*" + dst_nat_rule_name + "\\s*" + protocol_id + "\\s*" + \
                  policy_name + "\\s*" + source_zone + "\\s*" + destination_zone + "\\s*" + session_id + \
                  "\\s*"

        # Building pattern for Structured Mode
    elif syslog_mode == "structured":
        if message == "ACTIVE":
            message = "APPQOE_ACTIVE_SLA_METRIC_REPORT"
            pattern = ".*" + message + "[^\s]*\\[.*"
            pattern = pattern + "[^\s]*" + "source-address=\"" + source_address + "\"[^\\s]*source-port=\"" \
                      + source_port + "\"[^\\s]*destination-address=\"" + destination_address + "\"[^\\s]*" \
                      + "destination-port=\"" + destination_port + "\"[^\\s]*application=\"UDP\"[^\\s]*protocol-id=\"" + protocol_id \
                      + "\"[^\\s]*destination-zone-name=\"" + destination_zone + "\"[^\\s]*routing-instance=\"" \
                      + routing_instance + "\"[^\\s]*destination-interface-name=\"" + destination_interface + "\"[^\\s]*" \
                      + "ip-dscp=\"" + ip_dscp + "\"[^\\s]*ingress-jitter=\"" + ingress_jitter + "\"[^\\s]*egress-jitter=\"" + egress_jitter \
                      + "\"[^\\s]*rtt-jitter=\"" \
                      + rtt_jitter + "\"[^\\s]*rtt=\"" + rtt + "\"[^\\s]*pkt-loss=\"" \
                      + pkt_loss + "\"[^\\s]*bytes-from-client=\"" + bytes_from_client + "\"[^\\s]*bytes-from-server=\"" + bytes_from_server \
                      + "\"[^\\s]*packets-from-client=\"" \
                      + packets_from_client + "\"[^\\s]*packets-from-server=\"" + packets_from_server \
                      + "\"[^\\s]*monitoring-time=\"" + monitoring_time + "\"[^\\s]*active-probe-params=\"" + active_probe_params \
                      + "\"[^\\s]*destination-group-name=\"" + destination_group_name + "\"[^\\s]*]"

        elif message == "PASSIVE":
            message = "APPQOE_PASSIVE_SLA_METRIC_REPORT"
            pattern = ".*" + message + "[^\\s]*\\[.*"
            pattern = pattern + "[^\\s]*" + "source-address=\"" + source_address + "\"[^\\s]*source-port=\"" \
                      + source_port + "\"[^\\s]*destination-address=\"" + destination_address + "\"[^\\s]*" \
                      + "destination-port=\"" + destination_port + "\"[^\\s]*apbr-profile=\"" + apbr_profile \
                      + "\"[^\\s]*apbr-rule=\"" + apbr_rule + "\"[^\\s]*application=\"" + application \
                      + "\"[^\\s]*nested-application=\"" + nested_application \
                      + "\"[^\\s]*group-name=\"" + group_name + "\"[^\\s]*service-name=\"" + service_name \
                      + "\"[^\\s]*protocol-id=\"" + protocol_id + "\"[^\\s]*source-zone-name=\"" + source_zone \
                      + "\"[^\\s]*destination-zone-name=\"" + destination_zone + "\"[^\\s]*session-id-32=\"" \
                      + session_id + "\"[^\\s]*username=\"" + username + "\"[^\\s]*" \
                      + "roles=\"" + roles + "\"[^\\s]*routing-instance=\"" + routing_instance \
                      + "\"[^\\s]*destination-interface-name=\"" + destination_interface \
                      + "\"[^\\s]*ip-dscp=\"" + ip_dscp + "\"[^\\s]*sla-rule=\"" + sla_rule \
                      + "\"[^\\s]*ingress-jitter=\"" + ingress_jitter \
                      + "\"[^\\s]*egress-jitter=\"" + egress_jitter \
                      + "\"[^\\s]*rtt-jitter=\"" \
                      + rtt_jitter + "\"[^\\s]*rtt=\"" + rtt + "\"[^\\s]*pkt-loss=\"" \
                      + pkt_loss + "\"[^\\s]*bytes-from-client=\"" + bytes_from_client + "\"[^\\s]*bytes-from-server=\"" \
                      + bytes_from_server + "\"[^\\s]*packets-from-client=\"" \
                      + packets_from_client + "\"[^\\s]*packets-from-server=\"" + packets_from_server \
                      + "\"[^\\s]*monitoring-time=\"" + monitoring_time + "\"[^\\s]*active-probe-params=\"" + active_probe_params \
                      + "\"[^\\s]*destination-group-name=\"" + destination_group_name + "\"[^\\s]*]"

        else:
            device.log(level="ERROR", message="'message' received a wrong value")
            raise ValueError("'message' can have 'PASSIVE' or 'ACTIVE' as their value")
        # Invalid Mode Branch
    else:
        device.log(level="ERROR", message="INVALID syslog mode")
        raise Exception("INVALID syslog mode")

    if get:
        device.log(level="INFO", message="In GET state")
        return get_syslog(device=device, pattern=pattern)
    else:
        device.log(level="INFO", message="In Verify state")
        negate = kwargs.get('negate')
        print("value is " + str(negate))
        #import pdb
        #pdb.set_trace()
        if negate == "True":
            return check_syslog(device=device, pattern=pattern, file=file, syslog_src_ip=syslog_src_ip,
                                negate=True, count=count, case_insensitive=True)
        else:
            return check_syslog(device=device, pattern=pattern, file=file, syslog_src_ip=syslog_src_ip,
                                negate=negate, count=count, case_insensitive=True)