summaryrefslogtreecommitdiff
path: root/test/integration/roles/test_win_stat/tasks/main.yml
blob: 5197c27fef4f150bc7c4e71f401589a5668ce38d (plain)
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
# test code for the win_stat module
# (c) 2014, Chris Church <chris@ninemoreminutes.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/>.

- name: test win_stat module on file
  win_stat: path="C:/Windows/win.ini"
  register: win_stat_file

- name: check win_stat file result
  assert: 
    that:
      - "win_stat_file.stat.exists"
      - "not win_stat_file.stat.isdir"
      - "win_stat_file.stat.size > 0"
      - "win_stat_file.stat.md5"
      - "win_stat_file.stat.extension"
      - "win_stat_file.stat.attributes"
      - "win_stat_file.stat.owner"
      - "win_stat_file.stat.creationtime"
      - "win_stat_file.stat.lastaccesstime"
      - "win_stat_file.stat.lastwritetime"
      - "not win_stat_file|failed"
      - "not win_stat_file|changed"

- name: test win_stat module on file without md5 and backslashes
  win_stat: path="C:\Windows\win.ini" get_md5=no
  register: win_stat_file_no_md5

- name: check win_stat file result without md5
  assert: 
    that:
      - "win_stat_file_no_md5.stat.exists"
      - "not win_stat_file_no_md5.stat.isdir"
      - "win_stat_file_no_md5.stat.size > 0"
      - "not win_stat_file_no_md5.stat.md5|default('')"
      - "win_stat_file_no_md5.stat.extension"
      - "win_stat_file_no_md5.stat.attributes"
      - "win_stat_file_no_md5.stat.owner"
      - "win_stat_file_no_md5.stat.creationtime"
      - "win_stat_file_no_md5.stat.lastaccesstime"
      - "win_stat_file_no_md5.stat.lastwritetime"
      - "not win_stat_file_no_md5|failed"
      - "not win_stat_file_no_md5|changed"

- name: test win_stat module on directory
  win_stat: path="C:\\Windows"
  register: win_stat_dir

- name: check win_stat dir result
  assert: 
    that:
      - "win_stat_dir.stat.exists"
      - "win_stat_dir.stat.isdir"
      - "win_stat_dir.stat.extension == ''"
      - "win_stat_dir.stat.attributes"
      - "win_stat_dir.stat.owner"
      - "win_stat_dir.stat.creationtime"
      - "win_stat_dir.stat.lastaccesstime"
      - "win_stat_dir.stat.lastwritetime"
      - "not win_stat_dir|failed"
      - "not win_stat_dir|changed"

- name: test win_stat module non-existent path
  win_stat: path="C:/this_file_should_not_exist.txt"
  register: win_stat_missing

- name: check win_stat missing result
  assert: 
    that:
      - "not win_stat_missing.stat.exists"
      - "not win_stat_missing|failed"
      - "not win_stat_missing|changed"

- name: test win_stat module without path argument
  action: win_stat
  register: win_stat_no_args
  ignore_errors: true

- name: check win_stat result with no path argument
  assert:
    that:
      - "win_stat_no_args|failed"
      - "win_stat_no_args.msg"
      - "not win_stat_no_args|changed"