tests: import Ansible file transfer benchmark

This commit is contained in:
David Wilson 2018-04-22 03:21:59 +01:00
parent 9ec20086c2
commit 6541779dd6
2 changed files with 69 additions and 0 deletions

View File

@ -0,0 +1 @@
- import_playbook: file_transfer.yml

View File

@ -0,0 +1,68 @@
- name: bench/file_transfer.yml
hosts: all
any_errors_fatal: true
tasks:
- name: Make 32MiB file
connection: local
shell: openssl rand 33554432 > /tmp/bigfile.in
- name: Make 320MiB file
connection: local
shell: >
cat
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
/tmp/bigfile.in
> /tmp/bigbigfile.in
- name: Delete SSH file is present.
file:
path: "{{item}}"
state: absent
become: true
with_items:
- /tmp/bigfile.out
- /tmp/bigbigfile.out
- name: Copy 32MiB file via SSH
copy:
src: /tmp/bigfile.in
dest: /tmp/bigfile.out
- name: Copy 320MiB file via SSH
copy:
src: /tmp/bigbigfile.in
dest: /tmp/bigbigfile.out
- name: Delete localhost sudo file if present.
file:
path: "{{item}}"
state: absent
connection: local
become: true
with_items:
- /tmp/bigfile.out
- /tmp/bigbigfile.out
- name: Copy 32MiB file via localhost sudo
connection: local
become: true
copy:
src: /tmp/bigfile.in
dest: /tmp/bigfile.out
- name: Copy 320MiB file via localhost sudo
connection: local
become: true
copy:
src: /tmp/bigbigfile.in
dest: /tmp/bigbigfile.out