summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/var_templating/test_connection_vars.yml
blob: 2b22eea68a8aaba5b17de0d386a0b97f351ded03 (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
---
- hosts: localhost
  gather_facts: no
  vars:
    my_var:
      become_method: sudo
      connection: local
      become: 1
  tasks:

  - include_vars: "./vars/connection.yml"

  - command: whoami
    ignore_errors: yes
    register: result
    failed_when: result is not success and (result.module_stderr is defined or result.module_stderr is defined)

  - assert:
      that:
        - "'sudo' in result.module_stderr"
    when: result is not success and result.module_stderr is defined

  - assert:
      that:
        - "'Invalid become method specified'  not in result.msg"
    when: result is not success and result.msg is defined