Skip to content

Commit

Permalink
Add tests for different file sizes.
Browse files Browse the repository at this point in the history
  • Loading branch information
GeigerJ2 committed Nov 25, 2024
1 parent ceb0673 commit f2f90f9
Showing 1 changed file with 55 additions and 18 deletions.
73 changes: 55 additions & 18 deletions tests/orm/nodes/data/test_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,17 @@


@pytest.fixture
def remote_data_local(tmp_path, aiida_localhost):
def remote_data_local(tmp_path, aiida_localhost, num_char: int | None = None):
"""Return a non-empty ``RemoteData`` instance."""
node = RemoteData(computer=aiida_localhost)
node.set_remote_path(str(tmp_path))
node.store()
(tmp_path / 'file.txt').write_bytes(b'some content')

if num_char is None:
content = b'some content'
else:
content = b'a' * num_char
(tmp_path / 'file.txt').write_bytes(content)
return node


Expand Down Expand Up @@ -50,6 +55,54 @@ def test_clean(request, fixture):
assert remote_data.is_cleaned


@pytest.mark.parametrize('fixture', ['remote_data_local', 'remote_data_ssh'])
def test_get_size_on_disk(request, fixture):
"""Test the :meth:`aiida.orm.nodes.data.remote.base.RemoteData.clean` method."""

remote_data = request.getfixturevalue(fixture)

# Check here for human-readable output string, as integer byte values are checked in
# `test_get_size_on_disk_[du|lstat]`
size_on_disk = remote_data.get_size_on_disk()
assert size_on_disk == '4.01 KB'

# Path/file non-existent
with pytest.raises(FileNotFoundError, match='.*does not exist, is not a directory.*'):
remote_data.get_size_on_disk(relpath=Path('non-existent'))


@pytest.mark.parametrize(
'num_char, sizes',
(
(1, {'du': 4097, 'lstat': 1, 'human': '4.00 KB'}),
(10, {'du': 4106, 'lstat': 10, 'human': '4.01 KB'}),
(100, {'du': 4196, 'lstat': 100, 'human': '4.10 KB'}),
(1000, {'du': 5096, 'lstat': 1000, 'human': '4.98 KB'}),
(int(1e6), {'du': 1004096, 'lstat': int(1e6), 'human': '980.56 KB'}),
),
)
def test_get_size_on_disk_sizes(aiida_localhost, tmp_path, remote_data_local, num_char, sizes):
"""Test the :meth:`aiida.orm.nodes.data.remote.base.RemoteData.clean` method."""

remote_data = RemoteData(computer=aiida_localhost)
remote_data.set_remote_path(str(tmp_path))
remote_data.store()

(tmp_path / 'file.txt').write_bytes(b'a' * num_char)

authinfo = remote_data.get_authinfo()
full_path = Path(remote_data.get_remote_path())

with authinfo.get_transport() as transport:
size_on_disk_du = remote_data._get_size_on_disk_du(transport=transport, full_path=full_path)
size_on_disk_lstat = remote_data._get_size_on_disk_lstat(transport=transport, full_path=full_path)
size_on_disk_human = remote_data.get_size_on_disk()

assert size_on_disk_du == sizes['du']
assert size_on_disk_lstat == sizes['lstat']
assert size_on_disk_human == sizes['human']


@pytest.mark.parametrize('fixture', ['remote_data_local', 'remote_data_ssh'])
def test_get_size_on_disk_du(request, fixture, monkeypatch):
"""Test the :meth:`aiida.orm.nodes.data.remote.base.RemoteData.clean` method."""
Expand Down Expand Up @@ -85,19 +138,3 @@ def test_get_size_on_disk_lstat(request, fixture):
with authinfo.get_transport() as transport:
size_on_disk = remote_data._get_size_on_disk_lstat(transport=transport, full_path=full_path)
assert size_on_disk == 12


@pytest.mark.parametrize('fixture', ['remote_data_local', 'remote_data_ssh'])
def test_get_size_on_disk(request, fixture):
"""Test the :meth:`aiida.orm.nodes.data.remote.base.RemoteData.clean` method."""

remote_data = request.getfixturevalue(fixture)

# Check here for human-readable output string, as integer byte values are checked in
# `test_get_size_on_disk_[du|lstat]`
size_on_disk = remote_data.get_size_on_disk()
assert size_on_disk == '4.01 KB'

# Path/file non-existent
with pytest.raises(FileNotFoundError, match='.*does not exist, is not a directory.*'):
remote_data.get_size_on_disk(relpath=Path('non-existent'))

0 comments on commit f2f90f9

Please sign in to comment.