Skip to content

Commit

Permalink
[PR #6304/08f14f3e backport][stable-6] pids tests: 'some-' is not tha…
Browse files Browse the repository at this point in the history
…t a unique pattern. (#6306)

pids tests: 'some-' is not that a unique pattern. (#6304)

* 'some-' is not that a unique pattern.

* Add debugging help.

* Avoid passing the name as a parameter to obtainpid.sh.

(cherry picked from commit 08f14f3)

Co-authored-by: Felix Fontein <[email protected]>
  • Loading branch information
patchback[bot] and felixfontein authored Apr 9, 2023
1 parent c3e1715 commit 24378fd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
24 changes: 16 additions & 8 deletions tests/integration/targets/pids/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

- name: "Picking a random process name"
set_fact:
random_name: some-random-long-name-{{ 99999999 | random }}
random_name: some-random-long-name-{{ 10000000000 + (9999999999 | random) }}

- name: Copy the fake 'sleep' source code
copy:
Expand All @@ -43,15 +43,14 @@
- name: Compile fake 'sleep' binary
command: cc {{ remote_tmp_dir }}/sleeper.c -o {{ remote_tmp_dir }}/{{ random_name }}

- name: Copy helper script
copy:
- name: Copy templated helper script
template:
src: obtainpid.sh
dest: "{{ remote_tmp_dir }}/obtainpid.sh"
mode: 0755

- name: "Run the fake 'sleep' binary"
command: "sh {{ remote_tmp_dir }}/obtainpid.sh '{{ remote_tmp_dir }}/{{ random_name }}' '{{ remote_tmp_dir }}/obtainpid.txt'"

command: sh {{ remote_tmp_dir }}/obtainpid.sh
async: 100
poll: 0

Expand All @@ -66,17 +65,17 @@

- name: "Checking that exact non-substring matches are required"
pids:
name: "{{ random_name[0:5] }}"
name: "{{ random_name[0:25] }}"
register: exactpidmatch

- name: "Checking that patterns can be used with the pattern option"
pids:
pattern: "{{ random_name[0:5] }}"
pattern: "{{ random_name[0:25] }}"
register: pattern_pid_match

- name: "Checking that case-insensitive patterns can be used with the pattern option"
pids:
pattern: "{{ random_name[0:5] | upper }}"
pattern: "{{ random_name[0:25] | upper }}"
ignore_case: true
register: caseinsensitive_pattern_pid_match

Expand All @@ -90,6 +89,15 @@
src: "{{ remote_tmp_dir }}/obtainpid.txt"
register: newpid

- name: Gather all processes to make debugging easier
command: ps aux
register: result
no_log: true

- name: List all processes to make debugging easier
debug:
var: result.stdout_lines

- name: "Verify that the Process IDs (PIDs) returned is not empty and also equal to the PIDs obtained in console"
assert:
that:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later

"$1" 100 &
echo "$!" > "$2"
"{{ remote_tmp_dir }}/{{ random_name }}" 100 &
echo "$!" > "{{ remote_tmp_dir }}/obtainpid.txt"

0 comments on commit 24378fd

Please sign in to comment.