unsloth/tests/test_synthetic_chunk_data.py
Anas Khan cc99aab607
Some checks failed
Core / Core (HF=default + TRL=default) (push) Waiting to run
Core / Core (HF=4.57.6 + TRL<1) (push) Waiting to run
Core / Core (HF=latest + TRL=latest) (push) Waiting to run
Core / llama.cpp build + smoke (push) Waiting to run
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Waiting to run
MLX CI on Mac M1 / dispatch (push) Waiting to run
Security audit / advisory audit (pip + npm + cargo) (push) Waiting to run
Security audit / pip scan-packages :: extras (push) Waiting to run
Security audit / pip scan-packages :: studio (push) Waiting to run
Security audit / pip scan-packages :: hf-stack (push) Waiting to run
Security audit / npm scan-packages (Studio frontend tarballs) (push) Waiting to run
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Waiting to run
Security audit / pytest tests/security (push) Waiting to run
Security audit / npm provenance + new install-script diff (push) Waiting to run
Studio API CI / Studio API & Auth Tests (push) Waiting to run
Backend CI / (Python 3.10) (push) Waiting to run
Backend CI / (Python 3.11) (push) Waiting to run
Backend CI / (Python 3.12) (push) Waiting to run
Backend CI / (Python 3.13) (push) Waiting to run
Backend CI / Repo tests (CPU) (push) Waiting to run
Frontend CI / Frontend build + bundle sanity (push) Waiting to run
Studio GGUF CI / OpenAI, Anthropic API tests (push) Waiting to run
Studio GGUF CI / Tool calling Tests (push) Waiting to run
Studio GGUF CI / JSON, images (push) Waiting to run
Mac Studio API CI / Studio API & Auth Tests (push) Waiting to run
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Waiting to run
Mac Studio GGUF CI / Tool calling Tests (push) Waiting to run
Mac Studio GGUF CI / JSON, images (push) Waiting to run
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Waiting to run
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Waiting to run
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Waiting to run
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Waiting to run
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Waiting to run
Mac Studio UI CI / Chat UI Tests (push) Waiting to run
Mac Studio Update CI / Studio Updating Tests (push) Waiting to run
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Waiting to run
Studio UI CI / Chat UI Tests (push) Waiting to run
Studio Update CI / Studio Updating Tests (push) Waiting to run
Windows Studio API CI / Studio API & Auth Tests (push) Waiting to run
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Waiting to run
Windows Studio GGUF CI / Tool calling Tests (push) Waiting to run
Windows Studio GGUF CI / JSON, images (push) Waiting to run
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Waiting to run
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Waiting to run
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Waiting to run
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Waiting to run
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Waiting to run
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Waiting to run
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Waiting to run
Windows Studio UI CI / Chat UI Tests (push) Waiting to run
Windows Studio Update CI / Studio Updating Tests (push) Waiting to run
Wheel CI / Wheel build + content sanity + import smoke (push) Waiting to run
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
fix: correct class name in SyntheticDataKit.chunk_data guard message (#6901)
2026-07-06 07:11:57 -07:00

139 lines
5.3 KiB
Python

#!/usr/bin/env python3
"""Regression tests for SyntheticDataKit.chunk_data: short-document handling and overlap validation."""
import os
import tempfile
from types import SimpleNamespace
from unsloth.dataprep.synthetic import SyntheticDataKit
class _MockTokenizer:
def __call__(
self,
text,
add_special_tokens = False,
):
return SimpleNamespace(input_ids = list(range(len(text.split()))))
def decode(self, token_ids):
return " ".join(f"w{i}" for i in token_ids)
def _make_kit(
max_seq_length = 2048,
max_generation_tokens = 512,
overlap = 64,
):
kit = SyntheticDataKit.__new__(SyntheticDataKit)
kit.tokenizer = _MockTokenizer()
kit.max_seq_length = max_seq_length
kit.max_generation_tokens = max_generation_tokens
kit.overlap = overlap
return kit
def _chunk(text, kit = None):
"""Returns (chunk_filenames, chunk_contents); reads content before cleanup."""
if kit is None:
kit = _make_kit()
with tempfile.NamedTemporaryFile("w", suffix = ".txt", delete = False) as f:
f.write(text)
path = f.name
created = []
try:
created = kit.chunk_data(filename = path)
contents = []
for fn in created:
with open(fn, encoding = "utf-8") as fh:
contents.append(fh.read())
return list(created), contents
finally:
os.unlink(path)
for fn in created:
if os.path.exists(fn):
os.unlink(fn)
def test_chunk_data_keeps_single_chunk_document():
# A short document fits in one chunk (n_chunks == 1) and must still produce
# one output file rather than silently vanishing.
out, contents = _chunk("word " * 50)
assert len(out) == 1, f"single-chunk doc should yield 1 file, got {len(out)}"
assert contents[0] != "", "the chunk file must contain the document text"
def test_chunk_data_still_splits_long_document():
# A long document (n_chunks > 1) must still produce multiple chunks.
out, _ = _chunk("word " * 5000)
assert len(out) > 1, f"long doc should yield multiple chunks, got {len(out)}"
def test_chunk_data_empty_document_yields_no_chunks():
# An empty document must not produce an (empty) chunk file.
out, _ = _chunk("")
assert out == [], f"empty doc should yield no files, got {len(out)}"
def test_chunk_data_short_document_is_not_split_into_fragments():
# A document shorter than the overlap previously reached the multi-chunk path
# (n_chunks >= 3) where linspace produced negative start indices, slicing the
# wrong tail tokens. It must be emitted as one chunk covering the whole document.
kit = _make_kit(max_seq_length = 2048, max_generation_tokens = 920, overlap = 64) # max_tokens = 80
out, contents = _chunk("word " * 50, kit = kit) # 50 tokens < overlap (would be 4 chunks)
assert len(out) == 1, f"sub-overlap doc should yield 1 chunk, got {len(out)}"
assert contents[0].split() == [
f"w{i}" for i in range(50)
], f"chunk must cover the whole document, not a fragment; got: {contents[0]!r}"
def test_chunk_data_rejects_overlap_not_smaller_than_chunk():
# If overlap >= chunk size the stride is non-positive, which would divide by zero
# or emit one oversized chunk. The config must be rejected with a clear error.
kit = _make_kit(max_seq_length = 2048, max_generation_tokens = 950, overlap = 64) # max_tokens = 20
with tempfile.NamedTemporaryFile("w", suffix = ".txt", delete = False) as f:
f.write("word " * 50)
path = f.name
try:
try:
kit.chunk_data(filename = path)
raise AssertionError("expected RuntimeError when overlap >= chunk size")
except RuntimeError as e:
assert "overlap" in str(e), f"error should mention overlap, got: {e}"
finally:
os.unlink(path)
def test_chunk_data_uninitialized_error_names_real_class():
# Without max_seq_length the guard tells the user which method to call first.
# The message must name the real class (SyntheticDataKit) so copying it works;
# a misspelling would raise NameError when the user follows it verbatim.
kit = SyntheticDataKit.__new__(SyntheticDataKit)
kit.tokenizer = _MockTokenizer() # max_seq_length intentionally unset
with tempfile.NamedTemporaryFile("w", suffix = ".txt", delete = False) as f:
f.write("word " * 50)
path = f.name
try:
try:
kit.chunk_data(filename = path)
raise AssertionError("expected RuntimeError when max_seq_length is unset")
except RuntimeError as e:
msg = str(e)
assert (
"SyntheticDataKit.from_pretrained" in msg
), f"error must name SyntheticDataKit.from_pretrained, got: {msg}"
assert (
"SynthetidDataKit" not in msg
), f"error must not misspell the class name, got: {msg}"
finally:
os.unlink(path)
if __name__ == "__main__":
test_chunk_data_keeps_single_chunk_document()
test_chunk_data_still_splits_long_document()
test_chunk_data_empty_document_yields_no_chunks()
test_chunk_data_short_document_is_not_split_into_fragments()
test_chunk_data_rejects_overlap_not_smaller_than_chunk()
test_chunk_data_uninitialized_error_names_real_class()
print("OK")