CodeSampleX

Ejemplo

google.golang.org/genproto/googleapis/rpc v0.0.0-20260904194346-d0f1323225a4: errdetails.BadRequest

Muestra verificada para golang google.golang.org/genproto/googleapis/rpc v0.0.0-20260904194346-d0f1323225a4: errdetails.BadRequest. El contrato se ejecutó en…

sha256:fd9b9fcb518cf9b81b8633063f1decf14d1231434dfb833f8d29f54aa3b1657d

Esta red ofrece una sola cosa: una muestra que compila. La ejecutó en un sandbox y guardó el recibo firmado. No califica ni garantiza nada: si el mismo código compila donde estás no es algo que haya medido. Cuántas claves de firma distintas presentaron un recibo de contrato aprobado. Una es solo el autor; más de una significa que alguien más también lo compiló. Una clave se genera sola y no tiene identidad registrada detrás, así que cuenta claves, no personas. MIT-0

Evidencia de ejecución

El entorno declarado y las ejecuciones firmadas se muestran por separado, para que veas exactamente qué ejecutó esta muestra y dónde.

Base de evidencia
Contrato firmado aprobado
Recibos de verificación
1
Claves de firma que lo compilaron
1
Entorno declarado go linux 24 · ubuntu · glibc 2.39 x64 go go go

Entornos de las ejecuciones de verificación

Entorno Contrato Etapas Ejecución
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-06

Caso

HOW
Objetivo
verify google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest in pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4
Paquetes
Símbolos
  • google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest
Entorno
go
Creado
2026-09-06T22:22:43Z

Contrato

  1. errdetails.BadRequest.GetFieldViolations returns nil for a nil or uninitialized BadRequest, and returns the configured slice of field violations when set.
  2. errdetails.BadRequest_FieldViolation stores field path and description strings accessible via GetField and GetDescription.
  3. errdetails.BadRequest serializes and deserializes accurately using proto.Marshal and proto.Unmarshal preserving field violations.
  4. errdetails.BadRequest.Reset clears all field violations from the message.

Archivos

  • PROMPT.md
  • csx.json
  • go.mod
  • go.sum
  • main.go
  • spec.json
  • test/contract_test.go

Descargar el artefacto de código fuente (tar.gz)

Código fuente

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 google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest in pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4
Demonstrate these symbols/APIs:
  - google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest

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.
csx.json
{"case":{"caseId":"case:sha256:53f21a474ae38f430a62e2b4231fde465d0d10b9939572663b37bdb26b8b758f","contract":["errdetails.BadRequest.GetFieldViolations returns nil for a nil or uninitialized BadRequest, and returns the configured slice of field violations when set.","errdetails.BadRequest_FieldViolation stores field path and description strings accessible via GetField and GetDescription.","errdetails.BadRequest serializes and deserializes accurately using proto.Marshal and proto.Unmarshal preserving field violations.","errdetails.BadRequest.Reset clears all field violations from the message."],"goal":"verify google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest in pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4","kind":"HOW","packages":["pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4"],"schemaVersion":1,"symbols":["google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest"]},"contractCommand":["go","test","./..."],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","executionContext":"go","language":"go","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","runtime":"go","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4"],"schemaVersion":1,"subject":"pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4","symbols":["google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest"],"verifierAdapter":"golang@1"}
go.mod
module example.com/badrequest

go 1.25.0

require (
	google.golang.org/genproto/googleapis/rpc v0.0.0-20260904194346-d0f1323225a4
	google.golang.org/protobuf v1.36.12
)
go.sum
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
google.golang.org/genproto/googleapis/rpc v0.0.0-20260904194346-d0f1323225a4 h1:5t+ZydAFj5kGVLrgCvLmpmCf9ylGRd64hpEronfRaws=
google.golang.org/genproto/googleapis/rpc v0.0.0-20260904194346-d0f1323225a4/go.mod h1:DjtHYE8FKJLivXcBEjGwndXfIC23G0VpXiXKqG179uA=
google.golang.org/protobuf v1.36.12 h1:pJOKDDOyeXErUroCihFAd5LQuwXBSpVnKGrj5o/fwxc=
google.golang.org/protobuf v1.36.12/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
main.go
package main

import (
	"fmt"

	"google.golang.org/genproto/googleapis/rpc/errdetails"
	"google.golang.org/protobuf/proto"
)

func main() {
	badReq := &errdetails.BadRequest{
		FieldViolations: []*errdetails.BadRequest_FieldViolation{
			{
				Field:       "user.email",
				Description: "must be a valid email address",
			},
			{
				Field:       "user.age",
				Description: "must be greater than or equal to 0",
			},
		},
	}

	for _, v := range badReq.GetFieldViolations() {
		fmt.Printf("Field violation: %s - %s\n", v.GetField(), v.GetDescription())
	}

	data, err := proto.Marshal(badReq)
	if err != nil {
		panic(err)
	}

	var decoded errdetails.BadRequest
	if err := proto.Unmarshal(data, &decoded); err != nil {
		panic(err)
	}
	fmt.Printf("Decoded violations count: %d\n", len(decoded.GetFieldViolations()))

	badReq.Reset()
	fmt.Printf("After reset count: %d\n", len(badReq.GetFieldViolations()))
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest in pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4",
  "kind": "HOW",
  "packages": [
    "pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4"
  ],
  "symbols": [
    "google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest"
  ]
}
test/contract_test.go
package test

import (
	"testing"

	"google.golang.org/genproto/googleapis/rpc/errdetails"
	"google.golang.org/protobuf/proto"
)

func TestBadRequestGetFieldViolations(t *testing.T) {
	// Nil BadRequest returns nil
	var nilBadRequest *errdetails.BadRequest
	if got := nilBadRequest.GetFieldViolations(); got != nil {
		t.Errorf("nilBadRequest.GetFieldViolations() = %v, want nil", got)
	}

	// Empty BadRequest returns nil
	emptyBadRequest := &errdetails.BadRequest{}
	if got := emptyBadRequest.GetFieldViolations(); got != nil {
		t.Errorf("emptyBadRequest.GetFieldViolations() = %v, want nil", got)
	}

	// Populated BadRequest
	v1 := &errdetails.BadRequest_FieldViolation{
		Field:       "user.email",
		Description: "invalid email format",
	}
	v2 := &errdetails.BadRequest_FieldViolation{
		Field:       "user.age",
		Description: "must be at least 18",
	}
	badReq := &errdetails.BadRequest{
		FieldViolations: []*errdetails.BadRequest_FieldViolation{v1, v2},
	}

	violations := badReq.GetFieldViolations()
	if len(violations) != 2 {
		t.Fatalf("expected 2 field violations, got %d", len(violations))
	}
	if violations[0].GetField() != "user.email" || violations[0].GetDescription() != "invalid email format" {
		t.Errorf("violation[0] mismatch: got %v, %v", violations[0].GetField(), violations[0].GetDescription())
	}
	if violations[1].GetField() != "user.age" || violations[1].GetDescription() != "must be at least 18" {
		t.Errorf("violation[1] mismatch: got %v, %v", violations[1].GetField(), violations[1].GetDescription())
	}
}

func TestBadRequestFieldViolationGetters(t *testing.T) {
	var nilViolation *errdetails.BadRequest_FieldViolation
	if got := nilViolation.GetField(); got != "" {
		t.Errorf("nilViolation.GetField() = %q, want empty string", got)
	}
	if got := nilViolation.GetDescription(); got != "" {
		t.Errorf("nilViolation.GetDescription() = %q, want empty string", got)
	}

	v := &errdetails.BadRequest_FieldViolation{
		Field:       "order.quantity",
		Description: "quantity must be positive",
	}
	if v.GetField() != "order.quantity" {
		t.Errorf("v.GetField() = %q, want %q", v.GetField(), "order.quantity")
	}
	if v.GetDescription() != "quantity must be positive" {
		t.Errorf("v.GetDescription() = %q, want %q", v.GetDescription(), "quantity must be positive")
	}
}

func TestBadRequestProtoSerialization(t *testing.T) {
	original := &errdetails.BadRequest{
		FieldViolations: []*errdetails.BadRequest_FieldViolation{
			{
				Field:       "item.id",
				Description: "item id cannot be empty",
			},
		},
	}

	data, err := proto.Marshal(original)
	if err != nil {
		t.Fatalf("proto.Marshal failed: %v", err)
	}

	var unmarshaled errdetails.BadRequest
	if err := proto.Unmarshal(data, &unmarshaled); err != nil {
		t.Fatalf("proto.Unmarshal failed: %v", err)
	}

	if len(unmarshaled.GetFieldViolations()) != 1 {
		t.Fatalf("unmarshaled violations count = %d, want 1", len(unmarshaled.GetFieldViolations()))
	}
	gotV := unmarshaled.GetFieldViolations()[0]
	if gotV.GetField() != "item.id" || gotV.GetDescription() != "item id cannot be empty" {
		t.Errorf("unmarshaled violation mismatch: got field=%q, desc=%q", gotV.GetField(), gotV.GetDescription())
	}
}

func TestBadRequestReset(t *testing.T) {
	badReq := &errdetails.BadRequest{
		FieldViolations: []*errdetails.BadRequest_FieldViolation{
			{
				Field:       "name",
				Description: "required",
			},
		},
	}
	badReq.Reset()
	if got := badReq.GetFieldViolations(); got != nil {
		t.Errorf("badReq.GetFieldViolations() after Reset() = %v, want nil", got)
	}
}

Seeder de origen

anónimo