From ec36b4968cd7989fbacbe8bd99a6e8c39ea0292a Mon Sep 17 00:00:00 2001 From: John R Barker Date: Tue, 10 Jan 2017 19:11:00 +0000 Subject: [PATCH] Junos aws (#20083) * junos Use inventory_hostname_short * Basic Test for validating VyOS bringup in AWS --- test/integration/targets/net_command/aliases | 1 + .../targets/net_command/tasks/main.yml | 35 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 test/integration/targets/net_command/aliases create mode 100644 test/integration/targets/net_command/tasks/main.yml diff --git a/test/integration/targets/net_command/aliases b/test/integration/targets/net_command/aliases new file mode 100644 index 0000000000..1e984071f1 --- /dev/null +++ b/test/integration/targets/net_command/aliases @@ -0,0 +1 @@ +network/basics diff --git a/test/integration/targets/net_command/tasks/main.yml b/test/integration/targets/net_command/tasks/main.yml new file mode 100644 index 0000000000..18e936e665 --- /dev/null +++ b/test/integration/targets/net_command/tasks/main.yml @@ -0,0 +1,35 @@ +--- +# Test code for the net_command module. +# (c) 2017, Red Hat + +# This file is part of Ansible +# +# Ansible is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Ansible is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see . + + +# This is a placeholder test, will be fleshed out by gundalow at a later point + +- name: Check we can communicate using net_command + net_command: show version + connection: network_cli + register: result + +- debug: + msg: "{{ result.stdout }}" + +- name: Ensure output is valid + assert: + that: + - result.changed == true + - "'VyOS' in result.stdout"