# ========= 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. ========= import pytest from mirage import MountMode, RAMResource, Workspace @pytest.fixture def workspace(): return Workspace({"/": RAMResource()}, mode=MountMode.WRITE) @pytest.mark.asyncio async def test_cp_recursive_into_itself_refused(workspace): await workspace.ops.mkdir("/d") await workspace.ops.write("/d/a.txt", b"a") io = await workspace.execute("cp -r /d /d", session_id="default") assert io.exit_code != 0 assert b"into itself" in io.stderr io = await workspace.execute("find /d -type f", session_id="default") assert io.stdout.decode().split() == ["/d/a.txt"] @pytest.mark.asyncio async def test_cp_onto_same_path_errors(workspace): await workspace.ops.write("/a.txt", b"keep") io = await workspace.execute("cp /a.txt /a.txt", session_id="default") assert io.exit_code != 0 assert b"are the same file" in io.stderr assert await workspace.ops.read("/a.txt") == b"keep" @pytest.mark.asyncio async def test_cp_missing_source_continues_with_rest(workspace): await workspace.ops.mkdir("/d") await workspace.ops.write("/b.txt", b"b") io = await workspace.execute("cp /missing.txt /b.txt /d", session_id="default") assert io.exit_code != 0 assert b"cannot stat" in io.stderr assert await workspace.ops.read("/d/b.txt") == b"b"