Files
2026-08-15 05:12:18 -07:00

87 lines
3.1 KiB
Python

# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========= Copyright 2026 @ Strukto.AI All Rights Reserved. =========
from unittest.mock import patch
import pytest
from mirage.accessor.github import GitHubAccessor
from mirage.core.github.config import GitHubConfig
from mirage.core.github.tree_entry import TreeEntry
from mirage.core.github.watch import GitHubWalk
from mirage.types import PathSpec
from mirage.watch.errors import IncompleteWalkError
CONFIG = GitHubConfig(token="t")
def _accessor(tree: dict[str, TreeEntry]) -> GitHubAccessor:
return GitHubAccessor(config=CONFIG,
owner="acme",
repo="proj",
ref="main",
default_branch="main",
tree=tree)
def _root() -> PathSpec:
return PathSpec(virtual="/gh", directory="/gh", resource_path="")
def _entry(path: str, sha: str) -> TreeEntry:
return TreeEntry(path=path, type="blob", sha=sha, size=3)
async def _collect(walk, root):
return [entry async for entry in walk(root)]
@pytest.mark.asyncio
async def test_pull_refreshes_the_accessor_tree() -> None:
# find, du and grep's scope counter read accessor.tree directly, so a
# pull that fetched a newer tree and dropped it left them reporting the
# repository as it stood when the mount was built.
stale = {"a.txt": _entry("a.txt", "sha-a")}
fresh = {
"a.txt": _entry("a.txt", "sha-a"),
"b.txt": _entry("b.txt", "sha-b"),
}
accessor = _accessor(stale)
with patch("mirage.core.github.watch.fetch_tree",
return_value=(fresh, False)):
await _collect(GitHubWalk(accessor), _root())
assert accessor.tree == fresh
@pytest.mark.asyncio
async def test_truncated_tree_is_not_adopted() -> None:
# A partial tree would make find report the missing half as deleted.
stale = {"a.txt": _entry("a.txt", "sha-a")}
accessor = _accessor(stale)
with patch("mirage.core.github.watch.fetch_tree", return_value=({}, True)):
with pytest.raises(IncompleteWalkError):
await _collect(GitHubWalk(accessor), _root())
assert accessor.tree == stale
@pytest.mark.asyncio
async def test_walk_reports_blobs_with_their_sha() -> None:
tree = {"a.txt": _entry("a.txt", "sha-a")}
accessor = _accessor(tree)
with patch("mirage.core.github.watch.fetch_tree",
return_value=(tree, False)):
entries = await _collect(GitHubWalk(accessor), _root())
assert [(e.virtual, e.fingerprint)
for e in entries] == [("/gh/a.txt", "sha-a")]