Add ios changes for Python3 (#24601)

* Add ios changes for Python3

Make `execute_command` arguments and its
return value complaint to PY3 changes
made in PR #24431
pep8 fixes

* Fix CI issues

* Fix review comment
pull/24733/head
Ganesh Nalawade 7 years ago committed by GitHub
parent 3eb8142a41
commit 38eeeb755d

@ -25,6 +25,7 @@
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# #
from ansible.module_utils._text import to_text
from ansible.module_utils.basic import env_fallback, return_values from ansible.module_utils.basic import env_fallback, return_values
from ansible.module_utils.network_common import to_list, ComplexList from ansible.module_utils.network_common import to_list, ComplexList
from ansible.module_utils.connection import exec_command from ansible.module_utils.connection import exec_command
@ -43,20 +44,22 @@ ios_argument_spec = {
'provider': dict(type='dict'), 'provider': dict(type='dict'),
} }
def check_args(module, warnings): def check_args(module, warnings):
provider = module.params['provider'] or {} provider = module.params['provider'] or {}
for key in ios_argument_spec: for key in ios_argument_spec:
if key not in ['provider', 'authorize'] and module.params[key]: if key not in ['provider', 'authorize'] and module.params[key]:
warnings.append('argument %s has been deprecated and will be ' warnings.append('argument %s has been deprecated and will be removed in a future version' % key)
'removed in a future version' % key)
if provider: if provider:
for param in ('auth_pass', 'password'): for param in ('auth_pass', 'password'):
if provider.get(param): if provider.get(param):
module.no_log_values.update(return_values(provider[param])) module.no_log_values.update(return_values(provider[param]))
def get_defaults_flag(module): def get_defaults_flag(module):
rc, out, err = exec_command(module, 'show running-config ?') rc, out, err = exec_command(module, 'show running-config ?')
out = to_text(out, errors='surrogate_then_replace')
commands = set() commands = set()
for line in out.splitlines(): for line in out.splitlines():
@ -68,6 +71,7 @@ def get_defaults_flag(module):
else: else:
return 'full' return 'full'
def get_config(module, flags=[]): def get_config(module, flags=[]):
cmd = 'show running-config ' cmd = 'show running-config '
cmd += ' '.join(flags) cmd += ' '.join(flags)
@ -78,11 +82,12 @@ def get_config(module, flags=[]):
except KeyError: except KeyError:
rc, out, err = exec_command(module, cmd) rc, out, err = exec_command(module, cmd)
if rc != 0: if rc != 0:
module.fail_json(msg='unable to retrieve current config', stderr=err) module.fail_json(msg='unable to retrieve current config', stderr=to_text(err, errors='surrogate_then_replace'))
cfg = str(out).strip() cfg = to_text(out, errors='surrogate_then_replace').strip()
_DEVICE_CONFIGS[cmd] = cfg _DEVICE_CONFIGS[cmd] = cfg
return cfg return cfg
def to_commands(module, commands): def to_commands(module, commands):
spec = { spec = {
'command': dict(key=True), 'command': dict(key=True),
@ -100,21 +105,22 @@ def run_commands(module, commands, check_rc=True):
cmd = module.jsonify(cmd) cmd = module.jsonify(cmd)
rc, out, err = exec_command(module, cmd) rc, out, err = exec_command(module, cmd)
if check_rc and rc != 0: if check_rc and rc != 0:
module.fail_json(msg=err, rc=rc) module.fail_json(msg=to_text(err, errors='surrogate_then_replace'), rc=rc)
responses.append(out) responses.append(to_text(out, errors='surrogate_then_replace'))
return responses return responses
def load_config(module, commands): def load_config(module, commands):
rc, out, err = exec_command(module, 'configure terminal') rc, out, err = exec_command(module, 'configure terminal')
if rc != 0: if rc != 0:
module.fail_json(msg='unable to enter configuration mode', err=err) module.fail_json(msg='unable to enter configuration mode', err=to_text(out, errors='surrogate_then_replace'))
for command in to_list(commands): for command in to_list(commands):
if command == 'end': if command == 'end':
continue continue
rc, out, err = exec_command(module, command) rc, out, err = exec_command(module, command)
if rc != 0: if rc != 0:
module.fail_json(msg=err, command=command, rc=rc) module.fail_json(msg=to_text(err, errors='surrogate_then_replace'), command=command, rc=rc)
exec_command(module, 'end') exec_command(module, 'end')

@ -23,7 +23,7 @@ import json
import re import re
from ansible.errors import AnsibleConnectionFailure from ansible.errors import AnsibleConnectionFailure
from ansible.module_utils._text import to_bytes from ansible.module_utils._text import to_text, to_bytes
from ansible.plugins.terminal import TerminalBase from ansible.plugins.terminal import TerminalBase
@ -36,7 +36,7 @@ class TerminalModule(TerminalBase):
terminal_stderr_re = [ terminal_stderr_re = [
re.compile(br"% ?Error"), re.compile(br"% ?Error"),
#re.compile(br"^% \w+", re.M), # re.compile(br"^% \w+", re.M),
re.compile(br"% ?Bad secret"), re.compile(br"% ?Bad secret"),
re.compile(br"invalid input", re.I), re.compile(br"invalid input", re.I),
re.compile(br"(?:incomplete|ambiguous) command", re.I), re.compile(br"(?:incomplete|ambiguous) command", re.I),

@ -66,7 +66,7 @@ lib/ansible/module_utils/gcdns.py
lib/ansible/module_utils/gce.py lib/ansible/module_utils/gce.py
lib/ansible/module_utils/gcp.py lib/ansible/module_utils/gcp.py
lib/ansible/module_utils/infinibox.py lib/ansible/module_utils/infinibox.py
lib/ansible/module_utils/ios.py lib/ansible/module_utils/iosxr.py
lib/ansible/module_utils/json_utils.py lib/ansible/module_utils/json_utils.py
lib/ansible/module_utils/junos.py lib/ansible/module_utils/junos.py
lib/ansible/module_utils/known_hosts.py lib/ansible/module_utils/known_hosts.py
@ -840,7 +840,7 @@ lib/ansible/plugins/strategy/free.py
lib/ansible/plugins/strategy/linear.py lib/ansible/plugins/strategy/linear.py
lib/ansible/plugins/terminal/asa.py lib/ansible/plugins/terminal/asa.py
lib/ansible/plugins/terminal/eos.py lib/ansible/plugins/terminal/eos.py
lib/ansible/plugins/terminal/ios.py lib/ansible/plugins/terminal/iosxr.py
lib/ansible/plugins/terminal/junos.py lib/ansible/plugins/terminal/junos.py
lib/ansible/plugins/terminal/nxos.py lib/ansible/plugins/terminal/nxos.py
lib/ansible/plugins/test/core.py lib/ansible/plugins/test/core.py

Loading…
Cancel
Save