mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-07 06:34:23 -07:00
new module: filesize - create or resize a file, given its size (#2232)
* new module: filesize * description: create or resize a file, given its size * with integration tests * Update plugins/modules/files/filesize.py (version_added) Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update filesize.py (extends_documentation_fragment: use fqcn) Co-authored-by: Amin Vakil <info@aminvakil.com> * doc: use strict lowercase booleans (true/false) rather than other variants * use *raw* type to manage size values * drop 'miB' unit family * Apply suggestions from code review Co-authored-by: Felix Fontein <felix@fontein.de> * add more details Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Amin Vakil <info@aminvakil.com> Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
parent
91a0264f38
commit
f87a39b21d
10 changed files with 1685 additions and 0 deletions
40
tests/integration/targets/filesize/tasks/main.yml
Normal file
40
tests/integration/targets/filesize/tasks/main.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
---
|
||||
####################################################################
|
||||
# WARNING: These are designed specifically for Ansible tests #
|
||||
# and should not be used as examples of how to write Ansible roles #
|
||||
####################################################################
|
||||
|
||||
- name: Ensure the test dir is present
|
||||
ansible.builtin.file:
|
||||
path: "{{ filesize_testdir }}"
|
||||
state: directory
|
||||
|
||||
- name: Ensure the test file is absent
|
||||
ansible.builtin.file:
|
||||
path: "{{ filesize_testfile }}"
|
||||
state: absent
|
||||
|
||||
- name: Run all tests and remove the workspace anyway
|
||||
block:
|
||||
- name: Include tasks to test error handling
|
||||
include_tasks: errors.yml
|
||||
|
||||
- name: Include tasks to test basic behaviours
|
||||
include_tasks: basics.yml
|
||||
|
||||
- name: Include tasks to test playing with floating point numbers
|
||||
include_tasks: floats.yml
|
||||
|
||||
- name: Include tasks to test playing with sparse files
|
||||
include_tasks: sparse.yml
|
||||
when:
|
||||
- not (ansible_os_family == 'Darwin' and ansible_distribution_version is version('11', '<'))
|
||||
|
||||
- name: Include tasks to test playing with symlinks
|
||||
include_tasks: symlinks.yml
|
||||
|
||||
always:
|
||||
- name: Remove test dir
|
||||
ansible.builtin.file:
|
||||
path: "{{ filesize_testdir }}"
|
||||
state: absent
|
Loading…
Add table
Add a link
Reference in a new issue