summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/user/tasks/test_local_expires.yml
blob: e66203530c5b71b953d73a8fd1cf21fd8d6f8b5b (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
---
## local user expires
# Date is March 3, 2050

- name: Remove local_ansibulluser
  user:
    name: local_ansibulluser
    state: absent
    remove: yes
    local: yes
  tags:
    - user_test_local_mode

- name: Set user expiration
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: 2529881062
  register: user_test_local_expires1
  tags:
    - timezone
    - user_test_local_mode

- name: Set user expiration again to ensure no change is made
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: 2529881062
  register: user_test_local_expires2
  tags:
    - timezone
    - user_test_local_mode

- name: Ensure that account with expiration was created and did not change on subsequent run
  assert:
    that:
      - user_test_local_expires1 is changed
      - user_test_local_expires2 is not changed
  tags:
    - user_test_local_mode

- name: Verify expiration date for Linux
  block:
    - name: LINUX | Get expiration date for local_ansibulluser
      getent:
        database: shadow
        key: local_ansibulluser
      tags:
        - user_test_local_mode

    - name: LINUX | Ensure proper expiration date was set
      assert:
        that:
          - getent_shadow['local_ansibulluser'][6] == '29281'
      tags:
        - user_test_local_mode
  when: ansible_facts.os_family in ['RedHat', 'Debian', 'Suse']

- name: Change timezone
  timezone:
    name: America/Denver
  register: original_timezone
  tags:
    - timezone
    - user_test_local_mode

- name: Change system timezone to make sure expiration comparison works properly
  block:
    - name: Create user with expiration again to ensure no change is made in a new timezone
      user:
        name: local_ansibulluser
        state: present
        local: yes
        expires: 2529881062
      register: user_test_local_different_tz
      tags:
        - timezone
        - user_test_local_mode

    - name: Ensure that no change was reported
      assert:
        that:
          - user_test_local_different_tz is not changed
      tags:
        - timezone
        - user_test_local_mode

  always:
    - name: Restore original timezone - {{ original_timezone.diff.before.name }}
      timezone:
        name: "{{ original_timezone.diff.before.name }}"
      when: original_timezone.diff.before.name != "n/a"
      tags:
        - timezone
        - user_test_local_mode

    - name: Restore original timezone when n/a
      file:
        path: /etc/sysconfig/clock
        state: absent
      when:
        - original_timezone.diff.before.name == "n/a"
        - "'/etc/sysconfig/clock' in original_timezone.msg"
      tags:
        - timezone
        - user_test_local_mode


- name: Unexpire user
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: -1
  register: user_test_local_expires3
  tags:
    - user_test_local_mode

- name: Verify un expiration date for Linux
  block:
    - name: LINUX | Get expiration date for local_ansibulluser
      getent:
        database: shadow
        key: local_ansibulluser
      tags:
        - user_test_local_mode

    - name: LINUX | Ensure proper expiration date was set
      assert:
        msg: "expiry is supposed to be empty or -1, not {{ getent_shadow['local_ansibulluser'][6] }}"
        that:
          - not getent_shadow['local_ansibulluser'][6] or getent_shadow['local_ansibulluser'][6] | int < 0
      tags:
        - user_test_local_mode
  when: ansible_facts.os_family in ['RedHat', 'Debian', 'Suse']

- name: Verify un expiration date for Linux/BSD
  block:
    - name: Unexpire user again to check for change
      user:
        name: local_ansibulluser
        state: present
        local: yes
        expires: -1
      register: user_test_local_expires4
      tags:
        - user_test_local_mode

    - name: Ensure first expiration reported a change and second did not
      assert:
        msg: The second run of the expiration removal task reported a change when it should not
        that:
          - user_test_local_expires3 is changed
          - user_test_local_expires4 is not changed
      tags:
        - user_test_local_mode
  when: ansible_facts.os_family in ['RedHat', 'Debian', 'Suse', 'FreeBSD']

# Test setting no expiration when creating a new account
# https://github.com/ansible/ansible/issues/44155
- name: Remove local_ansibulluser
  user:
    name: local_ansibulluser
    state: absent
    remove: yes
    local: yes
  tags:
    - user_test_local_mode

- name: Create user account without expiration
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: -1
  register: user_test_local_create_no_expires_1
  tags:
    - user_test_local_mode

- name: Create user account without expiration again
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: -1
  register: user_test_local_create_no_expires_2
  tags:
    - user_test_local_mode

- name: Ensure changes were made appropriately
  assert:
    msg: Setting 'expires='-1 resulted in incorrect changes
    that:
      - user_test_local_create_no_expires_1 is changed
      - user_test_local_create_no_expires_2 is not changed
  tags:
    - user_test_local_mode

- name: Verify un expiration date for Linux
  block:
    - name: LINUX | Get expiration date for local_ansibulluser
      getent:
        database: shadow
        key: local_ansibulluser
      tags:
        - user_test_local_mode

    - name: LINUX | Ensure proper expiration date was set
      assert:
        msg: "expiry is supposed to be empty or -1, not {{ getent_shadow['local_ansibulluser'][6] }}"
        that:
          - not getent_shadow['local_ansibulluser'][6] or getent_shadow['local_ansibulluser'][6] | int < 0
      tags:
        - user_test_local_mode
  when: ansible_facts.os_family in ['RedHat', 'Debian', 'Suse']

# Test setting epoch 0 expiration when creating a new account, then removing the expiry
# https://github.com/ansible/ansible/issues/47114
- name: Remove local_ansibulluser
  user:
    name: local_ansibulluser
    state: absent
    remove: yes
    local: yes
  tags:
    - user_test_local_mode

- name: Create user account with epoch 0 expiration
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: 0
  register: user_test_local_expires_create0_1
  tags:
    - user_test_local_mode

- name: Create user account with epoch 0 expiration again
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: 0
  register: user_test_local_expires_create0_2
  tags:
    - user_test_local_mode

- name: Change the user account to remove the expiry time
  user:
    name: local_ansibulluser
    expires: -1
    local: yes
  register: user_test_local_remove_expires_1
  tags:
    - user_test_local_mode

- name: Change the user account to remove the expiry time again
  user:
    name: local_ansibulluser
    expires: -1
    local: yes
  register: user_test_local_remove_expires_2
  tags:
    - user_test_local_mode


- name: Verify un expiration date for Linux
  block:
    - name: LINUX | Ensure changes were made appropriately
      assert:
        msg: Creating an account with 'expries=0' then removing that expriation with 'expires=-1' resulted in incorrect changes
        that:
          - user_test_local_expires_create0_1 is changed
          - user_test_local_expires_create0_2 is not changed
          - user_test_local_remove_expires_1 is changed
          - user_test_local_remove_expires_2 is not changed
      tags:
        - user_test_local_mode

    - name: LINUX | Get expiration date for local_ansibulluser
      getent:
        database: shadow
        key: local_ansibulluser
      tags:
        - user_test_local_mode

    - name: LINUX | Ensure proper expiration date was set
      assert:
        msg: "expiry is supposed to be empty or -1, not {{ getent_shadow['local_ansibulluser'][6] }}"
        that:
          - not getent_shadow['local_ansibulluser'][6] or getent_shadow['local_ansibulluser'][6] | int < 0
      tags:
        - user_test_local_mode
  when: ansible_facts.os_family in ['RedHat', 'Debian', 'Suse']

# Test expiration with a very large negative number. This should have the same
# result as setting -1.
- name: Set expiration date using very long negative number
  user:
    name: local_ansibulluser
    state: present
    local: yes
    expires: -2529881062
  register: user_test_local_expires5
  tags:
    - user_test_local_mode

- name: Ensure no change was made
  assert:
    that:
      - user_test_local_expires5 is not changed
  tags:
    - user_test_local_mode

- name: Verify un expiration date for Linux
  block:
    - name: LINUX | Get expiration date for local_ansibulluser
      getent:
        database: shadow
        key: local_ansibulluser
      tags:
        - user_test_local_mode

    - name: LINUX | Ensure proper expiration date was set
      assert:
        msg: "expiry is supposed to be empty or -1, not {{ getent_shadow['local_ansibulluser'][6] }}"
        that:
          - not getent_shadow['local_ansibulluser'][6] or getent_shadow['local_ansibulluser'][6] | int < 0
      tags:
        - user_test_local_mode
  when: ansible_facts.os_family in ['RedHat', 'Debian', 'Suse']