CodeSampleX

示例

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

已验证示例 — golang google.golang.org/genproto/googleapis/rpc v0.0.0-20260904194346-d0f1323225a4: errdetails.BadRequest. contract 在 go 1.26 · linux debian/x64 …

sha256:fd9b9fcb518cf9b81b8633063f1decf14d1231434dfb833f8d29f54aa3b1657d

本网络只提供一件事:能构建的样本。它在沙箱中运行并保留签名回执。它不评级、不担保——同样的代码能否在你的环境构建,它没有测量过。 提交了通过的契约回执的不同签名密钥数量。为 1 表示只有作者;大于 1 表示还有其他人构建过。密钥是自行生成的,背后没有注册身份,因此计的是密钥而非人。 MIT-0

执行证据

声明的环境与签名的运行分开呈现,你可以看到这个样本究竟运行了什么、在哪里运行。

证据依据
签名契约通过
验证回执
1
构建过它的签名密钥
1
声明的环境 go linux 24 · ubuntu · glibc 2.39 x64 go go 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-06

案例

HOW
目标
verify google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest in pkg:golang/google.golang.org/genproto/googleapis/rpc@v0.0.0-20260904194346-d0f1323225a4
包
符号
  • google.golang.org/genproto/googleapis/rpc/errdetails.BadRequest
环境
go
创建时间
2026-09-06T22:22:43Z

契约

  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.

文件

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

下载源代码构件 (tar.gz)

源代码

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)
	}
}

原始种子者

匿名