示例#1
0
文件: test_base.py 项目: yk/dvc
    def test(self):
        config = {
            "url": "base://example/prefix",
            "connection_string": "1234567",
        }
        remote = RemoteBASE(None, config)

        remote.PARAM_CHECKSUM = "checksum"
        remote.path_info = remote.path_cls(config["url"])
        remote.url = ""
        remote.prefix = ""
        path_info = remote.path_info / "example"
        checksum_info = {remote.PARAM_CHECKSUM: "1234567890"}

        with mock.patch.object(remote, "_checkout") as mock_checkout:
            with mock.patch.object(remote, "_save") as mock_save:
                with mock.patch.object(
                    remote, "changed_cache", return_value=True
                ):
                    remote.save(path_info, checksum_info)
                    mock_save.assert_called_once()
                    mock_checkout.assert_not_called()

        with mock.patch.object(remote, "_checkout") as mock_checkout:
            with mock.patch.object(remote, "_save") as mock_save:
                with mock.patch.object(
                    remote, "changed_cache", return_value=False
                ):
                    remote.save(path_info, checksum_info)
                    mock_save.assert_not_called()
                    mock_checkout.assert_called_once()
示例#2
0
文件: test_base.py 项目: SdgJlbl/dvc
def test_cache_exists_traverse(path_to_checksum, list_cache_paths):
    remote = RemoteBASE(None, {})
    remote.path_info = PathInfo("foo")
    remote._cache_exists_traverse({0}, set())
    for i in range(1, 16):
        list_cache_paths.assert_any_call(prefix="{:03x}".format(i))
    for i in range(1, 256):
        list_cache_paths.assert_any_call(prefix="{:02x}".format(i))
示例#3
0
文件: test_base.py 项目: refaqtor/dvc
def test_cache_checksums():
    remote = RemoteBASE(None, {})
    remote.path_info = PathInfo("foo")

    with mock.patch.object(remote,
                           "list_cache_paths",
                           return_value=["12/3456", "bar"]):
        checksums = list(remote.cache_checksums())
        assert checksums == ["123456"]
示例#4
0
文件: test_base.py 项目: refaqtor/dvc
def test_cache_checksums_traverse(path_to_checksum, cache_checksums):
    remote = RemoteBASE(None, {})
    remote.path_info = PathInfo("foo")

    # parallel traverse
    size = 256 / remote.JOBS * remote.LIST_OBJECT_PAGE_SIZE
    list(remote._cache_checksums_traverse(size, {0}))
    for i in range(1, 16):
        cache_checksums.assert_any_call(prefix="{:03x}".format(i),
                                        progress_callback=CallableOrNone)
    for i in range(1, 256):
        cache_checksums.assert_any_call(prefix="{:02x}".format(i),
                                        progress_callback=CallableOrNone)

    # default traverse (small remote)
    size -= 1
    cache_checksums.reset_mock()
    list(remote._cache_checksums_traverse(size - 1, {0}))
    cache_checksums.assert_called_with(prefix=None,
                                       progress_callback=CallableOrNone)