* Studio: stream live tool output with SSE heartbeats and fix web page extraction Server-side python/terminal tools now stream incremental stdout to the chat UI while running (new tool_output SSE event), and every blocking tool execution emits heartbeat keepalives so reverse proxies (Cloudflare tunnels cap idle streams at ~100s) cannot drop the connection mid-turn. The tool loop routes also emit a stall keepalive during silent prompt prefill between tool iterations. The final role=tool message the model sees is byte-identical to before, so tool-call parsing, nudging, and healing are untouched. web_search page fetches now extract main content: GitHub repo root pages are rewritten to the README API (with HTML fallback), hidden/aria-hidden client error placeholders are dropped, conversion scopes to article/main, and known boilerplate fragments are stripped. Non-HTML responses are returned raw instead of being run through the HTML converter. The frontend renders live-scrolling tool output inside running python and terminal cards, and a chat stream that ends without a terminal signal now surfaces an explicit interrupted state with a Retry action instead of silently ending the turn. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: fix content-type sniffing, unlimited-timeout drain, and env parity in tool streaming Content-Type sniffing: get_content_type() defaults to text/plain when the header is absent, so the sniffing fallback never fired and header-less HTML came back as raw markup. Report an empty type for a missing header and sniff the body whenever the declared type is not HTML, so mislabeled text/plain HTML pages are converted like before the extraction change. Unlimited timeout drain: with tool_call_timeout disabled the old path used communicate(timeout=None) and waited for EOF, but the streaming drain capped the post-exit drain at a 5 second join, truncating output from a grandchild that holds stdout open. When timeout is None, drain until EOF or the cancel event fires; finite timeouts keep the bounded remaining-budget join. Env parity: drop the PYTHONUNBUFFERED=1 injection on the streaming path so the child invocation is byte-identical with and without streaming (the env var was model-visible via os.getenv). Live streaming granularity now depends on the child flushing; unflushed output arrives in ~8 KB chunks or at exit and the final result is unchanged, with SSE heartbeats covering the gaps. * Studio: stream tool-call arguments while the model writes them A model writing a large tool call (a full python game is minutes of generation) produced nothing on the stream: the structured path accumulated delta.tool_calls fragments silently after the provisional card, and the text path's DRAINING state consumed everything until stream end. The user saw a dead Running spinner while the model was in fact writing code, and the byte-silent SSE segment was also the window where proxies drop the connection. New tool_args SSE events stream the arguments as they generate. The structured path forwards each fragment once a provisional card exists (backlog first, so the card starts from the top of the call). The text path sniffs the drained call for an enabled tool name and streams the raw call text under the id the stream-end parser assigns its first call (call_0), so the final tool_start reconciles the same card; the sniff is gated on enabled names plus the provisional size floor, and prose or ordinary JSON answers never spawn a card. The safetensors loop streams the drained render_html call to its existing provisional card the same way. The chat adapter accumulates the raw stream per card and feeds a partial JSON parse (call envelopes and stringified arguments unwrapped) into the part's args, so the python and terminal cards render the code live and the render_html canvas builds while streaming; both cards now say Writing code / Writing command during this phase via useToolArgsStatus. Display only: the parser input, the executed call, and the conversation the model sees are byte-identical, covered by new loop-level tests for the structured path, the text path, and the no-tool JSON answer. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: keep full tool output visible past the model cap; heal /mnt/data habits Live testing surfaced two issues in the tool streaming UX. First, a long python stdout ended in '... (truncated' in the finished card: the model-visible result is capped by tools._truncate (_MAX_OUTPUT_CHARS, previously 8000 chars) to protect the context window, and the card rendered that capped text even though the live stream had already shown everything. The cap stays (raised to 16000, overridable via UNSLOTH_TOOL_RESULT_MAX_CHARS) but display and model concerns are now split: the adapter preserves the accumulated live stream on tool_end whenever it captured more than the final result, and the finished python/terminal cards prefer it. The live-stream ceiling rises from 16 KB to 400 KB (chunks batch per poll, so SSE stays cheap), and both the live pane and the finished card render only the last 2000 lines with a Show all control so a huge output cannot jank the DOM. The truncation notice now tells the model the user saw the full output and that written files persist in the working directory. The final result string remains byte-identical with and without streaming. Second, models trained on ChatGPT code-interpreter transcripts write to /mnt/data, which does not exist here (the sandbox CWD is a per-thread persistent dir). Three layers, all identical across streaming and non-streaming paths: the python/terminal tool descriptions gain one sentence saying to use relative paths in the persistent CWD; a failed execution whose output shows a missing-file error on a known code-interpreter prefix (/mnt/data, /mnt/outputs, /home/sandbox, /workspace) gets a model-visible retry hint appended after truncation so it always survives; and a sitecustomize shim on the sandbox PYTHONPATH remaps those prefixes onto the CWD in open()/os.makedirs() with a one-line stderr notice, covering the python tool and any Python launched from the terminal tool without touching the exec wrapper (so tracebacks keep their line numbers). Bash-level file operations cannot be redirected without root or mount namespaces, so they rely on the description and the hint. * Studio: fix hidden-element parsing, heartbeat gaps, and tool output id collisions Review follow-ups on the tool streaming work: - _html_to_md: treat any present hidden attribute value as hidden (it is an enumerated attribute whose invalid value default is the Hidden state, so hidden="false" is still hidden), and implement HTML5 optional end tags so an unclosed <p hidden> or <li hidden> ends at the next sibling start tag instead of swallowing every following sibling until the parent closes - tool_stream_exec: keep heartbeats flowing after the live-output cap; a tool that keeps printing past the cap kept the queue non-empty, so neither tool_output nor heartbeat events were emitted and the SSE stream went silent past proxy idle timeouts - routes/inference: forward tool heartbeats before the disable_parallel_tool_use drop window swallows events, so a dropped call that executes server-side cannot leave the Anthropic stream silent - llama_cpp: close the provisional text tool card with a tool_end when the drained call fails to parse (DRAINING false-positive path), so the card cannot spin forever while the text is delivered as content - tools: decode terminal output as utf-8 with errors=replace like the python tool; invalid bytes used to raise UnicodeDecodeError from communicate() on the non-streaming path and silently truncate the streaming reader, so the two paths diverged - sitecustomize: patch io.open alongside builtins.open; pathlib Path.open, read_text and write_text call io.open directly and bypassed the remap - frontend: scope the toolLiveOutput/toolFullOutput store keys by pane (modelType and pairId) and clear stale entries on tool_start; backend ids like call_0 repeat across turns and across concurrently streaming panes (compare mode), so a later turn or another pane could display the wrong preserved output, and run-end cleanup now clears only its own keys Each backend fix carries a regression test that fails on the previous code; the byte-identity tests between streaming and non-streaming stay green. * Studio: keep tool failure status visible and truncation/remap notices truthful Finished python/terminal cards preferred the fuller live stream by length alone, so a tool that printed a lot then timed out or exited non-zero showed the captured stdout but dropped the final result's status (timeout notice, Exit code N). preferFullToolOutput now shows the stream when the result is just its truncated prefix, and appends the result otherwise so the failure tail always survives and the copy button copies both. The result truncation notice claimed the user was shown the full output, but the same wrapper serves non-streaming chat/API and direct execute_tool() callers where nothing is streamed to anyone. The notice is now mode-neutral and stays byte-identical with and without an output_callback, keeping the streaming vs non-streaming invariant intact. The sandbox sitecustomize shim now remaps /tmp/outputs into the working directory only while it does not already exist, so a real /tmp/outputs the user's own code created is never shadowed; /tmp/outputs also joins the missing-path retry-hint list. * Studio: suppress hidden void elements and keep live output scroll pinned only when at bottom * Studio: drop capped tool output without concatenating; remap pathlib mkdir Past the live-output cap stream_tool_execution built item + _drain_pending() (the current chunk joined with every queued sibling) only to discard it in the capped branch, so a chatty tool (yes, a tight print loop) could enqueue far more than one poll interval of text and blow past the memory/CPU ceiling the cap exists to enforce. Drain and drop queued items without building a combined string, still counting each drain toward the heartbeat cadence so the SSE keepalive survives. Generated code often prepares code-interpreter paths with Path('/mnt/data').mkdir(parents=True, exist_ok=True); pathlib drives that through os.mkdir (not the patched os.makedirs) per component and, on FileExistsError, probes the unpatched os.stat via Path.is_dir(), so the setup raised before open() ever ran. Patch os.mkdir with the same remap and patch Path.mkdir so the whole parents/exist_ok dance lands on the mapped working directory and stays idempotent; real paths still pass through. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: generalize sandbox write remap and hint to any hallucinated absolute path Models invent absolute paths from seeing their CWD (a DeepSeek run did open('/home/ubuntu/Sandbox/flappy_bird.html', 'w') and died with FileNotFoundError). A prefix list cannot enumerate these, so the sitecustomize shim gains a write-mode fallback in open()/io.open(): when a write/create-mode open targets an absolute path outside the CWD whose parent directory does not exist, redirect it to the basename in the CWD and emit the same one-line stderr notice, echoing the original path. The prefix remaps still run first (they cover reads and preserve subpaths); read modes never hit the fallback so real system files fail or succeed truthfully; bytes paths pass through. The fallback is not applied to mkdir/makedirs/Path.mkdir, since creating an arbitrary absolute directory can legitimately succeed on the host, and that decision is documented in a comment. The model-visible retry hint now echoes the real failing path (parsed from the traceback tail) instead of the canned /mnt/data example, and fires for any absolute path outside the working directory, not just the enumerated prefixes, while a relative miss still gets no hint. The shim wrapper still adds one frame to tracebacks that surface open() errors; suppressing only our frame has no clean standard mechanism (a wrapper always adds a frame), so the frame is left as an accepted compromise. Tests: hallucinated absolute write remaps to the CWD basename across w/a/x/w+; reads of a missing absolute path pass through untouched; writes to an existing external dir pass through; prefix subpaths still preserved; end-to-end write fallback lands the file in the sandbox workdir identically with and without streaming; the hint echoes the actual path for convention and non-convention absolute paths alike. * Studio: kill exited process groups on drain; bound the over-cap output batch _drain_process_output killed the process only via _kill_process_tree, which short-circuits once the parent has exited, so a grandchild that inherited stdout and outlived the parent was never signaled: a finite-timeout run could return while it kept holding the pipe, and a timeout=None cancel left it behind. Capture the setsid process group before waiting and SIGKILL that group at both give-up points so the whole tree is torn down. The streaming wrapper's first over-cap batch joined the current chunk with the entire pending backlog before enforcing the live-output cap, so a chatty tool could allocate far past the cap on the crossing batch. Bound the drain to the remaining budget and drop the surplus in place, keeping the truncated output byte-identical to joining everything. * Studio: harden sandbox path healing and process/generator cleanup Sandbox sitecustomize shim: - Make the generalized write fallback collision-safe: never redirect an invented absolute path onto an already-present CWD file (refuse and let the original open raise FileNotFoundError, preserving the workspace file). - Only w/a/x create a file; r+/rb+ are read-update modes that require the target to exist, so a bare + no longer trips the write fallback. - Gate every convention-prefix remap (/mnt/data, /mnt/outputs, /home/sandbox, /workspace) on the prefix root being absent, so a real host mount is never shadowed; a miss under an existing real prefix passes through. - Patch os.open so Path.touch and other low-level creators heal convention paths too, matching the Path.mkdir patch. Local code execution (tools.py): - Capture the setsid process group right after Popen (before any watcher can poll/reap the leader) and thread it through the cancel watcher and drain. - Kill the captured group in the non-streaming python/terminal timeout branch so an exited leader no longer leaks a stdout-holding grandchild (matches the streaming drain path). - Guard os.getpgid/os.killpg by platform so streamed execution no longer raises on Windows; fall back to single-pid kill. - Judge missing-path hints against the executor's real workdir so a legitimate miss inside a project workspace outside the sandbox root is not mislabeled. Tool streaming routes (routes/inference.py): - Drain a pending next(gen) worker before closing the generator in the safetensors and Anthropic tool streams, so a disconnect no longer races gen.close() (generator already executing) or leaks the thread/generator. HTML to markdown: - Only drop boilerplate lines composed entirely of known furniture phrases so real prose that merely quotes one (for example "we use cookies to authenticate requests") is preserved. Adds hermetic tests for each change. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: keep aside callouts, contain sandbox path remaps, and keepalive dropped Anthropic tool events _html_to_md: stop dropping <aside> unconditionally. Documentation pages render notes/warnings/examples as aside admonition callouts; those inside the selected article/main scope are real content. A furniture aside outside the scope is already excluded by the main-content pass. sitecustomize: contain the code-interpreter path remap under the sandbox CWD. A hallucinated habit path such as /mnt/data/../other_session/file no longer escapes the per-conversation workdir; parent-traversal components in the suffix are dropped and a '.'/'..' write-fallback basename is refused. routes/inference: emit a rate-limited comment keepalive when the Anthropic Messages stream drops tool_output/tool_args events. A chatty tool keeps the generator busy so the stall keepalive never fires and the tool wrapper emits heartbeats only while idle, which left the SSE stream silent past proxy idle caps; the OpenAI passthrough paths forward these events, this path now keeps the connection alive. * Studio: bound the tool-output chunk that first crosses the live cap _drain_queue joined the entire chunk that first crossed the live-output cap before dropping the rest, so a single multi-megabyte line (or any chunk dequeued once the budget was already met at max_chars <= 0) was materialized in full only to be truncated away, defeating the memory ceiling the cap enforces. Slice the crossing chunk to one character past the budget: that preserves the caller's overflow signal and its byte-identical truncation while dropping the arbitrarily large remainder in place. * Studio: scope missing-path hint to the failing line, keepalive dropped-call output, and preserve truncated tool streams over byte length - tools._missing_path_hint: the code-interpreter convention-prefix trigger scanned the whole output, so a convention prefix mentioned only in a traceback frame (a /workspace project root) or printed by the user's code would add a misleading 'use a relative path' hint even when the actual FileNotFoundError was a relative or in-workdir path. Scope the convention test to the failing-path error line(s), matching _extract_missing_abs_path. - _anthropic_tool_stream: the tool_output/tool_args rate-limited keepalive sat after the drop_until_tool_end skip, so under disable_parallel_tool_use a chatty second-or-later tool call was dropped whole with no keepalive, letting an idle proxy kill the SSE stream. Check the keepalive branch before the drop skip (like the heartbeat branch) so dropped-call output keeps the stream alive. - preferFullToolOutput / chat-adapter: a truncated result can be longer than the live stream by byte count once its footer, an 'Exit code N:' notice, or an __IMAGES__ base64 tail is appended, so the length-only gate discarded the full stream and the finished card fell back to the truncated text. Add a shared truncation-aware shouldPreserveFullOutput used by both the write and read sites: preserve the stream whenever the result carries the truncation footer. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: skip the habit-path hint for real project paths under a convention prefix * Kill captured process group on streamed wait-timeout The streamed drain path's proc.wait() timeout branch only called _kill_process_tree(proc). If the leader exits in the narrow window between the wait timing out and _kill_process_tree sampling its pgid, that helper short-circuits on the reaped leader and a stdout-holding grandchild in the same group survives. Also kill the captured pgid there, matching the non-streaming communicate() timeout path. Adds a hermetic regression test that models the reaped-leader race by stubbing _kill_process_tree. * Fix 3.10 pathlib write_text remap and honor cancel in finite drain On Python < 3.11 pathlib routes Path.open / read_text / write_text through a module-level accessor singleton whose open attribute captured the original io.open at import time (_NormalAccessor.open = io.open). Patching io.open in the sandbox shim therefore never reached that captured reference, so a Path('/mnt/data/x').write_text(...) raised FileNotFoundError on 3.10 while passing on 3.11+ (which dropped the accessor and calls io.open at call time). Repoint _NormalAccessor.open at the same io.open wrapper via a staticmethod, guarded so it is an idempotent no-op on 3.11+. Keep the test save/restore helpers symmetric so the accessor is restored too, and add a hermetic write_text/read_text remap test that covers every version. Also honor cancellation while draining inherited stdout after the leader exits. Once the leader is reaped the cancel watcher returns (its loop is while proc.poll() is None), so the finite-timeout drain did one blocking reader.join(timeout=remaining) that ignored cancel_event and kept draining a chatty grandchild for the whole budget after a disconnect/Stop. Poll cancel_event in 0.5s slices against a deadline like the timeout=None branch and kill the captured process group promptly on cancel. The normal path still reaches EOF on its own, so the streamed vs non-streamed result is unchanged. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: port no-tool stream keepalive/drain and fix subprocess/queue/extraction asymmetries Streaming no-tool paths now match their tool twins: - _anthropic_plain_stream, safetensors/MLX no-tool stream, and standard GGUF no-tool stream run next(gen) in a worker with a timed SSE keepalive loop so a long prompt prefill cannot leave the stream idle past a proxy cap. - The Anthropic plain and safetensors/MLX no-tool teardowns now drain the pending next(gen) worker and close the generator on disconnect instead of leaking the suspended generator. Other asymmetries: - Non-streaming _python_exec/_bash_exec always drain via _drain_process_output (output_callback may be None) so a cancelled run reaps a stdout-holding grandchild that outlived the leader instead of blocking in communicate(). The joined bytes are identical to communicate(), so streamed vs non-streamed results stay byte-identical. - _build_bypass_env installs the sitecustomize path shim on PYTHONPATH (prepend, keeping the operator's entries) so /mnt/data remap works in bypass mode too. - GGUF forwards output_callback to execute_tool only when the callable accepts it (shared accepts_output_callback), matching safetensors and preserving legacy monkey-patched signatures. - tool_stream_exec bounds accepted live output at the producer boundary so a chatty tool cannot grow the queue without limit under consumer backpressure and cannot keep the drain spinning and starve heartbeats. - html_to_md implicit-close now searches past unclosed inline descendants so a hidden <p>/<li> is closed by a following block; main-content scoping gates on the largest single <article>/<main> so a swarm of tiny cards cannot pass the threshold in aggregate and displace the real main. - preferFullToolOutput re-attaches the "Exit code N:" prefix to the fuller stream instead of appending the still-prefixed result, so a failed truncated tool no longer duplicates its stdout in the finished card. Adds hermetic tests for each. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Preserve short live output on timed-out tools; strip inline-CSS-hidden subtrees and score truncated main-content scopes * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Tighten chat tool streaming comments and docstrings * Keep HTML READMEs from the GitHub API and preserve interrupted tool output Convert a 200 HTML README body from the GitHub README API to Markdown instead of discarding it and falling back to the repo page chrome, and promote captured live stdout to full output when a tool never reaches tool_end (stream interrupted or cancelled) so the partial diagnostics stay on the finished card. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: anchor HTML sniff, keep repeated sandbox writes, reuse textual tool ids Anchor _looks_like_html to the leading doctype/tag so a Markdown README that opens with a fenced HTML example stays Markdown (no html_to_markdown corruption), while bare HTML fragments (<body>/<article>/<section>) are still detected and converted on a missing/wrong Content-Type. Let the sandbox write fallback re-serve a target it already healed for the same invented absolute path, so iterative overwrites of a generated artifact stop failing with FileNotFoundError while the anti-clobber guard still refuses unrelated same-basename files. Reconcile the first textual tool call carrying an explicit id onto the open provisional TEXT card instead of spawning a duplicate card under that id. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: run implicit-close before skipping tags and keep leading README tables as Markdown A skipped block (<nav>/<footer>) is an HTML5 optional-end-tag closer of an open <p>, but handle_starttag returned before the implicit-close bookkeeping, so a never-closed <p hidden> kept its hidden mark and swallowed every following sibling. Run _close_implicit before the skip decision so the hidden mark is released and trailing content renders. Drop <table> (and its <thead>/<tbody>/<tr>/<td>/<th> children) from the _looks_like_html leading set: Markdown READMEs routinely open with a raw HTML <table> badge/layout row, and sniffing that as HTML collapsed the whole Markdown body through html_to_markdown, exactly like the already-excluded <div align>/<p align> layout headers. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: make bypass-permissions Popen double faithful to the unified drain path The non-streaming _python_exec/_bash_exec now share _drain_process_output, which reads proc.stdout in a reader thread and calls proc.wait(); the test double only implemented communicate(), so bypass-mode bash returned an AttributeError instead of the faked output. Give _FakeProc a readable stdout pipe (yields the fake line then EOF), wait()/poll()/pid, so the test exercises the real drain path on both the python and bash bypass branches. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: persist sandbox path heals across runs and suppress nested hidden lists * Studio: run tool Python child unbuffered (-u) so unflushed prints stream live A long-running snippet doing bare print() without flush=True never reached the live-output pane: CPython block-buffers stdout when writing to a pipe, so _drain_process_output's readline() saw nothing until the buffer filled or the process exited. Launch the child with the interpreter -u flag so stdout is unbuffered and each print streams as it is produced. -u is applied unconditionally on both the streaming and non-streaming path, so the child invocation stays byte-identical with and without streaming and the final joined result is unchanged (buffering/timing only). Unlike the earlier PYTHONUNBUFFERED=1 env injection that was removed, -u does not pollute the child's os.environ and is not visible via os.getenv. * Render only the selected main-content subtree in html_to_markdown The main-content heuristic sized each <article>/<main> candidate individually to pick the largest subtree, but then rendered every matching tag in the document. A page with one real article plus sibling related-post cards or comment threads passed the size gate on the real article yet still emitted the unrelated siblings. Size and render the same chosen subtree so only the selected main-content subtree reaches the output. * Studio: tighten chat-tool-streaming fix comments * Studio: store tool-output-scope separators as unicode escapes The pane-scope and tool-output-key separators were literal NUL (0x00) bytes, which made git treat the file as binary and hide its diff and blame. Write them as \u0000 escapes instead; the runtime key value is unchanged. * Studio: bound tool-stream teardown when the client disconnects stream_tool_execution ran its yield loop with no try/finally, so a gen.close() on client disconnect (GeneratorExit at a yield) skipped the worker join and never signalled cancellation. A tool that does not poll cancel_event mid-flight (web_search, MCP, search_knowledge_base) then kept request teardown blocked until the tool's own timeout. Thread the request cancel_event into the wrapper, set it only on the abnormal-exit path so a clean multi-tool turn is unaffected, and bound the worker join to a few seconds; the daemon worker cannot outlive the process. * Studio: sandbox path remap no longer masks missing reads The sandbox sitecustomize shim remapped code-interpreter prefixes (/mnt/data, /workspace, ...) onto the working directory for every open mode, including reads. A read of a path that truly did not exist was silently redirected onto a same-basename workdir file instead of raising on the path the model used, hiding real missing-input errors. Remap writes and creates as before, but remap a read only when the mapped workdir target already exists (re-reading a just-written artifact); otherwise keep the original absolute path so the failure stays truthful. * Studio: bound web fetch with one overall deadline and cancellation The web fetch applied timeouts per network operation, so a GitHub README API attempt plus its HTML fallback plus up to five redirect hops could run well past the tool timeout, and nothing aborted once the client had disconnected. Add a single wall-clock deadline shared across the API attempt, the fallback, every redirect hop and the body read, cap each hop's socket timeout at the time left on the budget, and poll cancel_event. SSRF host pinning, per-hop redirect revalidation, the five-hop cap and the size cap are unchanged. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: keep tool-stream teardown off the event loop on disconnect The bounded worker join added for disconnect safety still ran on an abnormal close, so a client disconnect could wait the full join timeout; and the safetensors and Anthropic tool streams closed their generator synchronously on the event loop, unlike the GGUF path. On abnormal exit the daemon worker is abandoned, so join with a zero timeout instead of waiting; offload the safetensors and Anthropic gen.close to a thread to match GGUF; and surface a heartbeat as soon as cancel_event is set while the worker is silent so the route regains control at once instead of after a heartbeat interval. * Studio: extend the web-fetch deadline to DNS, the body read, and search The overall fetch deadline did not cover host resolution or the response body read, and query-mode web_search ignored cancellation. Resolve hosts (initial and every redirect) on a budget-polled helper so a slow or pre-cancelled getaddrinfo aborts on time; read the capped body in chunks with the budget re-checked between them so a slow-drip server cannot stretch a single read past the deadline; and gate the blocking DDGS query on cancel_event on both sides. SSRF host pinning, per-hop redirect revalidation, the five-hop cap and the size cap are unchanged. * Studio: defer the sandbox remap notice and tighten os.open create flags The one-shot remap notice fired while computing the mapping, so a read that kept its original path emitted a false notice and spent the notice a later genuine remap needed. Only emit it once _remap_open commits to the redirect. Separately, os.open classified O_TRUNC / O_APPEND without O_CREAT as creating, but those cannot create a missing file, so a missing target now stays truthful (only O_CREAT maps to the creating mode). * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: convert only genuine HTML README bodies, not Markdown with a leading block tag The GitHub README API returns the raw file, almost always Markdown. _looks_like_html classified a Markdown README opening with a block tag (<ul>, <ol>, <dl>, <pre>, <blockquote>) as HTML, so _fetch_page_text ran it through html_to_markdown and collapsed its headings, lists and fenced code into a single line. Sniff the README body with a stricter document-level check (doctype or a leading <html>/<head>/<body>) so only a real .html README is converted; the general page path is unchanged. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Surface unclassified mid-stream Anthropic errors as SSE error events The local Anthropic tool-stream and plain-stream paths called _anthropic_stream_error_event(e) with force defaulting to False, so an unclassified mid-stream failure (llama-server crash, decode OOM, a dropped upstream socket) returned no event. The except block then fell through to emitter.finish(), emitting a normal message_delta and message_stop that masked a truncated turn as a clean finish. Pass force = True at both fall-through sites so an unclassified failure emits a 500 SSE error event and returns, matching the Anthropic passthrough path that already forces it. Add regression tests covering both stream paths. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Studio: give each tool run a unique part id so finished cards keep their own output Backend tool ids restart at call_0 every assistant response, and the transient toolLiveOutput/toolFullOutput store maps were keyed by pane scope plus that bare backend id. Two turns in the same pane therefore shared one key: the stale-clear at tool_start only guards the forward direction, so when a later call_0 finished and wrote its preserved full output, every earlier still-mounted finished card reading the same key re-rendered and displayed the newer tool's output instead of its own. Mint one per-run-unique part id per backend id (call_0:<uuid>) and route tool_start/output/args/end through a single resolver so all events for a call resolve the same id. The durable part carries the unique id, so the finished-card readers derive a collision-free key with no change, and the awaiting-confirmation path keeps its own synthesized id. Outbound replay stays paired (the assistant tool_call id and the role=tool result tool_call_id both come from the part id) and gains unique ids across turns, which strict providers require. * Studio: tighten PR comments --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: danielhanchen <michaelhan2050@gmail.com>
522 lines
23 KiB
Python
522 lines
23 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""Hermetic tests for the sandbox sitecustomize path-remap shim.
|
|
|
|
The shim (``core/inference/sandbox_site/sitecustomize.py``) runs at interpreter
|
|
startup inside every sandboxed tool subprocess and remaps ChatGPT
|
|
code-interpreter habit paths (``/mnt/data`` etc.) onto the per-conversation
|
|
working directory. Importing it calls ``_install()``, which monkeypatches
|
|
``builtins.open`` / ``io.open`` / ``os.makedirs`` / ``os.mkdir`` /
|
|
``pathlib.Path.mkdir`` process-wide, so these tests
|
|
load it into a throwaway module and restore those globals immediately, then
|
|
exercise the pure ``_remap()`` function directly -- no subprocess, and no real
|
|
``/mnt`` or ``/tmp`` writes. The mkdir test keeps the patch installed under a
|
|
``chdir`` into ``tmp_path`` so the only real writes land in that temp dir.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import builtins
|
|
import importlib.util
|
|
import io
|
|
import os
|
|
import pathlib
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
_SHIM = (
|
|
Path(__file__).resolve().parent.parent
|
|
/ "core"
|
|
/ "inference"
|
|
/ "sandbox_site"
|
|
/ "sitecustomize.py"
|
|
)
|
|
|
|
|
|
def _save_patch_targets():
|
|
"""Snapshot every global the shim patches, so tests can restore them.
|
|
|
|
On Python < 3.11 the shim also repoints ``pathlib._NormalAccessor.open``
|
|
(pathlib captured the original io.open at import there); the accessor is
|
|
absent on 3.11+, so the snapshot skips it.
|
|
"""
|
|
accessor = getattr(pathlib, "_NormalAccessor", None)
|
|
return (
|
|
(builtins.open, io.open, os.open, os.makedirs, os.mkdir, pathlib.Path.mkdir),
|
|
accessor,
|
|
accessor.open if accessor is not None else None,
|
|
)
|
|
|
|
|
|
def _restore_patch_targets(saved):
|
|
"""Undo _save_patch_targets so the test process stays clean."""
|
|
globals_tuple, accessor, accessor_open = saved
|
|
(builtins.open, io.open, os.open, os.makedirs, os.mkdir, pathlib.Path.mkdir) = globals_tuple
|
|
if accessor is not None:
|
|
accessor.open = accessor_open
|
|
|
|
|
|
def _load_shim():
|
|
"""Import the shim without leaving its open()/mkdir patches installed."""
|
|
saved = _save_patch_targets()
|
|
spec = importlib.util.spec_from_file_location("_sandbox_sitecustomize_under_test", _SHIM)
|
|
mod = importlib.util.module_from_spec(spec)
|
|
try:
|
|
spec.loader.exec_module(mod) # runs _install(), patching the globals
|
|
finally:
|
|
# Undo the process-wide patch so the test process stays clean.
|
|
_restore_patch_targets(saved)
|
|
mod._notified = True # silence the one-shot stderr notice in tests
|
|
return mod
|
|
|
|
|
|
def test_always_remap_prefixes_map_into_cwd(monkeypatch, tmp_path):
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
assert mod._remap("/mnt/data/out.txt") == os.path.join(cwd, "out.txt")
|
|
assert mod._remap("/mnt/data") == cwd
|
|
# Unrelated absolute and relative paths pass straight through.
|
|
assert mod._remap("/etc/passwd") == "/etc/passwd"
|
|
assert mod._remap("relative.txt") == "relative.txt"
|
|
|
|
|
|
def test_prefix_remap_contains_parent_traversal_inside_cwd(monkeypatch, tmp_path):
|
|
# A hallucinated habit path can carry '..' in its suffix. The remapped target
|
|
# must stay under the per-conversation CWD, never climbing into a sibling
|
|
# session's directory: '..' components are dropped, the rest of the subpath kept.
|
|
mod = _load_shim()
|
|
workdir = tmp_path / "session_current" / "work"
|
|
workdir.mkdir(parents = True)
|
|
monkeypatch.chdir(workdir)
|
|
cwd = os.getcwd()
|
|
|
|
for escaping in (
|
|
"/mnt/data/../other_session/file",
|
|
"/mnt/data/../../secrets.txt",
|
|
"/mnt/data/a/../../b/c.txt",
|
|
"/mnt/data/./sub/./x.txt",
|
|
):
|
|
mapped = mod._remap(escaping)
|
|
# Never escapes the CWD subtree.
|
|
assert mapped == cwd or mapped.startswith(cwd + os.sep), (escaping, mapped)
|
|
assert os.path.realpath(mapped).startswith(os.path.realpath(cwd))
|
|
# '../other_session/file' collapses to CWD/other_session/file.
|
|
assert mod._remap("/mnt/data/../other_session/file") == os.path.join(
|
|
cwd, "other_session", "file"
|
|
)
|
|
# A bare '/mnt/data/..' with nothing left maps onto the CWD itself.
|
|
assert mod._remap("/mnt/data/..") == cwd
|
|
|
|
|
|
def test_write_fallback_refuses_dotdot_basename(monkeypatch, tmp_path):
|
|
# basename('/no/such/tree/..') == '..'; joining that onto the CWD would target
|
|
# its parent (outside the sandbox). The fallback must refuse such non-filename
|
|
# basenames and return the path unchanged so the real open raises.
|
|
mod = _load_shim()
|
|
workdir = tmp_path / "work"
|
|
workdir.mkdir()
|
|
monkeypatch.chdir(workdir)
|
|
for escaping in ("/no/such/tree/..", "/no/such/tree/.", "/no/such/tree/"):
|
|
assert mod._remap_open(escaping, "w") == escaping
|
|
|
|
|
|
def test_write_fallback_remaps_hallucinated_absolute_path(monkeypatch, tmp_path):
|
|
# Models invent absolute paths from their CWD (e.g. /home/ubuntu/Sandbox/x.html),
|
|
# which prefix lists cannot enumerate. A write/create-mode open on an absolute
|
|
# path outside the CWD whose parent is missing is redirected to the basename in the CWD.
|
|
mod = _load_shim()
|
|
workdir = tmp_path / "workdir"
|
|
workdir.mkdir()
|
|
monkeypatch.chdir(workdir)
|
|
cwd = os.getcwd()
|
|
hallucinated = "/home/ubuntu/Sandbox/flappy_bird.html"
|
|
for mode in ("w", "a", "x", "w+"):
|
|
assert mod._remap_open(hallucinated, mode) == os.path.join(cwd, "flappy_bird.html")
|
|
# A nested missing tree collapses to just the basename in the CWD.
|
|
assert mod._remap_open("/no/such/tree/report.txt", "w") == os.path.join(cwd, "report.txt")
|
|
|
|
|
|
def test_write_fallback_never_touches_read_modes(monkeypatch, tmp_path):
|
|
# Reading a real (or genuinely missing) file must succeed/fail truthfully --
|
|
# the fallback is write-only.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
for mode in ("r", "rb", "r+"):
|
|
assert mod._remap_open("/etc/definitely_missing_xyz.conf", mode) == (
|
|
"/etc/definitely_missing_xyz.conf"
|
|
)
|
|
|
|
|
|
def test_write_fallback_passes_through_existing_external_dir(monkeypatch, tmp_path):
|
|
# A write to an absolute path whose parent dir exists is a deliberate, working
|
|
# target and must NOT be redirected.
|
|
mod = _load_shim()
|
|
external = tmp_path / "external"
|
|
external.mkdir()
|
|
workdir = tmp_path / "workdir"
|
|
workdir.mkdir()
|
|
monkeypatch.chdir(workdir)
|
|
target = str(external / "out.txt")
|
|
assert mod._remap_open(target, "w") is target
|
|
|
|
|
|
def test_write_fallback_never_clobbers_same_basename(monkeypatch, tmp_path):
|
|
# A same-named CWD file is an unrelated persistent conversation file.
|
|
# Redirecting an invented absolute path (missing parent) onto it would clobber
|
|
# data the model never asked to touch, so the fallback refuses on collision for
|
|
# every create mode: it returns the original path and the real open() raises.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
|
|
existing = tmp_path / "report.txt"
|
|
existing.write_text("KEEP-ME")
|
|
|
|
requested = "/definitely_missing_parent_7083/report.txt"
|
|
for mode in ("w", "a", "x", "w+", "a+"):
|
|
# Refused: returns the original absolute path unchanged (no redirect).
|
|
assert mod._remap_open(requested, mode) == requested
|
|
|
|
# And opening the refused path really does raise, leaving the file intact.
|
|
with pytest.raises(FileNotFoundError):
|
|
open(mod._remap_open(requested, "w"), "w")
|
|
assert existing.read_text() == "KEEP-ME"
|
|
|
|
# No collision -> still healed into the working directory as before.
|
|
fresh = "/definitely_missing_parent_7083/brand_new.txt"
|
|
assert mod._remap_open(fresh, "w") == os.path.join(os.getcwd(), "brand_new.txt")
|
|
|
|
|
|
def test_write_fallback_reserves_same_target_on_repeated_writes(monkeypatch, tmp_path):
|
|
# Iterative overwrite of the SAME invented path must keep landing on the CWD
|
|
# target the fallback first healed it to. Once ./app.html exists, a naive
|
|
# anti-clobber guard would return the original (parent-missing) path and every
|
|
# regenerate would raise; the fallback must recognise its own prior remap and re-serve it.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
invented = "/home/ubuntu/Sandbox/app.html"
|
|
target = os.path.join(cwd, "app.html")
|
|
|
|
# First write: healed into the CWD, and create the file so the collision guard
|
|
# would trigger on the next call without the fix.
|
|
assert mod._remap_open(invented, "w") == target
|
|
with open(mod._remap_open(invented, "w"), "w") as fh:
|
|
fh.write("v1")
|
|
|
|
# Repeated overwrites of the same invented path stay on the same target.
|
|
for _ in range(3):
|
|
assert mod._remap_open(invented, "w") == target
|
|
with open(mod._remap_open(invented, "w"), "w") as fh:
|
|
fh.write("v2")
|
|
assert Path(target).read_text() == "v2"
|
|
|
|
# A DIFFERENT invented source colliding on basename is still refused, so it can
|
|
# never clobber the artifact the first path owns.
|
|
other = "/opt/other/app.html"
|
|
assert mod._remap_open(other, "w") == other
|
|
|
|
|
|
def test_write_fallback_reserves_healed_target_across_separate_runs(monkeypatch, tmp_path):
|
|
# Each tool call is a FRESH subprocess, so the in-process remap map is empty on
|
|
# the next run while the healed file persists in the working directory. A second
|
|
# run overwriting the SAME invented path (whose healed basename now exists) must
|
|
# still re-serve that target via the on-disk sidecar, else the model could never
|
|
# overwrite last turn's artifact. Each _load_shim() simulates a brand-new interpreter.
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
invented = "/home/ubuntu/Sandbox/app.html"
|
|
target = os.path.join(cwd, "app.html")
|
|
|
|
# Run 1: heal the invented path, create the file, persist source->target to the sidecar.
|
|
run1 = _load_shim()
|
|
assert run1._remap_open(invented, "w") == target
|
|
with open(run1._remap_open(invented, "w"), "w") as fh:
|
|
fh.write("v1")
|
|
|
|
# Run 2: brand-new interpreter, nothing in memory -- still recognises its prior
|
|
# heal from the sidecar and re-serves it, even though ./app.html now exists
|
|
# (which without the sidecar would trip the anti-clobber guard and raise).
|
|
run2 = _load_shim()
|
|
assert run2._remapped_writes == {}
|
|
assert run2._remap_open(invented, "w") == target
|
|
with open(run2._remap_open(invented, "w"), "w") as fh:
|
|
fh.write("v2")
|
|
assert Path(target).read_text() == "v2"
|
|
|
|
# A DIFFERENT invented source colliding only on basename is still refused across
|
|
# runs: the sidecar records solely the source it healed, so an unrelated path
|
|
# can never adopt/clobber the artifact.
|
|
other = "/opt/other/app.html"
|
|
assert run2._remap_open(other, "w") == other
|
|
|
|
# A foreign CWD file (created directly, never healed) stays protected in a later
|
|
# run from an invented path sharing its basename.
|
|
(tmp_path / "notes.txt").write_text("KEEP-ME")
|
|
run3 = _load_shim()
|
|
assert run3._remap_open("/some/missing/notes.txt", "w") == "/some/missing/notes.txt"
|
|
with pytest.raises(FileNotFoundError):
|
|
open(run3._remap_open("/some/missing/notes.txt", "w"), "w")
|
|
assert (tmp_path / "notes.txt").read_text() == "KEEP-ME"
|
|
|
|
|
|
@pytest.mark.parametrize("mode", ["r+", "rb+"])
|
|
def test_read_update_modes_never_redirected_even_with_missing_parent(monkeypatch, tmp_path, mode):
|
|
# r+ / rb+ REQUIRE the target to exist and never create; a "+" must not qualify
|
|
# as creation, or a missing absolute path would be redirected onto a same-basename
|
|
# workspace file and corrupt it. The parent is missing, so only the mode predicate
|
|
# protects the victim.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
|
|
victim = tmp_path / "victim.txt"
|
|
victim.write_text("original")
|
|
|
|
requested = "/definitely_missing_parent_xyz/victim.txt"
|
|
assert mod._remap_open(requested, mode) == requested
|
|
with pytest.raises(FileNotFoundError):
|
|
open(mod._remap_open(requested, mode), mode)
|
|
assert victim.read_text() == "original"
|
|
|
|
|
|
def test_existing_convention_prefix_is_not_shadowed(monkeypatch, tmp_path):
|
|
# A convention prefix (/mnt/data etc.) is remapped ONLY while absent. If a real
|
|
# host directory exists there it must pass through so its own filesystem semantics
|
|
# apply: a real read succeeds, and a missing file under it is created there by a
|
|
# write, never shadowed by a CWD file.
|
|
mod = _load_shim()
|
|
external = tmp_path / "real_prefix"
|
|
external.mkdir()
|
|
(external / "data.txt").write_text("real external content")
|
|
|
|
workdir = tmp_path / "conversation"
|
|
workdir.mkdir()
|
|
monkeypatch.chdir(workdir)
|
|
monkeypatch.setattr(mod, "_PREFIXES", (str(external),))
|
|
monkeypatch.setattr(mod, "_CONDITIONAL_PREFIXES", ())
|
|
|
|
target = str(external / "data.txt")
|
|
# Prefix exists -> pass through for read and write.
|
|
assert mod._remap(target) == target
|
|
assert mod._remap_open(target, "r") == target
|
|
assert mod._remap_open(target, "w") == target
|
|
# A missing file under the EXISTING real prefix is left alone (parent exists),
|
|
# so the real directory creates it -- not a CWD shadow.
|
|
missing = str(external / "new.txt")
|
|
assert mod._remap_open(missing, "w") == missing
|
|
|
|
# Remove the prefix directory -> healing resumes (absent prefix).
|
|
(external / "data.txt").unlink()
|
|
external.rmdir()
|
|
assert mod._remap(target) == os.path.join(os.getcwd(), "data.txt")
|
|
|
|
|
|
def test_os_open_and_path_touch_remap_convention_path(monkeypatch, tmp_path):
|
|
# Path.touch() and other low-level creators go through os.open, not builtins/io.open.
|
|
# Keep the shim's patches installed under a chdir into tmp_path so os.open is
|
|
# patched, and confirm a convention path is healed into the CWD instead of raising.
|
|
saved = _save_patch_targets()
|
|
spec = importlib.util.spec_from_file_location("_sandbox_sitecustomize_osopen", _SHIM)
|
|
mod = importlib.util.module_from_spec(spec)
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
try:
|
|
spec.loader.exec_module(mod) # installs the os.open patch
|
|
mod._notified = True
|
|
pathlib.Path("/mnt/data/touched.txt").touch()
|
|
assert os.path.isfile(os.path.join(cwd, "touched.txt"))
|
|
# Direct os.open with create flags is healed too.
|
|
fd = os.open("/mnt/data/via_os_open.txt", os.O_CREAT | os.O_WRONLY, 0o600)
|
|
os.close(fd)
|
|
assert os.path.isfile(os.path.join(cwd, "via_os_open.txt"))
|
|
finally:
|
|
_restore_patch_targets(saved)
|
|
|
|
|
|
def test_path_write_read_text_remap_convention_path(monkeypatch, tmp_path):
|
|
# Path.open / write_text / read_text route through io.open (3.11+) or the captured
|
|
# accessor open (< 3.11). Keep the patches installed under a chdir into tmp_path
|
|
# and confirm a convention path is healed into the CWD on every version. This is
|
|
# the hermetic guard for the 3.10 accessor path a plain io.open patch misses.
|
|
saved = _save_patch_targets()
|
|
spec = importlib.util.spec_from_file_location("_sandbox_sitecustomize_writetext", _SHIM)
|
|
mod = importlib.util.module_from_spec(spec)
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
try:
|
|
spec.loader.exec_module(mod) # installs the io.open / accessor patch
|
|
mod._notified = True
|
|
pathlib.Path("/mnt/data/note.txt").write_text("pathlib remap")
|
|
assert os.path.isfile(os.path.join(cwd, "note.txt"))
|
|
# read_text goes through the same mapped path and sees what was written.
|
|
assert pathlib.Path("/mnt/data/note.txt").read_text() == "pathlib remap"
|
|
# A real absolute path passes through both patches untouched.
|
|
real = tmp_path / "real.txt"
|
|
pathlib.Path(str(real)).write_text("verbatim")
|
|
assert real.read_text() == "verbatim"
|
|
finally:
|
|
_restore_patch_targets(saved)
|
|
|
|
|
|
def test_write_fallback_leaves_relative_and_bytes_paths(monkeypatch, tmp_path):
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
# Relative paths are already inside the CWD.
|
|
assert mod._remap_open("out.txt", "w") == "out.txt"
|
|
# Bytes paths are left untouched (prefix remap skips non-str).
|
|
assert mod._remap_open(b"/no/such/tree/x.bin", "w") == b"/no/such/tree/x.bin"
|
|
|
|
|
|
def test_remap_open_still_applies_prefix_remaps(monkeypatch, tmp_path):
|
|
# The prefix remap runs first and preserves subpaths. A write heals onto the CWD
|
|
# unconditionally; the write-mode fallback is only the last resort.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
assert mod._remap_open("/mnt/data/sub/out.txt", "w") == os.path.join(cwd, "sub", "out.txt")
|
|
# A read whose mapped target does NOT exist keeps the original path: a missing
|
|
# input stays truthful, not silently redirected into the CWD.
|
|
assert mod._remap_open("/mnt/data/sub/out.txt", "r") == "/mnt/data/sub/out.txt"
|
|
|
|
|
|
def test_prefix_read_heals_only_when_mapped_target_exists(monkeypatch, tmp_path):
|
|
# A convention-prefix READ must not redirect onto the CWD when the mapped target
|
|
# is absent -- that masks a genuine missing-input error and could serve an
|
|
# unrelated same-basename workdir file. It heals only when the mapped CWD target
|
|
# exists, so re-reading an artifact an earlier write produced still works.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
|
|
# Mapped target absent: read keeps the original path (truthful miss).
|
|
assert mod._remap_open("/mnt/data/input.csv", "r") == "/mnt/data/input.csv"
|
|
with pytest.raises(FileNotFoundError):
|
|
open(mod._remap_open("/mnt/data/input.csv", "r"))
|
|
|
|
# r+ (never creates) behaves the same: no redirect while absent.
|
|
assert mod._remap_open("/mnt/data/input.csv", "r+") == "/mnt/data/input.csv"
|
|
|
|
# A write heals onto the CWD and creates the artifact...
|
|
mapped = mod._remap_open("/mnt/data/input.csv", "w")
|
|
assert mapped == os.path.join(cwd, "input.csv")
|
|
with open(mapped, "w") as fh:
|
|
fh.write("col\n1\n")
|
|
|
|
# ...and now a READ of the same convention path heals onto that existing artifact.
|
|
read_target = mod._remap_open("/mnt/data/input.csv", "r")
|
|
assert read_target == os.path.join(cwd, "input.csv")
|
|
with open(read_target) as fh:
|
|
assert fh.read() == "col\n1\n"
|
|
|
|
|
|
def test_prefix_boundary_not_matched_by_similar_paths(monkeypatch, tmp_path):
|
|
# The prefix match is anchored on a segment boundary (prefix or prefix + '/'), so
|
|
# a sibling merely sharing the textual prefix must NOT be remapped: /workspace2
|
|
# is not /workspace, /mnt/database is not /mnt/data.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
for unrelated in ("/workspace2/file.txt", "/mnt/database/x", "/home/sandboxed/y"):
|
|
assert mod._remap(unrelated) == unrelated
|
|
# And through open() for a read too (no silent redirect).
|
|
assert mod._remap_open(unrelated, "r") == unrelated
|
|
|
|
|
|
def test_tmp_outputs_is_a_conditional_prefix():
|
|
mod = _load_shim()
|
|
assert "/tmp/outputs" in mod._CONDITIONAL_PREFIXES
|
|
# NOT in the always-remap set: /tmp exists on the host, so an unconditional remap
|
|
# could shadow a real /tmp/outputs the user code made.
|
|
assert "/tmp/outputs" not in mod._PREFIXES
|
|
|
|
|
|
def test_tmp_outputs_remapped_only_while_absent(monkeypatch, tmp_path):
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
# Point the conditional prefix at a real temp location so we can toggle its
|
|
# existence on disk instead of mocking os.path.exists.
|
|
cond = str(tmp_path / "cond_outputs")
|
|
monkeypatch.setattr(mod, "_CONDITIONAL_PREFIXES", (cond,))
|
|
|
|
# Absent: heal the habit path into the working directory (preserved/served).
|
|
assert not os.path.exists(cond)
|
|
assert mod._remap(cond + "/plot.png") == os.path.join(cwd, "plot.png")
|
|
assert mod._remap(cond) == cwd
|
|
|
|
# Present (the user's own code created it): pass through, never shadowed.
|
|
os.makedirs(cond)
|
|
assert mod._remap(cond + "/plot.png") == cond + "/plot.png"
|
|
assert mod._remap(cond) == cond
|
|
|
|
|
|
def test_pathlib_mkdir_parents_remaps_convention_path(monkeypatch, tmp_path):
|
|
# `Path('/mnt/data').mkdir(parents=True, exist_ok=True)` is a stock setup line.
|
|
# pathlib drives it through os.mkdir per component and Path.is_dir()/os.stat on
|
|
# FileExistsError, so the shim must patch os.mkdir AND Path.mkdir for the whole
|
|
# parents/exist_ok dance to land in the CWD instead of raising. Keeps the mkdir
|
|
# patches installed under a chdir into tmp_path and restores them in finally.
|
|
saved = _save_patch_targets()
|
|
spec = importlib.util.spec_from_file_location("_sandbox_sitecustomize_mkdir", _SHIM)
|
|
mod = importlib.util.module_from_spec(spec)
|
|
monkeypatch.chdir(tmp_path)
|
|
cwd = os.getcwd()
|
|
try:
|
|
spec.loader.exec_module(mod) # installs the os.mkdir / Path.mkdir patches
|
|
mod._notified = True
|
|
# Bare convention path maps onto the CWD, which already exists: exist_ok=True
|
|
# must be honoured against the mapped location, not raise.
|
|
pathlib.Path("/mnt/data").mkdir(parents = True, exist_ok = True)
|
|
# A nested convention path is created inside the CWD, parents and all.
|
|
pathlib.Path("/mnt/data/plots/run1").mkdir(parents = True, exist_ok = True)
|
|
assert os.path.isdir(os.path.join(cwd, "plots", "run1"))
|
|
# Idempotent: exist_ok is evaluated on the mapped path (which now exists),
|
|
# not the never-present /mnt/data.
|
|
pathlib.Path("/mnt/data/plots/run1").mkdir(parents = True, exist_ok = True)
|
|
|
|
# Passthrough: real paths are created verbatim through both patches,
|
|
# never remapped into the CWD.
|
|
real_dir = tmp_path / "real_via_path"
|
|
pathlib.Path(str(real_dir)).mkdir()
|
|
assert real_dir.is_dir()
|
|
real_os = tmp_path / "real_via_os"
|
|
os.mkdir(str(real_os))
|
|
assert real_os.is_dir()
|
|
finally:
|
|
_restore_patch_targets(saved)
|
|
|
|
|
|
def test_read_of_missing_prefix_path_emits_no_notice(monkeypatch, tmp_path, capsys):
|
|
# A read of a missing convention path keeps the original path and must not spend
|
|
# the one-shot notice; a genuine remap afterward still notifies.
|
|
mod = _load_shim()
|
|
monkeypatch.chdir(tmp_path)
|
|
mod._notified = False # re-arm the one-shot notice for this test
|
|
# Read of a missing prefixed path: original kept, no notice, flag unspent.
|
|
assert mod._remap_open("/mnt/data/missing.csv", "r") == "/mnt/data/missing.csv"
|
|
assert mod._notified is False
|
|
assert "does not exist" not in capsys.readouterr().err
|
|
# A committed write then heals and fires the notice exactly once.
|
|
assert mod._remap_open("/mnt/data/out.txt", "w") == os.path.join(os.getcwd(), "out.txt")
|
|
assert mod._notified is True
|
|
assert "/mnt/data does not exist in this sandbox" in capsys.readouterr().err
|
|
|
|
|
|
def test_os_open_trunc_without_creat_missing_stays_truthful(monkeypatch, tmp_path):
|
|
# O_TRUNC / O_APPEND without O_CREAT cannot create a missing file, so the shim
|
|
# treats them as a read: a missing convention path stays truthful (the error
|
|
# names the caller's path) and nothing is created in the CWD.
|
|
saved = _save_patch_targets()
|
|
spec = importlib.util.spec_from_file_location("_sandbox_sitecustomize_trunc", _SHIM)
|
|
mod = importlib.util.module_from_spec(spec)
|
|
monkeypatch.chdir(tmp_path)
|
|
try:
|
|
spec.loader.exec_module(mod)
|
|
mod._notified = True
|
|
with pytest.raises(FileNotFoundError) as exc:
|
|
os.open("/mnt/data/missing_xyz.bin", os.O_WRONLY | os.O_TRUNC)
|
|
assert exc.value.filename == "/mnt/data/missing_xyz.bin"
|
|
assert not os.path.exists(os.path.join(os.getcwd(), "missing_xyz.bin"))
|
|
finally:
|
|
_restore_patch_targets(saved)
|