How to use set_hostname method in autotest

Best Python code snippet using autotest_python

validateScope.py

Source:validateScope.py Github

copy

Full Screen

...18 for object in list_of_objects:19 # Remove the https://www from the input_file if found20 if object.main_asset.startswith("https://www"):21 modified_asset = object.main_asset[12:].strip("\n")22 object.set_hostname(modified_asset)23 object.has_host_uri(modified_asset)24 # Remove the https:// from the input_file if found25 elif object.main_asset.startswith("https://"):26 modified_asset = object.main_asset[8:].strip("\n")27 object.set_hostname(modified_asset)28 object.has_host_uri(modified_asset)29 # Remove the http://www from the input_file if found30 elif object.main_asset.startswith("http://www"):31 modified_asset = object.main_asset[11:].strip("\n")32 object.set_hostname(modified_asset)33 object.has_host_uri(modified_asset)34 # Remove the http:// from the input_file if found35 elif object.main_asset.startswith("http://"):36 modified_asset = object.main_asset[7:].strip("\n")37 object.set_hostname(modified_asset)38 object.has_host_uri(modified_asset)39 # Remove the www from the input_file if found40 elif object.main_asset.startswith("www"):41 modified_asset = object.main_asset[4:].strip("\n")42 object.set_hostname(modified_asset)43 object.has_host_uri(modified_asset)44 # Make sure IP addresses won't be added to modified_scope45 elif object.main_asset.startswith(ipAddressFilter):46 pass47 # if none of the above is found, write input_file to modified_scope48 elif len(object.main_asset) > 1:49 if not object.main_asset.startswith(uriStartFilter):50 if "." in object.main_asset:51 modified_asset = object.main_asset.strip("\n")52 object.set_hostname(modified_asset)53 object.has_host_uri(modified_asset)54 else:55 print("[!] {} cannot be used with the current tool set"56 .format(object.main_asset))57 # Check if input_file starts with https://58 if object.main_asset.startswith("https://"):59 modified_asset = object.main_asset.strip("\n")60 object.set_hostname(modified_asset)61 object.has_curl_uri(modified_asset)62 # Check if input_file starts with http://63 elif object.main_asset.startswith("http://"):64 modified_asset = object.main_asset.strip("\n")65 object.set_hostname(modified_asset)66 object.has_curl_uri(modified_asset)67 # Check if the IP address is valid68 if validateIPAddress(object.main_asset):69 modified_asset = object.main_asset.strip("\n")70 object.set_ip(modified_asset)71 object.has_nmap_uri(modified_asset)...

Full Screen

Full Screen

cc_set_hostname_from_dns.py

Source:cc_set_hostname_from_dns.py Github

copy

Full Screen

...28 if interface in info:29 set_short = util.get_cfg_option_bool(_cfg, "set_dns_shortname", False)30 if 'addr' in info[interface] and info[interface]['addr']:31 # Handle IPv4 address32 set_hostname =_set_hostname(_cfg, _cloud, log,33 info[interface]['addr'], set_short)34 elif 'addr6' in info[interface] and info[interface]['addr6']:35 # Handle IPv6 addresses36 for ipaddr in info[interface]['addr6']:37 ipaddr = ipaddr.split('/')[0]38 set_hostname = _set_hostname(_cfg, _cloud, log, ipaddr,39 set_short)40 if set_hostname:41 break42 else:43 log.warning('Interface %s was not found on the system. '44 'Interfaces found on system: %s' % (interface,45 info.keys()))46 # Reverse lookup failed, fall back to cc_set_hostname way.47 if not set_hostname:48 (short_hostname, fqdn) = util.get_hostname_fqdn(_cfg, _cloud)49 try:50 log.info('Fall back to setting hostname on VM as %s' % fqdn)51 _cloud.distro.set_hostname(short_hostname, fqdn=fqdn)52 except Exception:53 util.logexc(log, "Failed to set the hostname to %s", fqdn)54 raise55def _set_hostname(_cfg, _cloud, log, ipaddr, set_short):56 log.debug('ipaddr: %s' % ipaddr)57 try:58 addrinfo = socket.getaddrinfo(ipaddr, None, 0, socket.SOCK_STREAM)59 log.debug('addrinfo: %s' % addrinfo)60 if addrinfo:61 (fqdn, port) = socket.getnameinfo(addrinfo[0][4],62 socket.NI_NAMEREQD)63 if fqdn:64 log.info('Setting hostname on VM as %s' % fqdn)65 hostname = fqdn.split('.')[0] if set_short else fqdn66 _cloud.distro.set_hostname(hostname, fqdn=hostname)67 return True68 except socket.error:69 log.warning('No hostname found for IP address %s' % ipaddr)70 except socket.gaierror:71 log.warning('Unable to resolve hostname for IP address %s' % ipaddr)...

Full Screen

Full Screen

set_host_name.py

Source:set_host_name.py Github

copy

Full Screen

1import json2import sys3import re4rec_data = sys.stdin.read()5rec_json = json.loads(rec_data)6set_hostname = rec_json['hostname']7conf = open('/etc/hosts',mode='r')8write_conf = conf.read()9conf.close()10write_conf = re.sub('127.0.1.1.*\n','127.0.1.1\t'+str(set_hostname)+'\n',write_conf)11conf = open('/etc/hosts',mode='w')12conf.write(write_conf)13conf.close()14conf = open('/etc/hostname',mode='w')15conf.write(set_hostname)16conf.close()...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run autotest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful