unsloth/studio/backend/tests/test_mlx_training_worker_config.py
Leo Borcherding 1dd2fc4583
tests: read checked-in files as UTF-8 instead of the platform default (#7438)
* tests: read checked-in files as UTF-8 instead of the platform default

Path.read_text() with no encoding uses locale.getpreferredencoding(), which
is UTF-8 on the Linux runners and cp1252 on a stock Windows install. Nine
module-level reads of checked-in source files were relying on that default.

studio/backend/routes/inference.py carries the DeepSeek tool-call token
regexes, so it holds U+FF5C and U+2581. Under cp1252 that read raised
UnicodeDecodeError on byte 0x81 at position 97806, and because the reads run
at import time it took test_cancel_atomicity.py and test_cancel_id_wiring.py
out at collection, not as failures. Green on CI, permanently broken for a
Windows contributor running the suite locally.

Adds a guard: at module scope there is no tmp_path fixture, so a bare
read_text()/write_text()/open() there is always touching a checked-in file.
That makes the rule mechanical enough to enforce with no allowlist, while
staying quiet about temp-dir I/O inside test bodies where the platform
default is harmless.

The repo already spells this correctly in 464 other places; this only stops
the stragglers coming back.

* tests: cover import-time helper reads and keep the guard py3.9-safe

Follows up on the Codex review:

- add `from __future__ import annotations`, since `str | None` in
  `_offender` is evaluated at import on Python 3.9 and pyproject declares
  requires-python ">=3.9,<3.15".
- widen the guard from module scope to import time. Class bodies and the
  bodies of module-level helpers called from an executing statement run
  during collection too, so `CODE = _extract_mixed_precision_code()` was
  the same hazard as an inline read. `if __name__ == "__main__":` blocks
  are skipped: pytest never executes them.
- scan studio/backend/tests/ as well as tests/. Both trees are collected
  on Windows by separate CI jobs, and the offender that started this,
  test_tool_xml_strip.py reading routes/inference.py, lives there.

Widening it surfaced seven more import-time reads of checked-in sources;
all now name utf-8.

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Harden the import-time encoding guard for PR #7438

Close the detector gaps raised in review, all of which I reproduced against
the actual AST before changing anything.

False negatives (the guard let a real hazard through):
- _is_main_guard ignored the comparison operator, so if __name__ != "__main__"
  counted as script-only even though its body runs at import.
- The else arm of a main guard was discarded with the rest of the If node.
- Decorators and argument defaults on a module-level def were skipped with the
  body, though both are evaluated when the def executes.
- Path.open() in text mode was invisible; only builtin open() was matched.
- encoding = None and encoding = "locale" both re-select the platform default,
  but the keyword merely being present counted as pinned.

False positives (the guard would have blocked a compliant contributor):
- A non-literal mode fell through to the "r" default, so open(p, mode) was
  flagged even when mode is "rb", where adding encoding= is a ValueError and
  there is no edit that satisfies the rule.
- Same for open(*args) and a **kwargs splat, which hide the mode and can hide
  an encoding.
- Lambda bodies and comprehension elements were walked even though neither runs
  at definition.

Verified: still reports the same 22 offenders on unpatched main, green on this
branch and on the tree merged with latest main (557 files), and an adversarial
corpus of 33 cases now scores zero false positives and zero false negatives.
Also corrected two docstring claims: neither collecting job runs on Windows,
and the read is governed by locale.getencoding().

* Walk eager comprehensions and treat io.open as the builtin

Two regressions from the previous commit, both reproduced against the AST
before changing anything.

Lumping list, set and dict comprehensions in with generator expressions was
wrong. Only a genexp is lazy; the other three run their element expression,
their filters and their nested iterators immediately, so
CONTENTS = [p.read_text() for p in PATHS] at module scope is an import-time
read the guard was silently missing. Comprehensions are now walked in full and
only the genexp keeps the outermost-iterable-only treatment.

io was also in the not-a-path-opener list, but io.open is the builtin, with the
same mode position and the same platform default. io.open(CHECKED_IN_FILE) is
exactly the hazard this guard exists for, so it is matched now, with binary
modes and a pinned encoding still exempt. tarfile.open and fitz.open stay
exempt since neither has an encoding to name.

Verified: 13 targeted cases covering all five eager comprehension forms and
io.open in text, binary and pinned shapes all classify correctly; still 22
offenders on unpatched main; green on this branch and on the tree merged with
latest main.

* Close three more walker gaps in the import-time guard

All three reproduced against the AST first.

A generator expression handed straight to a call is consumed there, so
DATA = "".join(p.read_text() for p in paths) runs its element at import. Only
an unconsumed genexp bound to a name stays lazy, so the walker now follows the
consumed ones in full and keeps the outermost-iterable-only treatment for the
rest.

if "__main__" == __name__ is an equivalent and accepted spelling of the main
guard, but requiring __name__ on the left meant its body was treated as
import-time code. That is a false positive on a block pytest never runs, so
both operand orders are recognised now.

The helper table was built from module-level defs only, so a def in a class
body invoked while the class is constructed was never followed, contradicting
the walker's stated coverage of class bodies. Helpers are now collected from
the module body and from class bodies at any nesting.

Verified: 15 targeted cases including all three fixes and the earlier ones
still classify correctly; still 22 offenders on unpatched main; green on this
branch and on the tree merged with latest main.

* Handle positional read_text encodings, lazy generators and nested helpers

* Guard reads reached from test bodies, unbound Path calls and __file__ paths

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Follow derived paths, skip lazy generator helpers, cover compressed openers

* Guard the CLI tests, helper parameters and unbound Path arguments

* Discover test roots and follow literal, in-place and tuple-derived paths

* Identify module openers by import, unwrap starred paths, pin subprocess snippets

* Resolve import origins, seed helper locals, follow named generators and parametrize

* Scope imports lexically, list tracked test files, bind unpacked names

* Resolve aliased openers, keyword-only params, destructured targets, next()

* Pin the encoding on subprocess snippets, workflow lint and CLI output for PR #7438

* Harden the CLI encoding guard against detached streams for PR #7438

* Tighten the encoding guard's path and scope analysis for PR #7438

* Resolve path provenance more precisely and keep POSIX stream encodings for PR #7438

* Resolve qualified path classes and scope conditional imports for PR #7438

* Scope CLI stream setup to the entry point and align two encoding pairs for PR #7438

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: danielhanchen <danielhanchen@gmail.com>
2026-07-26 23:31:56 -07:00

281 lines
9.6 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-only
import importlib.util
import sys
import types
from pathlib import Path
import pytest
def _load_worker_module():
stub_names = (
"structlog",
"loggers",
"utils",
"utils.hardware",
"utils.wheel_utils",
)
previous_modules = {name: sys.modules.get(name) for name in stub_names}
try:
sys.modules["structlog"] = types.ModuleType("structlog")
loggers = types.ModuleType("loggers")
loggers.get_logger = lambda *_args, **_kwargs: None
sys.modules["loggers"] = loggers
utils = types.ModuleType("utils")
utils.__path__ = []
sys.modules["utils"] = utils
hardware = types.ModuleType("utils.hardware")
hardware.apply_gpu_ids = lambda *_args, **_kwargs: None
sys.modules["utils.hardware"] = hardware
wheel_utils = types.ModuleType("utils.wheel_utils")
for name in (
"direct_wheel_url",
"flash_attn_wheel_url",
"has_blackwell_gpu",
"install_wheel",
"probe_torch_wheel_env",
"url_exists",
):
setattr(wheel_utils, name, lambda *_args, **_kwargs: None)
sys.modules["utils.wheel_utils"] = wheel_utils
worker_path = Path(__file__).resolve().parents[1] / "core" / "training" / "worker.py"
spec = importlib.util.spec_from_file_location("mlx_training_worker_under_test", worker_path)
module = importlib.util.module_from_spec(spec)
assert spec.loader is not None
spec.loader.exec_module(module)
return module
finally:
for name, module in previous_modules.items():
if module is None:
sys.modules.pop(name, None)
else:
sys.modules[name] = module
_worker = _load_worker_module()
_normalize_mlx_studio_optimizer = _worker._normalize_mlx_studio_optimizer
_normalize_mlx_studio_scheduler = _worker._normalize_mlx_studio_scheduler
_mlx_vlm_max_resized_size = _worker._mlx_vlm_max_resized_size
_mlx_vlm_resized_image_layout = _worker._mlx_vlm_resized_image_layout
_copy_mlx_vlm_image_processor = _worker._copy_mlx_vlm_image_processor
_resize_mlx_vlm_image = _worker._resize_mlx_vlm_image
_adapt_for_mlx_vlm = _worker._adapt_for_mlx_vlm
def test_mlx_studio_optimizer_aliases_are_explicit():
assert _normalize_mlx_studio_optimizer("adamw_8bit") == "adamw"
assert _normalize_mlx_studio_optimizer("paged_adamw_8bit") == "adamw"
assert _normalize_mlx_studio_optimizer("adafactor") == "adafactor"
def test_mlx_studio_rejects_unknown_optimizer():
with pytest.raises(ValueError, match = "Supported"):
_normalize_mlx_studio_optimizer("adamw_typo")
def test_mlx_studio_rejects_unknown_scheduler():
with pytest.raises(ValueError, match = "Unsupported LR scheduler for MLX training"):
_normalize_mlx_studio_scheduler("linear_typo")
def test_mlx_studio_keeps_hf_style_tokenizer_dual_purpose():
source = (Path(__file__).resolve().parents[1] / "core" / "training" / "worker.py").read_text(
encoding = "utf-8"
)
assert "tokenizer = tokenizer" in source
assert "processor = tokenizer if is_vlm else None" not in source
def test_mlx_wandb_run_config_excludes_subject_and_secrets():
# The MLX W&B run config uploads the whole config minus a sensitive set. The owner's
# subject (authenticated username / API-key id) must be filtered alongside the secrets,
# otherwise it lands in W&B run config even though DB history already strips it.
source = (Path(__file__).resolve().parents[1] / "core" / "training" / "worker.py").read_text(
encoding = "utf-8"
)
assert (
'_wandb_sensitive = {"hf_token", "wandb_token", "s3_config", "subject"}' in source
), "MLX W&B run config must exclude subject and the token/s3 secrets"
def test_mlx_vlm_resize_uses_max_dimension_like_torch_trainer():
assert _mlx_vlm_max_resized_size(1000, 500, 512) == (512, 256)
assert _mlx_vlm_max_resized_size(500, 1000, 512) == (256, 512)
assert _mlx_vlm_max_resized_size(1000, 1000, 512) == (512, 512)
assert _mlx_vlm_max_resized_size(256, 128, 1536) == (256, 128)
assert _mlx_vlm_max_resized_size(512, 256, 512) == (512, 256)
# Half-pixel cases must match the Torch collator (not banker's round).
assert _mlx_vlm_max_resized_size(333, 1000, 500) == (167, 500)
assert _mlx_vlm_max_resized_size(1000, 333, 500) == (500, 167)
def test_mlx_vlm_resize_keeps_default_numpy_layout_hwc():
Image = pytest.importorskip("PIL.Image")
image = Image.new("RGB", (320, 200), color = (10, 20, 30))
resized = _resize_mlx_vlm_image(image, 128)
assert resized.shape == (80, 128, 3)
assert resized.flags.c_contiguous
def test_mlx_vlm_resize_uses_requested_chw_numpy_layout():
Image = pytest.importorskip("PIL.Image")
image = Image.new("RGB", (320, 200), color = (10, 20, 30))
resized = _resize_mlx_vlm_image(image, 128, image_layout = "chw")
assert resized.shape == (3, 80, 128)
assert resized.flags.c_contiguous
def test_mlx_vlm_resized_image_layout_probes_processor_contract():
class ChwOnlyImageProcessor:
def __call__(self, images = None):
image = images[0]
if image.shape[0] == 3:
return {"pixel_values": image}
raise ValueError("expected CHW")
class HwcImageProcessor:
def __call__(self, images = None):
image = images[0]
if image.shape[-1] == 3:
return {"pixel_values": image}
raise ValueError("expected HWC")
assert (
_mlx_vlm_resized_image_layout(
types.SimpleNamespace(image_processor = ChwOnlyImageProcessor())
)
== "chw"
)
assert (
_mlx_vlm_resized_image_layout(types.SimpleNamespace(image_processor = HwcImageProcessor()))
is None
)
def test_mlx_vlm_layout_probe_copies_image_processor():
class StatefulImageProcessor:
def __init__(self):
self.calls = 0
def __call__(self, images = None):
self.calls += 1
image = images[0]
if image.shape[0] == 3:
return {"pixel_values": image}
raise ValueError("expected CHW")
image_processor = StatefulImageProcessor()
layout = _mlx_vlm_resized_image_layout(types.SimpleNamespace(image_processor = image_processor))
assert layout == "chw"
assert image_processor.calls == 0
def test_mlx_vlm_image_processor_copy_refuses_uncopyable_processors():
class UncopyableImageProcessor:
def __copy__(self):
raise RuntimeError("no copy")
def __deepcopy__(self, _memo):
raise RuntimeError("no deepcopy")
image_processor = UncopyableImageProcessor()
assert _copy_mlx_vlm_image_processor(image_processor) is None
def test_mlx_vlm_layout_probe_skips_uncopyable_processors():
class UncopyableImageProcessor:
def __copy__(self):
raise RuntimeError("no copy")
def __deepcopy__(self, _memo):
raise RuntimeError("no deepcopy")
def __call__(self, images = None):
raise AssertionError("live processor should not be probed")
assert (
_mlx_vlm_resized_image_layout(
types.SimpleNamespace(image_processor = UncopyableImageProcessor())
)
is None
)
def test_mlx_vlm_adapter_applies_chw_layout_to_message_images():
Image = pytest.importorskip("PIL.Image")
image = Image.new("RGB", (320, 200), color = (10, 20, 30))
item = {
"messages": [
{
"role": "user",
"content": [
{"type": "image", "image": image},
{"type": "text", "text": "Describe it."},
],
}
]
}
adapted = _adapt_for_mlx_vlm([item], resize = 128, image_layout = "chw")
assert adapted[0]["image"].shape == (3, 80, 128)
assert adapted[0]["messages"][0]["content"][0] == {"type": "image"}
# ---- issue #6103: MLX transformers-version activation must not fail silently ----
def test_activate_transformers_version_or_warn_logs_on_failure(monkeypatch):
"""A failed activation in the MLX fast-path must be logged, not swallowed.
The non-MLX path already surfaces this failure; the MLX path used a bare
``except Exception: pass`` so a missing/broken transformers venv produced
no trace and a confusing downstream crash.
"""
warnings_logged = []
fake_logger = types.SimpleNamespace(
warning = lambda *a, **k: warnings_logged.append((a, k)),
)
monkeypatch.setattr(_worker, "logger", fake_logger)
def _boom(_name, _hf_token = None):
raise RuntimeError("venv .venv_t5_550 missing")
monkeypatch.setattr(_worker, "_activate_transformers_version", _boom)
# Non-fatal: the MLX path falls through, so this must not raise.
_worker._activate_transformers_version_or_warn("google/gemma-4-12b")
assert len(warnings_logged) == 1, "activation failure was not logged"
assert "gemma-4-12b" in str(warnings_logged[0]), "log does not name the model"
def test_activate_transformers_version_or_warn_silent_on_success(monkeypatch):
warnings_logged = []
fake_logger = types.SimpleNamespace(
warning = lambda *a, **k: warnings_logged.append((a, k)),
)
monkeypatch.setattr(_worker, "logger", fake_logger)
monkeypatch.setattr(
_worker, "_activate_transformers_version", lambda _name, _hf_token = None: None
)
_worker._activate_transformers_version_or_warn("meta-llama/Llama-3-8B")
assert warnings_logged == [], "should not warn when activation succeeds"