CodeSampleX

示例

go.opentelemetry.io/otel/trace v1.24.0: SpanIDFromHex

已验证示例 — golang go.opentelemetry.io/otel/trace v1.24.0: SpanIDFromHex. contract 在 go 1.26 · linux debian/x64 · docker 上运行并通过: SpanIDFromHex parses a valid…

sha256:42af2ddecc13f38afdef63bd1f94fa3072187c4e2c3ab159c1544492d4fbde8b

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

案例

HOW
目标
verify SpanIDFromHex in pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0
包
符号
  • SpanIDFromHex
创建时间
2026-09-03T00:55:04Z

契约

  1. SpanIDFromHex parses a valid 16-character lowercase hex string into a valid SpanID
  2. SpanID formats back to the expected lowercase hex string via String
  3. SpanIDFromHex returns an error for hex strings not equal to 16 characters
  4. SpanIDFromHex returns an error for strings containing invalid hex or uppercase characters
  5. SpanIDFromHex returns an error for an all-zero hex string

文件

  • PROMPT.md
  • csx.json
  • go.mod
  • go.sum
  • main.go
  • spec.json
  • test/contract.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 SpanIDFromHex in pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0
Demonstrate these symbols/APIs:
  - SpanIDFromHex

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:525e0bc1c942ed3f3251d379d22868b6dd1fbc1533e29f146c4962b064c3ec96","contract":["SpanIDFromHex parses a valid 16-character lowercase hex string into a valid SpanID","SpanID formats back to the expected lowercase hex string via String","SpanIDFromHex returns an error for hex strings not equal to 16 characters","SpanIDFromHex returns an error for strings containing invalid hex or uppercase characters","SpanIDFromHex returns an error for an all-zero hex string"],"goal":"verify SpanIDFromHex in pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0","kind":"HOW","packages":["pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0"],"schemaVersion":1,"symbols":["SpanIDFromHex"]},"contractCommand":["go","run","./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/go.opentelemetry.io/otel/trace@v1.24.0"],"schemaVersion":1,"subject":"pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0","symbols":["SpanIDFromHex"],"verifierAdapter":"golang@1"}
go.mod
module example.com/sample

go 1.22

require go.opentelemetry.io/otel/trace v1.24.0

require go.opentelemetry.io/otel v1.24.0 // indirect
go.sum
go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo=
go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo=
go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI=
go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU=
main.go
package main

import (
	"fmt"
	"os"

	"go.opentelemetry.io/otel/trace"
)

func main() {
	hexID := "00f067aa0ba902b7"
	spanID, err := trace.SpanIDFromHex(hexID)
	if err != nil {
		fmt.Fprintf(os.Stderr, "failed to parse span ID from hex: %v\n", err)
		os.Exit(1)
	}

	fmt.Printf("SpanID: %s (valid: %t)\n", spanID.String(), spanID.IsValid())

	invalidHex := "not-a-valid-hex"
	_, err = trace.SpanIDFromHex(invalidHex)
	if err != nil {
		fmt.Printf("Expected error for %q: %v\n", invalidHex, err)
	}
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify SpanIDFromHex in pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/go.opentelemetry.io/otel/trace@v1.24.0"
  ],
  "symbols": [
    "SpanIDFromHex"
  ]
}
test/contract.go
package main

import (
	"bytes"
	"fmt"
	"os"

	"go.opentelemetry.io/otel/trace"
)

func main() {
	// 1. SpanIDFromHex parses a valid 16-character lowercase hex string into a valid SpanID
	validHex := "00f067aa0ba902b7"
	expectedBytes := [8]byte{0x00, 0xf0, 0x67, 0xaa, 0x0b, 0xa9, 0x02, 0xb7}
	sid, err := trace.SpanIDFromHex(validHex)
	if err != nil {
		fmt.Fprintf(os.Stderr, "expected nil error for valid hex, got: %v\n", err)
		os.Exit(1)
	}
	if !sid.IsValid() {
		fmt.Fprintf(os.Stderr, "expected sid.IsValid() to be true for %s\n", validHex)
		os.Exit(1)
	}
	if !bytes.Equal(sid[:], expectedBytes[:]) {
		fmt.Fprintf(os.Stderr, "expected bytes %v, got %v\n", expectedBytes, sid[:])
		os.Exit(1)
	}

	// 2. SpanID formats back to the expected lowercase hex string via String
	if got := sid.String(); got != validHex {
		fmt.Fprintf(os.Stderr, "expected String() %q, got %q\n", validHex, got)
		os.Exit(1)
	}

	// 3. SpanIDFromHex returns an error for hex strings not equal to 16 characters
	invalidLengths := []string{
		"",
		"00f067aa",
		"00f067aa0ba902",
		"00f067aa0ba902b",
		"00f067aa0ba902b78",
		"00f067aa0ba902b789abcdef",
	}
	for _, hexStr := range invalidLengths {
		invalidSID, err := trace.SpanIDFromHex(hexStr)
		if err == nil {
			fmt.Fprintf(os.Stderr, "expected error for length %d (%q), got nil\n", len(hexStr), hexStr)
			os.Exit(1)
		}
		if invalidSID.IsValid() {
			fmt.Fprintf(os.Stderr, "expected invalid SpanID for length %d (%q)\n", len(hexStr), hexStr)
			os.Exit(1)
		}
	}

	// 4. SpanIDFromHex returns an error for strings containing invalid hex or uppercase characters
	invalidChars := []string{
		"00f067aa0ba902bg",
		"00f067aa0ba902b-",
		"00f067aa 0ba902b",
		"00F067AA0BA902B7",
		"00f067aa0ba902B7",
	}
	for _, hexStr := range invalidChars {
		invalidSID, err := trace.SpanIDFromHex(hexStr)
		if err == nil {
			fmt.Fprintf(os.Stderr, "expected error for invalid/uppercase chars %q, got nil\n", hexStr)
			os.Exit(1)
		}
		if invalidSID.IsValid() {
			fmt.Fprintf(os.Stderr, "expected invalid SpanID for %q\n", hexStr)
			os.Exit(1)
		}
	}

	// 5. SpanIDFromHex returns an error for an all-zero hex string
	zeroHex := "0000000000000000"
	zeroSID, err := trace.SpanIDFromHex(zeroHex)
	if err == nil {
		fmt.Fprintf(os.Stderr, "expected error for all-zero hex string %q, got nil\n", zeroHex)
		os.Exit(1)
	}
	if zeroSID.IsValid() {
		fmt.Fprintf(os.Stderr, "expected IsValid() to be false for all-zero hex string\n")
		os.Exit(1)
	}
}

原始种子者

匿名