test_cleanup.py 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. import collections
  2. import logging
  3. import pathlib
  4. import unittest.mock
  5. import _pytest.logging
  6. import free_disk
  7. # pylint: disable=protected-access
  8. _DiskUsage = collections.namedtuple("_DiskUsage", ("free",))
  9. def _folder_size_bytes(path: pathlib.Path) -> int:
  10. return sum(p.stat().st_size for p in path.rglob("*"))
  11. def test__main_remove_some(
  12. caplog: _pytest.logging.LogCaptureFixture, tmp_path: pathlib.Path
  13. ) -> None:
  14. tmp_path.joinpath("a").write_bytes(b"a" * 4)
  15. tmp_path.joinpath("b").write_bytes(b"b" * 3)
  16. tmp_path.joinpath("c").write_bytes(b"c" * 5)
  17. tmp_path.joinpath("d").write_bytes(b"d" * 2)
  18. tmp_path.joinpath("e").write_bytes(b"d" * 7)
  19. with unittest.mock.patch(
  20. "shutil.disk_usage",
  21. lambda p: _DiskUsage(free=42 - _folder_size_bytes(tmp_path)),
  22. ), unittest.mock.patch(
  23. "sys.argv", ["", "--free-bytes", "30B", str(tmp_path)]
  24. ), caplog.at_level(
  25. logging.DEBUG
  26. ):
  27. free_disk._main()
  28. assert {p.name for p in tmp_path.rglob("*")} == {"e", "d"}
  29. assert caplog.record_tuples[:-1] == [
  30. ("root", logging.DEBUG, m)
  31. for m in [
  32. "Required free bytes: 30",
  33. "_DiskUsage(free=21)",
  34. f"Removed file {tmp_path.joinpath('a')}",
  35. f"Removed file {tmp_path.joinpath('b')}",
  36. f"Removed file {tmp_path.joinpath('c')}",
  37. ]
  38. ]
  39. assert caplog.records[-1].levelno == logging.INFO
  40. assert caplog.records[-1].message.startswith(
  41. "Removed 3 file(s) with modification date <= 20"
  42. )
  43. def test__main_sufficient_space(
  44. caplog: _pytest.logging.LogCaptureFixture, tmp_path: pathlib.Path
  45. ) -> None:
  46. tmp_path.joinpath("a").write_bytes(b"a" * 4)
  47. tmp_path.joinpath("b").write_bytes(b"b" * 3)
  48. tmp_path.joinpath("c").write_bytes(b"c" * 5)
  49. with unittest.mock.patch(
  50. "shutil.disk_usage",
  51. lambda p: _DiskUsage(free=42 - _folder_size_bytes(tmp_path)),
  52. ), unittest.mock.patch(
  53. "sys.argv", ["", "--free-bytes", "30B", str(tmp_path)]
  54. ), caplog.at_level(
  55. logging.DEBUG
  56. ):
  57. free_disk._main()
  58. assert {p.name for p in tmp_path.rglob("*")} == {"a", "b", "c"}
  59. assert caplog.record_tuples == [
  60. ("root", logging.DEBUG, "Required free bytes: 30"),
  61. ("root", logging.DEBUG, "_DiskUsage(free=30)"),
  62. ("root", logging.DEBUG, "Requirement already fulfilled"),
  63. ]
  64. def test__main_no_files(
  65. caplog: _pytest.logging.LogCaptureFixture, tmp_path: pathlib.Path
  66. ) -> None:
  67. with unittest.mock.patch(
  68. "shutil.disk_usage", return_value=_DiskUsage(free=21)
  69. ), unittest.mock.patch(
  70. "sys.argv", ["", "--free-bytes", "30B", str(tmp_path)]
  71. ), caplog.at_level(
  72. logging.DEBUG
  73. ):
  74. free_disk._main()
  75. assert caplog.record_tuples == [
  76. ("root", logging.DEBUG, "Required free bytes: 30"),
  77. ("root", logging.DEBUG, "_DiskUsage(free=21)"),
  78. ("root", logging.WARNING, "No files to remove"),
  79. ]