b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
Build Skills Index / trigger-deploy (push) Waiting to run
CI / Deny unrelated histories (push) Has been skipped
CI / CI timing report (push) Blocked by required conditions
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / All required checks pass (push) Waiting to run
160 lines
3.9 KiB
Python
160 lines
3.9 KiB
Python
"""Tests for plugins/plugin_utils.py — thread-safe lazy singleton helpers.
|
|
|
|
These exercise the actual concurrency guarantee with real threads (not mocks):
|
|
a barrier releases N threads simultaneously into the accessor, and we assert
|
|
the factory ran exactly once.
|
|
"""
|
|
|
|
import threading
|
|
|
|
import pytest
|
|
|
|
from plugins.plugin_utils import SingletonSlot, lazy_singleton
|
|
|
|
|
|
# --- lazy_singleton -------------------------------------------------------
|
|
|
|
|
|
def test_lazy_singleton_builds_once_and_returns_same_instance():
|
|
calls = []
|
|
|
|
@lazy_singleton
|
|
def get():
|
|
calls.append(1)
|
|
return object()
|
|
|
|
a = get()
|
|
b = get()
|
|
assert a is b
|
|
assert len(calls) == 1
|
|
|
|
|
|
def test_lazy_singleton_reset_rebuilds():
|
|
counter = {"n": 0}
|
|
|
|
@lazy_singleton
|
|
def get():
|
|
counter["n"] += 1
|
|
return counter["n"]
|
|
|
|
assert get() == 1
|
|
assert get() == 1
|
|
get.reset()
|
|
assert get() == 2
|
|
|
|
|
|
def test_lazy_singleton_factory_exception_not_cached():
|
|
state = {"fail": True}
|
|
|
|
@lazy_singleton
|
|
def get():
|
|
if state["fail"]:
|
|
raise RuntimeError("boom")
|
|
return "ok"
|
|
|
|
with pytest.raises(RuntimeError):
|
|
get()
|
|
# First call raised → nothing cached → retry succeeds once we stop failing.
|
|
state["fail"] = False
|
|
assert get() == "ok"
|
|
|
|
|
|
def test_lazy_singleton_concurrent_first_call_builds_once():
|
|
build_count = {"n": 0}
|
|
build_lock = threading.Lock()
|
|
barrier = threading.Barrier(16)
|
|
results = []
|
|
results_lock = threading.Lock()
|
|
|
|
@lazy_singleton
|
|
def get():
|
|
# Count builds under a lock so the assertion is exact even if the
|
|
# double-checked lock had a bug and let two through.
|
|
with build_lock:
|
|
build_count["n"] += 1
|
|
# Simulate an expensive build so threads genuinely overlap.
|
|
import time
|
|
time.sleep(0.01)
|
|
return object()
|
|
|
|
def worker():
|
|
barrier.wait() # release all threads at once
|
|
obj = get()
|
|
with results_lock:
|
|
results.append(obj)
|
|
|
|
threads = [threading.Thread(target=worker) for _ in range(16)]
|
|
for t in threads:
|
|
t.start()
|
|
for t in threads:
|
|
t.join()
|
|
|
|
assert build_count["n"] == 1, "factory must run exactly once under race"
|
|
assert len(results) == 16
|
|
assert all(r is results[0] for r in results), "all callers share one instance"
|
|
|
|
|
|
# --- SingletonSlot --------------------------------------------------------
|
|
|
|
|
|
def test_slot_caches_first_value():
|
|
slot: SingletonSlot = SingletonSlot()
|
|
assert slot.peek() is None
|
|
v1 = slot.get(lambda: "first")
|
|
assert slot.peek() == "first"
|
|
# Subsequent factory is ignored — first value wins.
|
|
v2 = slot.get(lambda: "second")
|
|
assert v1 == v2 == "first"
|
|
|
|
|
|
def test_slot_reset():
|
|
slot: SingletonSlot = SingletonSlot()
|
|
slot.get(lambda: "a")
|
|
slot.reset()
|
|
assert slot.peek() is None
|
|
assert slot.get(lambda: "b") == "b"
|
|
|
|
|
|
def test_slot_factory_exception_not_cached():
|
|
slot: SingletonSlot = SingletonSlot()
|
|
|
|
def boom():
|
|
raise ValueError("nope")
|
|
|
|
with pytest.raises(ValueError):
|
|
slot.get(boom)
|
|
assert slot.peek() is None
|
|
assert slot.get(lambda: "recovered") == "recovered"
|
|
|
|
|
|
def test_slot_concurrent_first_call_builds_once():
|
|
build_count = {"n": 0}
|
|
build_lock = threading.Lock()
|
|
barrier = threading.Barrier(16)
|
|
slot: SingletonSlot = SingletonSlot()
|
|
results = []
|
|
results_lock = threading.Lock()
|
|
|
|
def factory():
|
|
with build_lock:
|
|
build_count["n"] += 1
|
|
import time
|
|
time.sleep(0.01)
|
|
return object()
|
|
|
|
def worker():
|
|
barrier.wait()
|
|
obj = slot.get(factory)
|
|
with results_lock:
|
|
results.append(obj)
|
|
|
|
threads = [threading.Thread(target=worker) for _ in range(16)]
|
|
for t in threads:
|
|
t.start()
|
|
for t in threads:
|
|
t.join()
|
|
|
|
assert build_count["n"] == 1
|
|
assert len(results) == 16
|
|
assert all(r is results[0] for r in results)
|