Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[test coverage] Add tests for set_stats #74243

Merged
merged 2 commits into from
Apr 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions test/integration/targets/set_stats/aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shippable/posix/group5
13 changes: 13 additions & 0 deletions test/integration/targets/set_stats/runme.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

set -eux

export ANSIBLE_SHOW_CUSTOM_STATS=yes

# Simple tests
ansible-playbook test_simple.yml

# This playbook does two set_stats calls setting my_int to 10 and 15.
# The aggregated output should add to 25.
output=$(ansible-playbook test_aggregate.yml | grep -c '"my_int": 25')
test "$output" -eq 1
13 changes: 13 additions & 0 deletions test/integration/targets/set_stats/test_aggregate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
- hosts: localhost
gather_facts: false
tasks:
- name: First set_stats
set_stats:
data:
my_int: 10

- name: Second set_stats
set_stats:
data:
my_int: 15
79 changes: 79 additions & 0 deletions test/integration/targets/set_stats/test_simple.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
---
- hosts: localhost
gather_facts: false
tasks:
- name: test simple data with defaults
set_stats:
data:
my_int: 42
my_string: "foo"
register: result

- name: assert simple data return
assert:
that:
- result is succeeded
- not result.changed
- '"ansible_stats" in result'
- '"data" in result.ansible_stats'
- result.ansible_stats.data.my_int == 42
- result.ansible_stats.data.my_string == "foo"
- '"per_host" in result.ansible_stats'
- not result.ansible_stats.per_host
- '"aggregate" in result.ansible_stats'
- result.ansible_stats.aggregate

- name: test per_host and aggregate settings
set_stats:
data:
my_int: 42
per_host: yes
aggregate: no
register: result

- name: assert per_host and aggregate changes
assert:
that:
- result is succeeded
- not result.changed
- '"ansible_stats" in result'
- '"per_host" in result.ansible_stats'
- result.ansible_stats.per_host
- '"aggregate" in result.ansible_stats'
- not result.ansible_stats.aggregate

- name: Test bad call
block:
- name: "EXPECTED FAILURE - test invalid data type"
set_stats:
data:
- 1
- 2

- fail:
msg: "should not get here"
rescue:
- assert:
that:
- ansible_failed_task.name == "EXPECTED FAILURE - test invalid data type"
- ansible_failed_result.msg == "The 'data' option needs to be a dictionary/hash"

- name: Test options from template
set_stats:
data:
my_string: "foo"
aggregate: "x"

- name: Test bad data
block:
- name: "EXPECTED FAILURE - bad data"
set_stats:
data:
.bad: 1
- fail:
msg: "should not get here"
rescue:
- assert:
that:
- ansible_failed_task.name == "EXPECTED FAILURE - bad data"
- ansible_failed_result.msg == "The variable name '.bad' is not valid. Variables must start with a letter or underscore character, and contain only letters, numbers and underscores."