aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test-configure-app.yml
blob: 15987fd8248288743e2d529e8b2027205a064e99 (plain) (blame)
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
---
- name: Deploy an app & configure system details on clever
  hosts: localhost
  remote_user: root
  pre_tasks:
    - file:
        state: absent
        path: ../clever-commands
  roles:
    - role: clever
      vars:
        clever_token: 123abc
        clever_secret: cba321
        clever_app: app_00000000-0000-0000-0000-000000000000
        clever_domain: my-app.example.org
        clever_syslog_server: 172.10.0.1:54000
        clever_build_flavor: M
  post_tasks:
    - name: Check CC_RUN_COMMAND is not part of the environment
      fail:
        msg: "CC_RUN_COMMAND env variable should not be present in the environment dict"
      when: clever_env.CC_RUN_COMMAND is defined
    - name: Check stubbed commands
      command: "{{ item.cmd }}"
      ignore_errors: true
      vars:
        display: "{{ item.display }}"
      with_list:
        - cmd: "grep deploy ../clever-commands"
          display: "Expected 'clever deploy' command to be called"
        - cmd: "grep scale ../clever-commands"
          display: "Expected 'clever scale' command to be called"
        - cmd: "grep domain ../clever-commands"
          display: "Expected 'clever domain' command to be called"
        - cmd: "grep drain ../clever-commands"
          display: "Expected 'clever drain' command to be called"
        - cmd: "grep -v restart ../clever-commands"
          display: "Expected 'clever restart' command to NOT be called"
      register: tests_results
    - name: show results
      debug:
        msg:
          - "failed_results: {{ failed_results }}"
          - "success_results: {{ success_results }}"
      failed_when: tests_results is failed
      vars:
        failed_results: "{{ tests_results.results | selectattr('failed') | map(attribute='item.display') | list }}"
        success_results: "{{ tests_results.results | rejectattr('failed') | map(attribute='item.display') | list }}"