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
|
from getpass import getuser
from random import randbytes
from time import perf_counter
from typing import Any
import matplotlib.pyplot as plt
from aa_overhead_common import measure_overhead, os_id
from nc_py_api import Nextcloud, NextcloudApp
ITERS = 30
CACHE_SESS = False
def measure_download_1mb(nc_obj: Nextcloud | NextcloudApp) -> [Any, float]:
__result = None
small_file_name = "1Mb.bin"
small_file = randbytes(1024 * 1024)
nc_obj.files.upload(small_file_name, small_file)
start_time = perf_counter()
for _ in range(ITERS):
nc_obj.files.download(small_file_name)
nc_obj._session.init_adapter_dav(restart=not CACHE_SESS) # noqa
end_time = perf_counter()
nc_obj.files.delete(small_file_name, not_fail=True)
return __result, round((end_time - start_time) / ITERS, 3)
if __name__ == "__main__":
title = f"download 1mb, {ITERS} iters, CACHE={CACHE_SESS} - {os_id()}"
measure_overhead(measure_download_1mb, title)
plt.savefig(f"results/dav_download_1mb__cache{int(CACHE_SESS)}_iters{ITERS}__{getuser()}.png", dpi=200)
|