2019-06-28 19:54:45 +02:00
|
|
|
import os
|
|
|
|
|
|
|
|
import pytest
|
2019-12-21 17:36:20 +01:00
|
|
|
import pwd
|
|
|
|
import grp
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
from moulinette import m18n
|
|
|
|
from moulinette.core import MoulinetteError
|
2019-11-25 17:21:13 +01:00
|
|
|
from moulinette.utils.filesystem import (
|
|
|
|
append_to_file,
|
|
|
|
read_file,
|
|
|
|
read_json,
|
2019-12-21 17:36:20 +01:00
|
|
|
read_yaml,
|
|
|
|
read_toml,
|
2019-11-25 17:21:13 +01:00
|
|
|
rm,
|
|
|
|
write_to_file,
|
|
|
|
write_to_json,
|
2019-12-21 17:36:20 +01:00
|
|
|
write_to_yaml,
|
|
|
|
mkdir,
|
|
|
|
chown,
|
|
|
|
chmod,
|
2019-11-25 17:21:13 +01:00
|
|
|
)
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_read_file(test_file):
|
|
|
|
content = read_file(str(test_file))
|
2019-11-25 17:21:13 +01:00
|
|
|
assert content == "foo\nbar\n"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_read_file_missing_file():
|
2019-11-25 17:21:13 +01:00
|
|
|
bad_file = "doesnt-exist"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
read_file(bad_file)
|
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
translation = m18n.g("file_not_exist", path=bad_file)
|
2019-06-28 19:54:45 +02:00
|
|
|
expected_msg = translation.format(path=bad_file)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_read_file_cannot_read_ioerror(test_file, mocker):
|
2019-11-25 17:21:13 +01:00
|
|
|
error = "foobar"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=IOError(error))
|
2019-12-20 07:41:04 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
read_file(str(test_file))
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
translation = m18n.g("cannot_open_file", file=str(test_file), error=error)
|
2019-06-28 19:54:45 +02:00
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_read_file_cannot_read_exception(test_file, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=Exception(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
read_file(str(test_file))
|
|
|
|
|
|
|
|
translation = m18n.g("unknown_error_reading_file", file=str(test_file), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2019-06-28 19:54:45 +02:00
|
|
|
def test_read_json(test_json):
|
|
|
|
content = read_json(str(test_json))
|
2019-11-25 17:21:13 +01:00
|
|
|
assert "foo" in content.keys()
|
|
|
|
assert content["foo"] == "bar"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_read_json_cannot_read(test_json, mocker):
|
2019-11-25 17:21:13 +01:00
|
|
|
error = "foobar"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-12-20 07:41:04 +01:00
|
|
|
mocker.patch("json.loads", side_effect=ValueError(error))
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
read_json(str(test_json))
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
translation = m18n.g("corrupted_json", ressource=str(test_json), error=error)
|
2019-06-28 19:54:45 +02:00
|
|
|
expected_msg = translation.format(ressource=str(test_json), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2019-12-21 17:36:20 +01:00
|
|
|
def test_read_yaml(test_yaml):
|
|
|
|
content = read_yaml(str(test_yaml))
|
|
|
|
assert "foo" in content.keys()
|
|
|
|
assert content["foo"] == "bar"
|
|
|
|
|
|
|
|
|
|
|
|
def test_read_yaml_cannot_read(test_yaml, mocker):
|
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
mocker.patch("yaml.safe_load", side_effect=Exception(error))
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
read_yaml(str(test_yaml))
|
|
|
|
|
|
|
|
translation = m18n.g("corrupted_yaml", ressource=str(test_yaml), error=error)
|
|
|
|
expected_msg = translation.format(ressource=str(test_yaml), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def test_read_toml(test_toml):
|
|
|
|
content = read_toml(str(test_toml))
|
|
|
|
assert "foo" in content.keys()
|
|
|
|
assert content["foo"] == "bar"
|
|
|
|
|
|
|
|
|
|
|
|
def test_read_toml_cannot_read(test_toml, mocker):
|
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
mocker.patch("toml.loads", side_effect=Exception(error))
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
read_toml(str(test_toml))
|
|
|
|
|
|
|
|
translation = m18n.g("corrupted_toml", ressource=str(test_toml), error=error)
|
|
|
|
expected_msg = translation.format(ressource=str(test_toml), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2019-06-28 19:54:45 +02:00
|
|
|
def test_write_to_existing_file(test_file):
|
2019-11-25 17:21:13 +01:00
|
|
|
write_to_file(str(test_file), "yolo\nswag")
|
|
|
|
assert read_file(str(test_file)) == "yolo\nswag"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_write_to_new_file(tmp_path):
|
2019-11-25 17:21:13 +01:00
|
|
|
new_file = tmp_path / "newfile.txt"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
write_to_file(str(new_file), "yolo\nswag")
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
assert os.path.exists(str(new_file))
|
2019-11-25 17:21:13 +01:00
|
|
|
assert read_file(str(new_file)) == "yolo\nswag"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_to_existing_file_bad_perms(test_file, mocker):
|
2019-11-25 17:21:13 +01:00
|
|
|
error = "foobar"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=IOError(error))
|
2019-12-20 07:41:04 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_file(str(test_file), "yolo\nswag")
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
translation = m18n.g("cannot_write_file", file=str(test_file), error=error)
|
2019-06-28 19:54:45 +02:00
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_to_file_exception(test_file, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=Exception(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_file(str(test_file), "yolo\nswag")
|
|
|
|
|
|
|
|
translation = m18n.g("error_writing_file", file=str(test_file), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2019-06-28 19:54:45 +02:00
|
|
|
def test_write_cannot_write_folder(tmp_path):
|
|
|
|
with pytest.raises(AssertionError):
|
2019-11-25 17:21:13 +01:00
|
|
|
write_to_file(str(tmp_path), "yolo\nswag")
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_write_cannot_write_to_non_existant_folder():
|
|
|
|
with pytest.raises(AssertionError):
|
2019-11-25 17:21:13 +01:00
|
|
|
write_to_file("/toto/test", "yolo\nswag")
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_write_to_file_with_a_list(test_file):
|
2019-11-25 17:21:13 +01:00
|
|
|
write_to_file(str(test_file), ["yolo", "swag"])
|
|
|
|
assert read_file(str(test_file)) == "yolo\nswag"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_append_to_existing_file(test_file):
|
2019-11-25 17:21:13 +01:00
|
|
|
append_to_file(str(test_file), "yolo\nswag")
|
|
|
|
assert read_file(str(test_file)) == "foo\nbar\nyolo\nswag"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_append_to_new_file(tmp_path):
|
2019-11-25 17:21:13 +01:00
|
|
|
new_file = tmp_path / "newfile.txt"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
append_to_file(str(new_file), "yolo\nswag")
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
assert os.path.exists(str(new_file))
|
2019-11-25 17:21:13 +01:00
|
|
|
assert read_file(str(new_file)) == "yolo\nswag"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
2019-12-21 17:36:20 +01:00
|
|
|
def test_write_dict_to_json(tmp_path):
|
2019-11-25 17:21:13 +01:00
|
|
|
new_file = tmp_path / "newfile.json"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
dummy_dict = {"foo": 42, "bar": ["a", "b", "c"]}
|
2019-06-28 19:54:45 +02:00
|
|
|
write_to_json(str(new_file), dummy_dict)
|
|
|
|
_json = read_json(str(new_file))
|
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
assert "foo" in _json.keys()
|
|
|
|
assert "bar" in _json.keys()
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
assert _json["foo"] == 42
|
|
|
|
assert _json["bar"] == ["a", "b", "c"]
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_json_to_existing_file_bad_perms(test_file, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
dummy_dict = {"foo": 42, "bar": ["a", "b", "c"]}
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=IOError(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_json(str(test_file), dummy_dict)
|
|
|
|
|
|
|
|
translation = m18n.g("cannot_write_file", file=str(test_file), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_json_to_file_exception(test_file, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
dummy_dict = {"foo": 42, "bar": ["a", "b", "c"]}
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=Exception(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_json(str(test_file), dummy_dict)
|
|
|
|
|
|
|
|
translation = m18n.g("error_writing_file", file=str(test_file), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2019-06-28 19:54:45 +02:00
|
|
|
def text_write_list_to_json(tmp_path):
|
2019-11-25 17:21:13 +01:00
|
|
|
new_file = tmp_path / "newfile.json"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
dummy_list = ["foo", "bar", "baz"]
|
2019-06-28 19:54:45 +02:00
|
|
|
write_to_json(str(new_file), dummy_list)
|
|
|
|
|
|
|
|
_json = read_json(str(new_file))
|
2019-11-25 17:21:13 +01:00
|
|
|
assert _json == ["foo", "bar", "baz"]
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_to_json_bad_perms(test_json, mocker):
|
2019-11-25 17:21:13 +01:00
|
|
|
error = "foobar"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=IOError(error))
|
2019-12-20 07:41:04 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_json(str(test_json), {"a": 1})
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
translation = m18n.g("cannot_write_file", file=str(test_json), error=error)
|
2019-06-28 19:54:45 +02:00
|
|
|
expected_msg = translation.format(file=str(test_json), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def test_write_json_cannot_write_to_non_existant_folder():
|
|
|
|
with pytest.raises(AssertionError):
|
2019-11-25 17:21:13 +01:00
|
|
|
write_to_json("/toto/test.json", ["a", "b"])
|
2019-06-28 19:54:45 +02:00
|
|
|
|
|
|
|
|
2019-12-21 17:36:20 +01:00
|
|
|
def test_write_dict_to_yaml(tmp_path):
|
|
|
|
new_file = tmp_path / "newfile.yaml"
|
|
|
|
|
|
|
|
dummy_dict = {"foo": 42, "bar": ["a", "b", "c"]}
|
|
|
|
write_to_yaml(str(new_file), dummy_dict)
|
|
|
|
_yaml = read_yaml(str(new_file))
|
|
|
|
|
|
|
|
assert "foo" in _yaml.keys()
|
|
|
|
assert "bar" in _yaml.keys()
|
|
|
|
|
|
|
|
assert _yaml["foo"] == 42
|
|
|
|
assert _yaml["bar"] == ["a", "b", "c"]
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_yaml_to_existing_file_bad_perms(test_file, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
dummy_dict = {"foo": 42, "bar": ["a", "b", "c"]}
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=IOError(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_yaml(str(test_file), dummy_dict)
|
|
|
|
|
|
|
|
translation = m18n.g("cannot_write_file", file=str(test_file), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_yaml_to_file_exception(test_file, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
dummy_dict = {"foo": 42, "bar": ["a", "b", "c"]}
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=Exception(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_yaml(str(test_file), dummy_dict)
|
|
|
|
|
|
|
|
translation = m18n.g("error_writing_file", file=str(test_file), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def text_write_list_to_yaml(tmp_path):
|
|
|
|
new_file = tmp_path / "newfile.yaml"
|
|
|
|
|
|
|
|
dummy_list = ["foo", "bar", "baz"]
|
|
|
|
write_to_yaml(str(new_file), dummy_list)
|
|
|
|
|
|
|
|
_yaml = read_yaml(str(new_file))
|
|
|
|
assert _yaml == ["foo", "bar", "baz"]
|
|
|
|
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
def test_write_to_yaml_bad_perms(test_yaml, mocker):
|
2019-12-21 17:36:20 +01:00
|
|
|
error = "foobar"
|
|
|
|
|
2021-01-20 05:35:35 +01:00
|
|
|
mocker.patch("builtins.open", side_effect=IOError(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
write_to_yaml(str(test_yaml), {"a": 1})
|
|
|
|
|
|
|
|
translation = m18n.g("cannot_write_file", file=str(test_yaml), error=error)
|
|
|
|
expected_msg = translation.format(file=str(test_yaml), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def test_write_yaml_cannot_write_to_non_existant_folder():
|
|
|
|
with pytest.raises(AssertionError):
|
|
|
|
write_to_yaml("/toto/test.yaml", ["a", "b"])
|
|
|
|
|
|
|
|
|
|
|
|
def test_mkdir(tmp_path):
|
|
|
|
new_path = tmp_path / "new_folder"
|
|
|
|
mkdir(str(new_path))
|
|
|
|
|
|
|
|
assert os.path.isdir(str(new_path))
|
|
|
|
assert oct(os.stat(str(new_path)).st_mode & 0o777) == oct(0o777)
|
|
|
|
|
|
|
|
|
|
|
|
def test_mkdir_with_permission(tmp_path, mocker):
|
2020-04-02 01:30:20 +02:00
|
|
|
|
|
|
|
# This test only make sense when not being root
|
|
|
|
if os.getuid() == 0:
|
|
|
|
return
|
|
|
|
|
2019-12-21 17:36:20 +01:00
|
|
|
new_path = tmp_path / "new_folder"
|
|
|
|
permission = 0o700
|
|
|
|
mkdir(str(new_path), mode=permission)
|
|
|
|
|
|
|
|
assert os.path.isdir(str(new_path))
|
|
|
|
assert oct(os.stat(str(new_path)).st_mode & 0o777) == oct(permission)
|
|
|
|
|
|
|
|
new_path = tmp_path / "new_parent2" / "new_folder"
|
|
|
|
|
|
|
|
with pytest.raises(OSError):
|
|
|
|
mkdir(str(new_path), parents=True, mode=0o000)
|
|
|
|
|
|
|
|
|
|
|
|
def test_mkdir_with_parent(tmp_path):
|
|
|
|
new_path = tmp_path / "new_folder"
|
|
|
|
mkdir(str(new_path) + "/", parents=True)
|
|
|
|
|
|
|
|
assert os.path.isdir(str(new_path))
|
|
|
|
|
|
|
|
new_path = tmp_path / "new_parent" / "new_folder"
|
|
|
|
mkdir(str(new_path), parents=True)
|
|
|
|
|
|
|
|
assert os.path.isdir(str(new_path))
|
|
|
|
|
|
|
|
|
|
|
|
def test_mkdir_existing_folder(tmp_path):
|
|
|
|
new_path = tmp_path / "new_folder"
|
|
|
|
os.makedirs(str(new_path))
|
|
|
|
with pytest.raises(OSError):
|
|
|
|
mkdir(str(new_path))
|
|
|
|
|
|
|
|
|
|
|
|
def test_chown(test_file):
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
chown(str(test_file))
|
|
|
|
|
|
|
|
current_uid = os.getuid()
|
|
|
|
current_gid = os.getgid()
|
|
|
|
chown(str(test_file), current_uid, current_gid)
|
|
|
|
|
|
|
|
assert os.stat(str(test_file)).st_uid == current_uid
|
|
|
|
assert os.stat(str(test_file)).st_gid == current_gid
|
|
|
|
|
|
|
|
current_gid = os.getgid()
|
|
|
|
chown(str(test_file), uid=None, gid=current_gid)
|
|
|
|
|
|
|
|
assert os.stat(str(test_file)).st_gid == current_gid
|
|
|
|
|
|
|
|
current_uid = pwd.getpwuid(os.getuid())[0]
|
|
|
|
current_gid = grp.getgrgid(os.getgid())[0]
|
|
|
|
chown(str(test_file), current_uid, current_gid)
|
|
|
|
|
|
|
|
assert os.stat(str(test_file)).st_uid == os.getuid()
|
|
|
|
assert os.stat(str(test_file)).st_gid == os.getgid()
|
|
|
|
|
|
|
|
fake_user = "nousrlol"
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
chown(str(test_file), fake_user)
|
|
|
|
|
|
|
|
translation = m18n.g("unknown_user", user=fake_user)
|
|
|
|
expected_msg = translation.format(user=fake_user)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
fake_grp = "nogrplol"
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
chown(str(test_file), gid=fake_grp)
|
|
|
|
|
|
|
|
translation = m18n.g("unknown_group", group=fake_grp)
|
|
|
|
expected_msg = translation.format(group=fake_grp)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chown_recursive(test_file):
|
|
|
|
current_uid = os.getuid()
|
|
|
|
dirname = os.path.dirname(str(test_file))
|
|
|
|
mkdir(os.path.join(dirname, "new_dir"))
|
|
|
|
chown(str(dirname), current_uid, recursive=True)
|
|
|
|
|
|
|
|
assert os.stat(str(dirname)).st_uid == current_uid
|
|
|
|
|
|
|
|
|
|
|
|
def test_chown_exception(test_file, mocker):
|
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
mocker.patch("os.chown", side_effect=Exception(error))
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
chown(str(test_file), 1)
|
|
|
|
|
2020-01-02 16:41:21 +01:00
|
|
|
translation = m18n.g(
|
2020-12-04 22:16:32 +01:00
|
|
|
"error_changing_file_permissions", path=str(test_file), error=str(error)
|
2020-01-02 16:41:21 +01:00
|
|
|
)
|
2020-12-04 22:16:32 +01:00
|
|
|
expected_msg = translation.format(path=str(test_file), error=str(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chmod(test_file):
|
|
|
|
permission = 0o723
|
|
|
|
chmod(str(test_file), permission)
|
|
|
|
|
|
|
|
assert oct(os.stat(str(test_file)).st_mode & 0o777) == oct(permission)
|
|
|
|
|
|
|
|
dirname = os.path.dirname(str(test_file))
|
|
|
|
permission = 0o722
|
|
|
|
chmod(str(dirname), permission, recursive=True)
|
|
|
|
|
|
|
|
assert oct(os.stat(str(test_file)).st_mode & 0o777) == oct(permission)
|
|
|
|
assert oct(os.stat(dirname).st_mode & 0o777) == oct(permission)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chmod_recursive(test_file):
|
|
|
|
dirname = os.path.dirname(str(test_file))
|
|
|
|
mkdir(os.path.join(dirname, "new_dir"))
|
|
|
|
permission = 0o721
|
|
|
|
fpermission = 0o720
|
|
|
|
chmod(str(dirname), permission, fmode=fpermission, recursive=True)
|
|
|
|
|
|
|
|
assert oct(os.stat(str(test_file)).st_mode & 0o777) == oct(fpermission)
|
|
|
|
assert oct(os.stat(dirname).st_mode & 0o777) == oct(permission)
|
|
|
|
|
|
|
|
|
|
|
|
def test_chmod_exception(test_file, mocker):
|
|
|
|
error = "foobar"
|
|
|
|
|
|
|
|
mocker.patch("os.chmod", side_effect=Exception(error))
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
chmod(str(test_file), 0o000)
|
|
|
|
|
2020-01-02 16:41:21 +01:00
|
|
|
translation = m18n.g(
|
2020-12-04 22:16:32 +01:00
|
|
|
"error_changing_file_permissions", path=str(test_file), error=str(error)
|
2020-01-02 16:41:21 +01:00
|
|
|
)
|
2020-12-04 22:16:32 +01:00
|
|
|
expected_msg = translation.format(path=str(test_file), error=str(error))
|
2019-12-21 17:36:20 +01:00
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
2019-06-28 19:54:45 +02:00
|
|
|
def test_remove_file(test_file):
|
|
|
|
assert os.path.exists(str(test_file))
|
|
|
|
rm(str(test_file))
|
|
|
|
assert not os.path.exists(str(test_file))
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_file_bad_perms(test_file, mocker):
|
2019-11-25 17:21:13 +01:00
|
|
|
error = "foobar"
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-12-20 07:41:04 +01:00
|
|
|
mocker.patch("os.remove", side_effect=OSError(error))
|
|
|
|
with pytest.raises(MoulinetteError) as exception:
|
|
|
|
rm(str(test_file))
|
2019-06-28 19:54:45 +02:00
|
|
|
|
2019-11-25 17:21:13 +01:00
|
|
|
translation = m18n.g("error_removing", path=str(test_file), error=error)
|
2019-06-28 19:54:45 +02:00
|
|
|
expected_msg = translation.format(path=str(test_file), error=error)
|
|
|
|
assert expected_msg in str(exception)
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_directory(tmp_path):
|
|
|
|
test_dir = tmp_path / "foo"
|
|
|
|
test_dir.mkdir()
|
|
|
|
|
|
|
|
assert os.path.exists(str(test_dir))
|
|
|
|
rm(str(test_dir), recursive=True)
|
|
|
|
assert not os.path.exists(str(test_dir))
|