| | from datasets.utils.patching import _PatchedModuleObj, patch_submodule |
| |
|
| | from . import _test_patching |
| |
|
| |
|
| | def test_patch_submodule(): |
| | import os as original_os |
| | from os import path as original_path |
| | from os import rename as original_rename |
| | from os.path import dirname as original_dirname |
| | from os.path import join as original_join |
| |
|
| | assert _test_patching.os is original_os |
| | assert _test_patching.path is original_path |
| | assert _test_patching.join is original_join |
| |
|
| | assert _test_patching.renamed_os is original_os |
| | assert _test_patching.renamed_path is original_path |
| | assert _test_patching.renamed_join is original_join |
| |
|
| | mock = "__test_patch_submodule_mock__" |
| | with patch_submodule(_test_patching, "os.path.join", mock): |
| | |
| |
|
| | |
| | assert isinstance(_test_patching.os, _PatchedModuleObj) |
| | assert isinstance(_test_patching.os.path, _PatchedModuleObj) |
| | assert _test_patching.os.path.join is mock |
| |
|
| | |
| | assert isinstance(_test_patching.path, _PatchedModuleObj) |
| | assert _test_patching.path.join is mock |
| |
|
| | |
| | assert _test_patching.join is mock |
| |
|
| | |
| | assert _test_patching.os.rename is original_rename |
| | assert _test_patching.path.dirname is original_dirname |
| | assert _test_patching.os.path.dirname is original_dirname |
| |
|
| | |
| |
|
| | |
| | assert isinstance(_test_patching.renamed_os, _PatchedModuleObj) |
| | assert isinstance(_test_patching.renamed_os.path, _PatchedModuleObj) |
| | assert _test_patching.renamed_os.path.join is mock |
| |
|
| | |
| | assert isinstance(_test_patching.renamed_path, _PatchedModuleObj) |
| | assert _test_patching.renamed_path.join is mock |
| |
|
| | |
| | assert _test_patching.renamed_join is mock |
| |
|
| | |
| | assert _test_patching.renamed_os.rename is original_rename |
| | assert _test_patching.renamed_path.dirname is original_dirname |
| | assert _test_patching.renamed_os.path.dirname is original_dirname |
| |
|
| | |
| |
|
| | assert _test_patching.os is original_os |
| | assert _test_patching.path is original_path |
| | assert _test_patching.join is original_join |
| |
|
| | assert _test_patching.renamed_os is original_os |
| | assert _test_patching.renamed_path is original_path |
| | assert _test_patching.renamed_join is original_join |
| |
|
| |
|
| | def test_patch_submodule_builtin(): |
| | assert _test_patching.open is open |
| |
|
| | mock = "__test_patch_submodule_builtin_mock__" |
| | |
| | assert _test_patching.open is open |
| | with patch_submodule(_test_patching, "open", mock): |
| | assert _test_patching.open is mock |
| |
|
| | |
| |
|
| | assert _test_patching.open is open |
| |
|
| |
|
| | def test_patch_submodule_missing(): |
| | |
| | mock = "__test_patch_submodule_missing_mock__" |
| | with patch_submodule(_test_patching, "pandas.read_csv", mock): |
| | pass |
| |
|
| |
|
| | def test_patch_submodule_missing_builtin(): |
| | |
| | |
| | mock = "__test_patch_submodule_missing_builtin_mock__" |
| | |
| | assert getattr(_test_patching, "len", None) is None |
| | with patch_submodule(_test_patching, "len", mock): |
| | assert _test_patching.len is mock |
| | assert _test_patching.len is len |
| |
|
| |
|
| | def test_patch_submodule_start_and_stop(): |
| | mock = "__test_patch_submodule_start_and_stop_mock__" |
| | patch = patch_submodule(_test_patching, "open", mock) |
| | assert _test_patching.open is open |
| | patch.start() |
| | assert _test_patching.open is mock |
| | patch.stop() |
| | assert _test_patching.open is open |
| |
|
| |
|
| | def test_patch_submodule_successive(): |
| | from os import rename as original_rename |
| | from os.path import dirname as original_dirname |
| | from os.path import join as original_join |
| |
|
| | mock_join = "__test_patch_submodule_successive_join__" |
| | mock_dirname = "__test_patch_submodule_successive_dirname__" |
| | mock_rename = "__test_patch_submodule_successive_rename__" |
| | assert _test_patching.os.path.join is original_join |
| | assert _test_patching.os.path.dirname is original_dirname |
| | assert _test_patching.os.rename is original_rename |
| |
|
| | with patch_submodule(_test_patching, "os.path.join", mock_join): |
| | with patch_submodule(_test_patching, "os.rename", mock_rename): |
| | with patch_submodule(_test_patching, "os.path.dirname", mock_dirname): |
| | assert _test_patching.os.path.join is mock_join |
| | assert _test_patching.os.path.dirname is mock_dirname |
| | assert _test_patching.os.rename is mock_rename |
| |
|
| | |
| | with patch_submodule(_test_patching, "os.rename", mock_rename): |
| | with patch_submodule(_test_patching, "os.path.join", mock_join): |
| | with patch_submodule(_test_patching, "os.path.dirname", mock_dirname): |
| | assert _test_patching.os.path.join is mock_join |
| | assert _test_patching.os.path.dirname is mock_dirname |
| | assert _test_patching.os.rename is mock_rename |
| |
|
| | assert _test_patching.os.path.join is original_join |
| | assert _test_patching.os.path.dirname is original_dirname |
| | assert _test_patching.os.rename is original_rename |
| |
|
| |
|
| | def test_patch_submodule_doesnt_exist(): |
| | mock = "__test_patch_submodule_doesnt_exist_mock__" |
| | with patch_submodule(_test_patching, "__module_that_doesn_exist__.__attribute_that_doesn_exist__", mock): |
| | pass |
| | with patch_submodule(_test_patching, "os.__attribute_that_doesn_exist__", mock): |
| | pass |
| |
|