File: test_tasks.yaml

package info (click to toggle)
python-ara 1.5.8-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,460 kB
  • sloc: python: 6,493; sh: 215; makefile: 15; javascript: 2
file content (122 lines) | stat: -rw-r--r-- 5,015 bytes parent folder | download
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
#  Copyright (c) 2019 Red Hat, Inc.
#
#  This file is part of ARA Records Ansible.
#
#  ARA 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.
#
#  ARA 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 ARA.  If not, see <http://www.gnu.org/licenses/>.

# This is a list of tasks instead of a playbook. They are meant to be included
# as post_tasks inside the same play context as our roles so they have access
# to the play and role variables.

- when: ara_api_install_method == "source"
  block:
    - name: Set defaults for Ansible package name and version
      set_fact:
        ara_tests_ansible_name: "{{ ara_tests_ansible_name | default('ansible') }}"
        ara_tests_ansible_version: "{{ ara_tests_ansible_version | default('latest') }}"

    # If a version is not explicitly set we want to make sure to
    # completely omit the version argument to pip, as it will be coming
    # from the long-form integration_ansible_name variable.  Additionally, if
    # the version is the special value "latest", then we also want to omit
    # any version number, but also set the package state to "latest".
    - name: Set Ansible version for installation
      set_fact:
        _install_ansible_version: "{{ ara_tests_ansible_version }}"
      when: ara_tests_ansible_version not in ("", "latest")

    - name: Set Ansible package state for installation
      set_fact:
        _install_ansible_state: latest
      when: ara_tests_ansible_version == "latest"

    - name: Install Ansible alongside ARA
      pip:
        name: "{{ ara_tests_ansible_name }}"
        version: "{{ _install_ansible_version | default(omit, True) }}"
        state: "{{ _install_ansible_state | default(omit, True) }}"
        virtualenv: "{{ ara_api_venv | bool | ternary(ara_api_venv_path, omit) }}"
        virtualenv_command: /usr/bin/python3 -m venv

- name: Install Ansible from distribution packages
  become: yes
  package:
    name: ansible
    state: present
  when: ara_api_install_method == "distribution"

- name: Get ARA plugins directory
  environment:
    PATH: "{{ path_with_virtualenv | default('/usr/bin:/usr/local/bin') }}"
  command: python3 -m ara.setup.plugins
  changed_when: false
  register: ara_setup_plugins

- name: Record Zuul metadata for ARA playbooks
  include_tasks: zuul_metadata.yaml
  when: zuul is defined

# These aren't in the same task (i.e, with loop) so we can tell individual test
# runs apart easily rather than keeping all the output bundled in a single task.
- environment:
    ANSIBLE_CALLBACK_PLUGINS: "{{ ara_setup_plugins.stdout }}/callback"
    ANSIBLE_ACTION_PLUGINS: "{{ ara_setup_plugins.stdout }}/action"
    ANSIBLE_LOOKUP_PLUGINS: "{{ ara_setup_plugins.stdout }}/lookup"
    ARA_SETTINGS: "{{ ara_api_settings }}"
    ARA_API_CLIENT: "{{ ara_api_client | default('offline') }}"
    ARA_API_SERVER: "{{ ara_api_server | default('http://127.0.0.1:8000') }}"
    ARA_DEFAULT_LABELS: "{{ _default_labels | join(', ') | default('default-label') }}"
    PATH: "{{ path_with_virtualenv | default('/usr/bin:/usr/local/bin') }}"
  vars:
    _test_root: "{{ ara_api_source_checkout }}/tests/integration"
  block:
    # smoke.yaml tests setting ara_playbook_name in one of three plays
    - name: Run smoke.yaml integration test
      command: "ansible-playbook -vvv {{ _test_root }}/smoke.yaml"

    - name: Run lookups.yaml integration test
      command: "ansible-playbook -vvv {{ _test_root }}/lookups.yaml"

   - name: Run delegate_to integration tests
      command: "ansible-playbook -vvv {{ _test_root }}/delegate_to.yaml"

    - name: Run free strategy test
      command: "ansible-playbook -vvv {{ _test_root }}/free_strategy.yaml"

    - name: Run hosts.yaml integration test
      command: "ansible-playbook -vvv {{ _test_root }}/hosts.yaml"

    - name: Run import.yaml integration test
      command: "ansible-playbook -vvv {{ _test_root }}/import.yaml"

    # Tests setting ara_playbook_name as an extra var
    - name: Run failed.yaml integration test
      command: >
        ansible-playbook -vvv {{ _test_root }}/failed.yaml -e ara_playbook_name="Failed playbook"
      ignore_errors: yes

    - name: Run incomplete.yaml integration test
      shell: |
        ansible-playbook -vvv {{ _test_root }}/incomplete.yaml &
        sleep 5
        kill $!
      args:
        executable: /bin/bash
      ignore_errors: yes

    - name: Generate static report
      command: ara-manage generate {{ ara_api_root_dir }}/server/static

- name: List static report files
  command: ls -alR {{ ara_api_root_dir }}/server/static