def test_ping_1(self): self.device = Mock(**self.device_output) obj = Ping(device=self.device) parsed_output = obj.parse(addr='31.1.1.1', source='31.1.1.2', count=100) self.assertEqual(parsed_output, self.expected_parsed_output)
def ping(device, address, ttl=None, timeout=None, tos=None, dscp=None, size=None, count=None, source=None, rapid=False, do_not_fragment=False, validate=False, vrf=None, command=None, output=None): """ execute ping and parse ping result and return structure data Args: device ('obj'): Device object address ('str'): Address value tos ('int'): Not supported. type of service value dscp (`str`): Not supported. DSCP value size ('str'): data bytes expected ttl ('int'): Not supported timeout ('int'): timeout interval count ('int'): repeat count source ('str'): source address or interface, default: None rapid ('bool'): Not supported do_not_fragment ('bool'): enable do not fragment bit in IP header, default: False validate (`bool`): validate reply data, default: False vrf ('str'): VRF name command (`str`): ping command. This will ignore all other arguments output (`str`): ping command output. no parser call involved Returns: Boolean Raises: None """ try: obj = Ping(device=device) return obj.parse(addr=address, vrf=vrf, tos=tos, dscp=dscp, size=size, ttl=ttl, timeout=timeout, count=count, source=source, rapid=rapid, do_not_fragment=do_not_fragment, validate=validate, command=command, output=output) except SchemaEmptyParserError: log.info('parsed_output was empty') return {} except Exception as e: log.warning(e) return {}
def test_show_bfd_destination_details_empty_output(self): self.device = Mock(**self.empty_device_output) obj = Ping(device=self.device) with self.assertRaises(SchemaEmptyParserError): parsed_output = obj.parse(addr=None)