summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/throttle/test_throttle.yml
blob: 8990ea2f21a96ed8c3ace3458b8b327a74b9bf52 (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
---
- hosts: localhosts
  gather_facts: false
  strategy: linear
  run_once: yes
  tasks:
    - name: Clean base throttledir '{{ base_throttledir }}'
      file:
        state: absent
        path: '{{ base_throttledir }}'
      ignore_errors: yes

    - name: Create throttledir '{{ throttledir }}'
      file:
        state: directory
        path: '{{ throttledir }}'
      loop: "{{ range(1, test_count|int)|list }}"
      loop_control:
        loop_var: test_id
      vars:
        test_count: "{{ 9 if lookup('env', 'SELECTED_STRATEGY') in ['free', 'host_pinned'] else 2 }}"

- hosts: localhosts
  gather_facts: false
  strategy: "{{ lookup('env', 'SELECTED_STRATEGY') }}"
  tasks:
    - block:
      - name: "Test 1 (max throttle: 3)"
        script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 3"
        vars:
          test_id: 1
      throttle: 3
    - block:
      - name: "Test 2 (max throttle: 5)"
        script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 5"
        throttle: 5
        vars:
          test_id: 2
      - block:
        - name: "Test 3 (max throttle: 8)"
          script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 8"
          throttle: 8
        throttle: 6
        vars:
           test_id: 3
      - block:
        - block:
          - name: "Test 4 (max throttle: 8)"
            script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 8"
            throttle: 8
            vars:
              test_id: 4
          throttle: 6
        throttle: 12
      throttle: 15
    - block:
      - name: "Teat 5 (max throttle: 3)"
        script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 3"
        vars:
          test_id: 5
      throttle: 3
    - block:
      - name: "Test 6 (max throttle: 5)"
        script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 5"
        throttle: 5
        vars:
          test_id: 6
      - block:
        - name: "Test 7 (max throttle: 6)"
          script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 6"
          throttle: 6
          vars:
            test_id: 7
        throttle: 3
      - block:
        - block:
          - name: "Test 8 (max throttle: 8)"
            script: "test_throttle.py {{throttledir}} {{inventory_hostname}} 8"
            throttle: 8
            vars:
              test_id: 8
          throttle: 6
        throttle: 4
      throttle: 2