샘플
github.com/google/go-cmp v0.6.0: cmp.Path
검증된 샘플 — golang github.com/google/go-cmp v0.6.0: cmp.Path. go 1.26 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: cmp.Path represents the sequence of…
sha256:4863b077cd1bcea2b25efca19f1b3126303ea0e0bb7fb37d0a04521aae81267a
이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다.
통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다.
MIT-0
실행 증거
선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.
- 증거 기준
- 서명된 컨트랙트 통과
- 검증 영수증
- 1
- 빌드한 서명 키
- 1
선언된 환경
linux 24 · ubuntu · glibc 2.39 x64 go
검증 실행 환경
| 환경 | 컨트랙트 | 단계 | 실행일 |
|---|---|---|---|
| go 1.26 · linux debian/x64 · docker ed25519:c1973797be207ac4 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · golang@1golang:1.26@sha256:e30143be198a… |
2026-09-15 |
케이스
HOW- 목표
- verify github.com/google/go-cmp/cmp.Path in pkg:golang/github.com/google/go-cmp@v0.6.0
- 심벌
-
- github.com/google/go-cmp/cmp.Path
- 생성일
- 2026-09-15T21:58:23Z
컨트랙트
- cmp.Path represents the sequence of PathStep operations during value tree traversal
- cmp.Path.String formats the human-readable path representation of the current step
- cmp.Path.Last returns the terminal PathStep in the traversal path
- cmp.Path.Index returns the PathStep at the specified index from the root
- cmp.FilterPath evaluates cmp.Path predicates to selectively apply comparison options
파일
- PROMPT.md
- contract_test.go
- csx.json
- go.mod
- go.sum
- path.go
- spec.json
소스
Clean-room public code sample — generation instructions
Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.
A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.
Goal: verify github.com/google/go-cmp/cmp.Path in pkg:golang/github.com/google/go-cmp@v0.6.0
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:golang/github.com/google/go-cmp@v0.6.0
Demonstrate these symbols/APIs:
- github.com/google/go-cmp/cmp.Path
Rules:
- One focused purpose; the smallest project that proves the goal.
- Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
- Pin every dependency with a lockfile so resolution is reproducible.
- No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
- No personal names, emails, company names, or project identifiers of any kind.
- No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
- Keep it under 200 files and 256KB packed.
package sample_test
import (
"reflect"
"strings"
"testing"
"example.com/sample"
"github.com/google/go-cmp/cmp"
)
type Item struct {
ID int
Name string
}
type Catalog struct {
Category string
Items []Item
Metadata map[string]*string
}
func TestPathContract(t *testing.T) {
var pathStrings []string
var foundIDStructField bool
var foundSliceIndex bool
var foundMapIndex bool
var foundIndirect bool
var pathsVisited int
captureOpt := cmp.FilterPath(func(p cmp.Path) bool {
pathsVisited++
// Contract: cmp.Path represents the sequence of PathStep operations during value tree traversal.
if len(p) == 0 {
t.Errorf("expected non-empty Path during traversal")
return false
}
// Contract: cmp.Path.Last returns the terminal PathStep in the traversal path.
last := p.Last()
if last == nil {
t.Errorf("expected non-nil Last() for Path of length %d", len(p))
return false
}
// Contract: cmp.Path.Index returns the PathStep at the specified index from the root.
if p.Index(len(p)-1) != last {
t.Errorf("expected p.Index(len(p)-1) == p.Last()")
}
if p.Index(0) == nil {
t.Errorf("expected non-nil root step at index 0")
}
// Contract: cmp.Path.String formats the path representation of the current traversal step.
pathStr := p.String()
pathStrings = append(pathStrings, pathStr)
// Record step strings
steps := sample.GetPathStepStrings(p)
if len(steps) != len(p) {
t.Errorf("expected %d step strings, got %d", len(p), len(steps))
}
if sf, ok := last.(cmp.StructField); ok {
if sf.Name() == "ID" {
foundIDStructField = true
if !strings.Contains(pathStr, "ID") {
t.Errorf("expected path string %q to contain 'ID'", pathStr)
}
if last.Type() != reflect.TypeOf(0) {
t.Errorf("expected ID field type int, got %v", last.Type())
}
}
}
if _, ok := last.(cmp.SliceIndex); ok {
foundSliceIndex = true
}
if _, ok := last.(cmp.MapIndex); ok {
foundMapIndex = true
}
if _, ok := last.(cmp.Indirect); ok {
foundIndirect = true
}
return false
}, cmp.Ignore())
val1 := "v1"
val2 := "v2"
c1 := Catalog{
Category: "books",
Items: []Item{
{ID: 1, Name: "Algorithms"},
{ID: 2, Name: "Compilers"},
},
Metadata: map[string]*string{
"env": &val1,
},
}
c2 := Catalog{
Category: "books",
Items: []Item{
{ID: 10, Name: "Algorithms"},
{ID: 20, Name: "Compilers"},
},
Metadata: map[string]*string{
"env": &val2,
},
}
// Traverse with filter option
_ = cmp.Equal(c1, c2, captureOpt)
if pathsVisited == 0 {
t.Fatalf("expected to visit paths during traversal, visited 0")
}
if !foundIDStructField {
t.Errorf("expected to find StructField 'ID' during traversal")
}
if !foundSliceIndex {
t.Errorf("expected to find SliceIndex step during traversal")
}
if !foundMapIndex {
t.Errorf("expected to find MapIndex step during traversal")
}
if !foundIndirect {
t.Errorf("expected to find Indirect step during traversal")
}
// Contract: cmp.FilterPath evaluates cmp.Path predicates to selectively apply comparison options.
ignoreID := sample.IgnoreStructField("ID")
ignoreEnv := sample.FilterByLastStep(func(step cmp.PathStep) bool {
mi, ok := step.(cmp.MapIndex)
return ok && mi.Key().String() == "env"
}, cmp.Ignore())
if !cmp.Equal(c1, c2, ignoreID, ignoreEnv) {
t.Errorf("expected c1 and c2 to be equal when ignoring field 'ID' and map key 'env'")
}
if cmp.Equal(c1, c2) {
t.Errorf("expected c1 and c2 to be unequal without ignoring differing fields")
}
}
{"case":{"caseId":"case:sha256:00c6e83f36f9277d17456c4da63ccc28e1b8c3773c402f6a0e242c0f75d4d2c5","contract":["cmp.Path represents the sequence of PathStep operations during value tree traversal","cmp.Path.String formats the human-readable path representation of the current step","cmp.Path.Last returns the terminal PathStep in the traversal path","cmp.Path.Index returns the PathStep at the specified index from the root","cmp.FilterPath evaluates cmp.Path predicates to selectively apply comparison options"],"goal":"verify github.com/google/go-cmp/cmp.Path in pkg:golang/github.com/google/go-cmp@v0.6.0","kind":"HOW","packages":["pkg:golang/github.com/google/go-cmp@v0.6.0"],"schemaVersion":1,"symbols":["github.com/google/go-cmp/cmp.Path"]},"contractCommand":["go","test","./..."],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/github.com/google/go-cmp@v0.6.0"],"schemaVersion":1,"subject":"pkg:golang/github.com/google/go-cmp@v0.6.0","symbols":["github.com/google/go-cmp/cmp.Path"],"verifierAdapter":"golang@1"}
module example.com/sample
go 1.22
require github.com/google/go-cmp v0.6.0
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
package sample
import (
"github.com/google/go-cmp/cmp"
)
// FilterByLastStep creates a cmp.Option that applies opt only when the terminal step
// of cmp.Path satisfies the provided predicate.
func FilterByLastStep(predicate func(step cmp.PathStep) bool, opt cmp.Option) cmp.Option {
return cmp.FilterPath(func(p cmp.Path) bool {
if len(p) == 0 {
return false
}
return predicate(p.Last())
}, opt)
}
// IgnoreStructField returns a cmp.Option that ignores struct fields with the specified name
// using cmp.Path and its terminal StructField step.
func IgnoreStructField(fieldName string) cmp.Option {
return FilterByLastStep(func(step cmp.PathStep) bool {
sf, ok := step.(cmp.StructField)
return ok && sf.Name() == fieldName
}, cmp.Ignore())
}
// GetPathStepStrings extracts the string representation of every PathStep in a cmp.Path.
func GetPathStepStrings(p cmp.Path) []string {
strs := make([]string, len(p))
for i := 0; i < len(p); i++ {
strs[i] = p.Index(i).String()
}
return strs
}
{
"schemaVersion": 1,
"goal": "verify github.com/google/go-cmp/cmp.Path in pkg:golang/github.com/google/go-cmp@v0.6.0",
"kind": "HOW",
"packages": [
"pkg:golang/github.com/google/go-cmp@v0.6.0"
],
"symbols": [
"github.com/google/go-cmp/cmp.Path"
]
}
오리진 시더
익명