用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nWave-ai/nWave-experimental --skill nw-pbt-python命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | nw-pbt-python |
| agent | nw-functional-software-crafter |
| description | Python property-based testing with Hypothesis framework, strategies, and pytest integration |
| user-invocable | false |
Hypothesis is the only serious choice for Python PBT. No competitive alternatives.
from hypothesis import given, assume, settings, HealthCheck
from hypothesis import strategies as st
@given(st.lists(st.integers()))
def test_sort_idempotent(xs):
assert sorted(sorted(xs)) == sorted(xs)
# Run: pytest test_file.py
st.integers() # any int
st.integers(min_value=0, max_value=99) # bounded
st.floats() # includes NaN, inf
st.floats(allow_nan=False, allow_infinity=False)
st.text() # unicode strings
st.text(min_size=1, max_size=50)
st.binary() # bytes
st.booleans()
st.none()
st.lists(st.integers())
st.lists(st.integers(), min_size=1, max_size=10)
st.sets(st.integers())
st.frozensets(st.text())
st.dictionaries(st.text(), st.integers())
st.tuples(st.integers(), st.text())
st.one_of(st.integers(), st.text()) # union
st.sampled_from([1, 2, 3]) # pick from list
st.just(42) # constant
# Map (transform)
st.integers().map(lambda x: x * 2) # even integers
# Filter (use sparingly)
st.integers().filter(lambda x: x > 0)
# Prefer: st.integers(min_value=1)
# Composite (dependent generation)
@st.composite
def list_and_element(draw):
xs = draw(st.lists(st.integers(), min_size=1))
elem = draw(st.sampled_from(xs))
return (xs, elem)
json_values = st.recursive(
st.none() | st.booleans() | st.integers() | st.text(),
lambda children: st.lists(children) | st.dictionaries(st.text(), children),
max_leaves=50
)
from dataclasses import dataclass
@dataclass
class User:
name: str
age: int
users = st.builds(User, name=st.text(min_size=1), age=st.integers(1, 120))
# Or: st.from_type(User) if type annotations are sufficient
from hypothesis.stateful import RuleBasedStateMachine, Bundle, rule, initialize, invariant, precondition, consumes
class MyStoreTest(RuleBasedStateMachine):
keys = Bundle("keys")
@initialize()
def init(self):
self.store = MyStore()
self.model = {}
@rule(target=keys, k=st.text(min_size=1))
def create(self, k):
return k # deposited into keys bundle
@rule(k=keys, v=st.integers())
def put(self, k, v):
self.store.put(k, v)
self.model[k] = v
@rule(k=keys)
def get(self, k):
if k in self.model:
assert self.store.get(k) == self.model[k]
@rule(k=consumes(keys)) # removes from bundle
def delete(self, k):
self.store.delete(k)
.model.pop(k, )
():
.store.size() == (.model)
TestMyStore = MyStoreTest.TestCase
TestMyStore.settings = settings(max_examples=, stateful_step_count=)
Limitation: No parallel/linearizability testing.
# pytest -- just works, no plugin needed
# @given tests are regular pytest functions
# Settings profiles
from hypothesis import settings, Phase
settings.register_profile("ci", max_examples=1000)
settings.register_profile("dev", max_examples=50)
settings.load_profile("ci") # or via HYPOTHESIS_PROFILE env var
# Suppress slow test warnings
@settings(suppress_health_check=[HealthCheck.too_slow])
# Deadline (max time per example)
@settings(deadline=500) # 500ms
# Database of failing examples
# Hypothesis auto-saves failures to .hypothesis/
# Replays them on subsequent runs
@given never runs directly under a plain django.test.TestCase helper —
Hypothesis's example-replay/database-reset interaction with Django's
per-test transaction wrapping requires hypothesis.extra.django.TestCase
(or TransactionTestCase) as the base. A property test class must subclass
the matching hypothesis.extra.django base as documented, then:
TestCase in its own bases, calls super() in setUp), mix it
with the Hypothesis base using the repository-validated ordering;django.test.TestCase subclass,
never blindly multiple-inherit two concrete TestCase hierarchies —
extract its behavior into a cooperative mixin, or write a repository-owned
Hypothesis-compatible helper, preserving the documented setup/fixtures and
validating the actual MRO (ClassName.__mro__) rather than assuming one.from hypothesis import given
from hypothesis import strategies as st
from hypothesis.extra.django import TestCase as HypothesisDjangoTestCase
class RepositoryFixtureMixin:
"""Cooperative mixin: no TestCase base and calls super()."""
def setUp(self):
super().setUp()
self.account_factory = AccountFactory()
def build_account(self):
return self.account_factory.create()
class RepositoryPropertyTestCase(RepositoryFixtureMixin, HypothesisDjangoTestCase):
pass # validate this ordering against the repository's fixture contract
class PropertyTests(RepositoryPropertyTestCase):
@given(st.text(min_size=1))
def test_create_never_raises_on_valid_name(self, name):
# explicitly construct any state the property needs -- never assume
# an attribute the shared fixture does not document constructing
account = self.build_account()
account.rename(name)
Never assume a fixture attribute exists because a similarly named one exists elsewhere; if the property needs state the shared helper does not construct, construct it explicitly inside the test (or a documented composed helper method) rather than reading an undocumented attribute.
Treat executor lifecycle as part of the named test substrate. If a focused
probe proves that multiple @given methods on one concrete fixture class
reuse uniqueness-constrained setup state, put one @given method in each leaf
test class and share only a cooperative fixture mixin. Never hide the collision
with manual database flushing or a suppressed health check.
hypothesis write json.dumps auto-generates PBT from type annotationsassume(): Skip invalid inputs inside tests (like filter but inline)event()/target(): Distribution monitoring and coverage-guided feedback@st.composite and monadic bind