main.yml 6.23 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
# Test code for the command and shell modules.
# (c) 2014, Richard Isaacson <richard.c.isaacson@gmail.com>

# 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 <http://www.gnu.org/licenses/>.

- set_fact: output_dir_test={{output_dir}}/test_command_shell

- name: make sure our testing sub-directory does not exist
  file: path="{{ output_dir_test }}" state=absent

- name: create our testing sub-directory
  file: path="{{ output_dir_test }}" state=directory

- name: prep our test script
  copy: src=test.sh dest="{{ output_dir_test }}" mode=0755

- name: prep our test script
  copy: src=create_afile.sh dest="{{ output_dir_test }}" mode=0755

- name: prep our test script
  copy: src=remove_afile.sh dest="{{ output_dir_test }}" mode=0755

##
## command
##

- name: execute the test.sh script via command
  command: "{{output_dir_test | expanduser}}/test.sh"
  register: command_result0

- name: assert that the script executed correctly
  assert:
    that:
      - "command_result0.rc == 0"
      - "command_result0.stderr == ''"
      - "command_result0.stdout == 'win'"

# executable

# FIXME doesn't have the expected stdout.

#- name: execute the test.sh script with executable via command
#  command: "{{output_dir_test | expanduser}}/test.sh executable=/bin/bash"
#  register: command_result1
#
#- name: assert that the script executed correctly with command
#  assert:
#    that:
#      - "command_result1.rc == 0"
#      - "command_result1.stderr == ''"
#      - "command_result1.stdout == 'win'"

# chdir

- name: execute the test.sh script with chdir via command
  command: ./test.sh chdir="{{output_dir_test | expanduser}}"
  register: command_result2

- name: assert that the script executed correctly with chdir
  assert:
    that:
      - "command_result2.rc == 0"
      - "command_result2.stderr == ''"
      - "command_result2.stdout == 'win'"

# creates

- name: verify that afile.txt is absent
  file: path={{output_dir_test}}/afile.txt state=absent

- name: create afile.txt with create_afile.sh via command
  shell: "{{output_dir_test | expanduser}}/create_afile.sh {{output_dir_test | expanduser}}/afile.txt creates={{output_dir_test | expanduser}}/afile.txt"

- name: verify that afile.txt is present
  file: path={{output_dir_test}}/afile.txt state=file

# removes

- name: remove afile.txt with remote_afile.sh via command
  shell: "{{output_dir_test | expanduser}}/remove_afile.sh {{output_dir_test | expanduser}}/afile.txt removes={{output_dir_test | expanduser}}/afile.txt"

- name: verify that afile.txt is absent
  file: path={{output_dir_test}}/afile.txt state=absent
  register: command_result3

- name: assert that the file was removed by the script
  assert:
    that:
      - "command_result3.changed != True"

##
## shell
##

- name: execute the test.sh script
  shell: "{{output_dir_test | expanduser}}/test.sh"
  register: shell_result0

- name: assert that the script executed correctly
  assert:
    that:
      - "shell_result0.rc == 0"
      - "shell_result0.stderr == ''"
      - "shell_result0.stdout == 'win'"
118
      - "not shell_result0.warnings"
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146

# executable

# FIXME doesn't pass the expected stdout

#- name: execute the test.sh script
#  shell: "{{output_dir_test | expanduser}}/test.sh executable=/bin/bash"
#  register: shell_result1
#
#- name: assert that the shell executed correctly
#  assert:
#    that:
#      - "shell_result1.rc == 0"
#      - "shell_result1.stderr == ''"
#      - "shell_result1.stdout == 'win'"

# chdir

- name: execute the test.sh script with chdir
  shell: ./test.sh chdir="{{output_dir_test | expanduser}}"
  register: shell_result2

- name: assert that the shell executed correctly with chdir
  assert:
    that:
      - "shell_result2.rc == 0"
      - "shell_result2.stderr == ''"
      - "shell_result2.stdout == 'win'"
147
      - "not shell_result2.warnings"
148 149 150 151 152 153 154 155 156 157 158 159 160 161

# creates

- name: verify that afile.txt is absent
  file: path={{output_dir_test}}/afile.txt state=absent

- name: execute the test.sh script with chdir
  shell: "{{output_dir_test | expanduser}}/test.sh > {{output_dir_test | expanduser}}/afile.txt creates={{output_dir_test | expanduser}}/afile.txt"

- name: verify that afile.txt is present
  file: path={{output_dir_test}}/afile.txt state=file

# removes

162
- name: remove afile.txt using rm
163
  shell: rm {{output_dir_test | expanduser}}/afile.txt removes={{output_dir_test | expanduser}}/afile.txt
164 165 166 167 168 169
  register: shell_result4

- name: assert that using rm under shell causes a warning
  assert:
    that:
      - "shell_result4.warnings"
170 171 172

- name: verify that afile.txt is absent
  file: path={{output_dir_test}}/afile.txt state=absent
173
  register: shell_result5
174 175 176 177

- name: assert that the file was removed by the shell
  assert:
    that:
178
      - "shell_result5.changed == False"
179 180

- name: execute a shell command using a literal multiline block
181 182
  args:
    executable: /bin/bash
183
  shell: |
184 185
    echo this is a \
    "multiline echo" \
186
    "with a new line
187
    in quotes" \
188
    | sha1sum \
189
    | tr -s ' ' \
190
    | cut -f1 -d ' '
191
    echo "this is a second line"
192
  register: shell_result6
193

194
- debug: var=shell_result6
195 196 197 198

- name: assert the multiline shell command ran as expected
  assert:
    that:
199
      - "shell_result6.changed"
200
      - "shell_result6.stdout == '5575bb6b71c9558db0b6fbbf2f19909eeb4e3b98\nthis is a second line'"
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216

- name: execute a shell command using a literal multiline block with arguments in it
  shell: |
    executable=/bin/bash
    creates={{output_dir_test | expanduser}}/afile.txt
    echo "test"
  register: shell_result7

- name: assert the multiline shell command with arguments in it run as expected
  assert:
    that:
      - "shell_result7.changed"
      - "shell_result7.stdout == 'test'"

- name: remove the previously created file
  file: path={{output_dir_test}}/afile.txt state=absent