소스 정보
- 저장소
- nWave-ai/nWave-experimental
- 최근 소스 활동
- 2026년 8월 17일 09:38
- 감지된 SKILL.md 언어
- 영어
- 스타
- 8
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nWave-ai/nWave-experimental --skill nw-pbt-go명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | nw-pbt-go |
| agent | nw-functional-software-crafter |
| description | Go property-based testing with rapid and gopter frameworks |
| user-invocable | false |
| Framework | Shrinking | Stateful | API Style | Choose When |
|---|---|---|---|---|
| rapid | Internal (Hypothesis-like) | Yes (StateMachine) | Idiomatic Go (*rapid.T) | Default choice. Simpler API, better shrinking. |
| gopter | Type-based | Yes (commands) | Explicit generator construction | Need maximum control over generation |
Default: rapid. More idiomatic Go API and fully automatic shrinking.
import (
"sort"
"testing"
"pgregory.net/rapid"
)
func TestSortPreservesLength(t *testing.T) {
rapid.Check(t, func(t *rapid.T) {
xs := rapid.SliceOf(rapid.Int()).Draw(t, "xs")
sorted := make([]int, len(xs))
copy(sorted, xs)
sort.Ints(sorted)
if len(sorted) != len(xs) {
t.Fatalf("length changed: %d -> %d", len(xs), len(sorted))
}
})
}
// Run: go test
rapid.Int() // any int
rapid.IntRange(0, 99) // bounded
rapid.Int32()
rapid.Float64()
rapid.String()
rapid.StringN(1, 50, -1) // min 1, max 50 chars
rapid.Bool()
rapid.Byte()
rapid.SliceOf(rapid.Int())
rapid.SliceOfN(rapid.Int(), 1, 10) // min 1, max 10 elements
rapid.MapOf(rapid.String(), rapid.Int())
rapid.OneOf(rapid.Int(), rapid.Int32()) // does not work for different types
rapid.SampledFrom([]string{"a", "b", "c"})
rapid.Just(42)
// Map (transform)
rapid.Map(rapid.Int(), func(x int) int { return x * 2 }) // even integers
// Filter
rapid.Filter(rapid.Int(), func(x int) bool { return x > 0 })
// Prefer: rapid.IntRange(1, math.MaxInt)
// Custom generator (draw pattern)
func userGen(t *rapid.T) User {
return User{
Name: rapid.StringN(1, 20, -1).Draw(t, "name"),
Age: rapid.IntRange(1, 120).Draw(t, "age"),
}
}
// Use: rapid.Custom(userGen)
type storeModel struct {
items map[string]int
}
func (m *storeModel) Init(t *rapid.T) {
m.items = make(map[string]int)
}
func (m *storeModel) Put(t *rapid.T) {
key := rapid.String().Draw(t, "key")
val := rapid.Int().Draw(t, "val")
store.Put(key, val) // real system
m.items[key] = val // model
}
func (m *storeModel) Get(t *rapid.T) {
if len(m.items) == 0 {
t.Skip("no items") // precondition
}
keys := make([]string, 0, len(m.items))
for k := range m.items {
keys = append(keys, k)
}
key := rapid.SampledFrom(keys).Draw(t, "key")
got := store.Get(key)
if got != m.items[key] {
t.Fatalf("get(%q): expected %d, got %d", key, m.items[key], got)
}
}
func (m *storeModel) Check(t *rapid.T) {
if store.Size() != len(m.items) {
t.Fatalf("size mismatch: %d vs %d", store.Size(), len(m.items))
}
}
func TestStore(t *testing.T) {
rapid.Check(t, rapid.Run[*storeModel]())
}
No parallel/linearizability testing in rapid.
gopter provides stateful testing via commands package:
import (
"github.com/leanovate/gopter"
"github.com/leanovate/gopter/commands"
"github.com/leanovate/gopter/gen"
)
var storeCommands = &commands.ProtoCommands{
NewSystemUnderTestFunc: func(initialState commands.State) commands.SystemUnderTest {
return NewMyStore()
},
InitialStateGen: gen.Const(map[string]int{}),
GenCommandFunc: func(state commands.State) gopter.Gen {
return gen.OneGenOf(
gen.Struct(reflect.TypeOf(&PutCommand{}), map[string]gopter.Gen{
"Key": gen.AlphaString(),
"Val": gen.Int(),
}),
gen.Struct(reflect.TypeOf(&GetCommand{}), map[string]gopter.Gen{
"Key": gen.AlphaString(),
}),
)
},
}
func TestStoreStateful(t *testing.T) {
parameters := gopter.DefaultTestParameters()
properties := gopter.NewProperties(parameters)
properties.Property("store model", commands.Prop(storeCommands))
properties.TestingRun(t)
}
gen.Int() // any int
gen.IntRange(0, 100) // bounded
gen.Float64()
gen.AlphaString() // alphabetic string
gen.AnyString()
gen.Bool()
gen.SliceOf(gen.Int()) // []int
gen.MapOf(gen.AlphaString(), gen.Int())
gen.OneConstOf("a", "b", "c") // pick from values
gen.OneGenOf(gen.Int(), gen.Int64()) // union of generators
gen.Frequency(
gen.NewWeightedGen(80, gen.Int()),
gen.NewWeightedGen(20, gen.Const(0)),
)
gen.Struct(reflect.TypeOf(&User{}), map[string]gopter.Gen{
"Name": gen.AlphaString(),
"Age": gen.IntRange(1, 120),
})
func TestSortLength(t *testing.T) {
properties := gopter.NewProperties(nil)
properties.Property("sort preserves length", prop.ForAll(
func(xs []int) bool {
sorted := make([]int, len(xs))
copy(sorted, xs)
sort.Ints(sorted)
return len(sorted) == len(xs)
},
gen.SliceOf(gen.Int()),
))
properties.TestingRun(t)
}
// rapid: go get pgregory.net/rapid
// gopter: go get github.com/leanovate/gopter
// Both integrate with standard go test
// Run: go test ./...
// rapid saves failures to testdata/ for replay
*rapid.T like Go's *testing.Trapid.Int().Draw(t, "name"))Init, Check are specialDeriveGen for automatic struct generation