CodeSampleX

Exemple

github.com/google/go-cmp v0.5.5: cmp.AllowUnexported

Échantillon vérifié pour golang github.com/google/go-cmp v0.5.5: cmp.AllowUnexported. Le contrat s'est exécuté sur go 1.26 · linux debian/x64 · docker et a…

sha256:7b6b1396dcc69380d77fa694351e2b3fc3ee41e3dc4133c15799a07520beed56

Ce réseau offre une seule chose : un échantillon qui compile. Il l'a exécuté dans un bac à sable et conservé le reçu signé. Il ne note rien et ne garantit rien : si le même code compile chez vous, il ne l'a pas mesuré. Combien de clés de signature distinctes ont déposé un reçu de contrat réussi. Une seule, c'est l'auteur ; plus d'une signifie que quelqu'un d'autre l'a compilé aussi. Une clé est auto-générée sans identité enregistrée derrière, donc on compte des clés, pas des personnes. MIT-0

Preuves d'exécution

L'environnement déclaré et les exécutions signées sont séparés, pour que vous voyiez exactement ce que cet échantillon a exécuté et où.

Base de preuve
Contrat signé réussi
Reçus de vérification
1
Clés de signature qui l’ont compilé
1
Environnement déclaré go linux 24 · ubuntu · glibc 2.39 x64 go go go

Environnements des exécutions de vérification

Environnement Contrat Étapes Exécution
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-03

Cas

HOW
Objectif
verify cmp.AllowUnexported in pkg:golang/github.com/google/go-cmp@v0.5.5
Paquets
Symboles
  • cmp.AllowUnexported
Environnement
go
Créé
2026-09-03T08:27:16Z

Contrat

  1. cmp.AllowUnexported permits equality comparisons of structs with unexported fields that otherwise cause cmp.Equal and cmp.Diff to panic.
  2. cmp.AllowUnexported enables cmp.Equal to report true for identical unexported field values and false when unexported field values differ.
  3. cmp.AllowUnexported detects and reports differences in unexported fields when generating diff strings via cmp.Diff.
  4. cmp.AllowUnexported accepts multiple struct types in a single option to allow recursive comparison of nested structs containing unexported fields.
  5. cmp.AllowUnexported panics when passed a non-struct type or pointer to a struct.

Fichiers

  • PROMPT.md
  • contract_test.go
  • csx.json
  • go.mod
  • go.sum
  • spec.json

Télécharger l’artefact source (tar.gz)

Code source

PROMPT.md
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 cmp.AllowUnexported in pkg:golang/github.com/google/go-cmp@v0.5.5
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/github.com/google/go-cmp@v0.5.5
Demonstrate these symbols/APIs:
  - cmp.AllowUnexported

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.
contract_test.go
package main

import (
	"strings"
	"testing"

	"github.com/google/go-cmp/cmp"
)

type sampleStruct struct {
	Exported   string
	unexported int
}

type nestedChild struct {
	secret string
}

type nestedParent struct {
	Name  string
	child nestedChild
}

// TestAllowUnexportedPanicWithoutOption verifies that comparing unexported fields without AllowUnexported panics.
func TestAllowUnexportedPanicWithoutOption(t *testing.T) {
	a := sampleStruct{Exported: "A", unexported: 42}
	b := sampleStruct{Exported: "A", unexported: 42}

	defer func() {
		r := recover()
		if r == nil {
			t.Fatalf("expected panic when comparing unexported fields without AllowUnexported, got nil")
		}
		errMsg := ""
		if err, ok := r.(error); ok {
			errMsg = err.Error()
		} else if s, ok := r.(string); ok {
			errMsg = s
		}
		if !strings.Contains(errMsg, "cannot handle unexported field") {
			t.Fatalf("unexpected panic message: %v", r)
		}
	}()

	_ = cmp.Equal(a, b)
}

// TestAllowUnexportedEqual verifies that AllowUnexported enables equality comparison for identical unexported fields.
func TestAllowUnexportedEqual(t *testing.T) {
	a := sampleStruct{Exported: "test", unexported: 100}
	b := sampleStruct{Exported: "test", unexported: 100}

	opt := cmp.AllowUnexported(sampleStruct{})
	if !cmp.Equal(a, b, opt) {
		t.Fatalf("expected structs to be equal with AllowUnexported, diff: %s", cmp.Diff(a, b, opt))
	}
}

// TestAllowUnexportedDiff verifies that AllowUnexported detects differences in unexported fields.
func TestAllowUnexportedDiff(t *testing.T) {
	a := sampleStruct{Exported: "test", unexported: 100}
	b := sampleStruct{Exported: "test", unexported: 200}

	opt := cmp.AllowUnexported(sampleStruct{})
	if cmp.Equal(a, b, opt) {
		t.Fatalf("expected structs with different unexported fields to not be equal")
	}

	diff := cmp.Diff(a, b, opt)
	if !strings.Contains(diff, "unexported") {
		t.Fatalf("diff should mention unexported field, got: %s", diff)
	}
}

// TestAllowUnexportedNested verifies that AllowUnexported can configure multiple struct types simultaneously.
func TestAllowUnexportedNested(t *testing.T) {
	p1 := nestedParent{
		Name:  "parent",
		child: nestedChild{secret: "hidden-value"},
	}
	p2 := nestedParent{
		Name:  "parent",
		child: nestedChild{secret: "hidden-value"},
	}
	p3 := nestedParent{
		Name:  "parent",
		child: nestedChild{secret: "different-value"},
	}

	opts := cmp.AllowUnexported(nestedParent{}, nestedChild{})

	if !cmp.Equal(p1, p2, opts) {
		t.Fatalf("expected identical nested structs to be equal, diff: %s", cmp.Diff(p1, p2, opts))
	}

	if cmp.Equal(p1, p3, opts) {
		t.Fatalf("expected differing nested structs to not be equal")
	}
}

// TestAllowUnexportedNonStructPanic verifies that passing non-struct types causes AllowUnexported to panic.
func TestAllowUnexportedNonStructPanic(t *testing.T) {
	defer func() {
		r := recover()
		if r == nil {
			t.Fatalf("expected panic when passing non-struct to AllowUnexported, got nil")
		}
	}()

	_ = cmp.AllowUnexported(sampleStruct{}, &sampleStruct{})
}
csx.json
{"case":{"caseId":"case:sha256:be08fed01486aeade615b5c528cfa9ced4f0562d8208f5e6425d6225d50f5445","contract":["cmp.AllowUnexported permits equality comparisons of structs with unexported fields that otherwise cause cmp.Equal and cmp.Diff to panic.","cmp.AllowUnexported enables cmp.Equal to report true for identical unexported field values and false when unexported field values differ.","cmp.AllowUnexported detects and reports differences in unexported fields when generating diff strings via cmp.Diff.","cmp.AllowUnexported accepts multiple struct types in a single option to allow recursive comparison of nested structs containing unexported fields.","cmp.AllowUnexported panics when passed a non-struct type or pointer to a struct."],"goal":"verify cmp.AllowUnexported in pkg:golang/github.com/google/go-cmp@v0.5.5","kind":"HOW","packages":["pkg:golang/github.com/google/go-cmp@v0.5.5"],"schemaVersion":1,"symbols":["cmp.AllowUnexported"]},"contractCommand":["go","test","./..."],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","language":"go","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","runtime":"go","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/github.com/google/go-cmp@v0.5.5"],"schemaVersion":1,"subject":"pkg:golang/github.com/google/go-cmp@v0.5.5","symbols":["cmp.AllowUnexported"],"verifierAdapter":"golang@1"}
go.mod
module example.com/cmpunexported

go 1.23

require github.com/google/go-cmp v0.5.5
go.sum
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
spec.json
{
  "schemaVersion": 1,
  "goal": "verify cmp.AllowUnexported in pkg:golang/github.com/google/go-cmp@v0.5.5",
  "kind": "HOW",
  "packages": [
    "pkg:golang/github.com/google/go-cmp@v0.5.5"
  ],
  "symbols": [
    "cmp.AllowUnexported"
  ]
}

Seeder d'origine

anonyme