CodeSampleX

Exemple

golang.org/x/sys v0.22.0: unix.Errno

Échantillon vérifié pour golang golang.org/x/sys v0.22.0: unix.Errno. Le contrat s'est exécuté sur go 1.26 · linux debian/x64 · docker et a réussi.

sha256:b411a98980f5425641ed48960bdeae42c688249fd9fb681c255c08b64df3a2ae

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é linux 24 · ubuntu · glibc 2.39 x64 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-16

Cas

HOW
Objectif
verify golang.org/x/sys/unix.Errno in pkg:golang/golang.org/x/sys@v0.22.0
Paquets
Symboles
  • golang.org/x/sys/unix.Errno
Créé
2026-09-16T20:13:08Z

Contrat

  1. unix.Errno implements the error interface and formats standard error descriptions with Error()
  2. unix.Errno matches standard library sentinel errors via errors.Is and implements Timeout and Temporary predicates
  3. failed unix system calls return unix.Errno values that can be unwrapped and matched using errors.As and errors.Is

Fichiers

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

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 golang.org/x/sys/unix.Errno in pkg:golang/golang.org/x/sys@v0.22.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/golang.org/x/sys@v0.22.0
Demonstrate these symbols/APIs:
  - golang.org/x/sys/unix.Errno

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:851718a52a3c416fdfe0b8a8a11528c823666a414805b239436aa557779d396b","contract":["unix.Errno implements the error interface and formats standard error descriptions with Error()","unix.Errno matches standard library sentinel errors via errors.Is and implements Timeout and Temporary predicates","failed unix system calls return unix.Errno values that can be unwrapped and matched using errors.As and errors.Is"],"goal":"verify golang.org/x/sys/unix.Errno in pkg:golang/golang.org/x/sys@v0.22.0","kind":"HOW","packages":["pkg:golang/golang.org/x/sys@v0.22.0"],"schemaVersion":1,"symbols":["golang.org/x/sys/unix.Errno"]},"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/golang.org/x/sys@v0.22.0"],"schemaVersion":1,"subject":"pkg:golang/golang.org/x/sys@v0.22.0","symbols":["golang.org/x/sys/unix.Errno"],"verifierAdapter":"golang@1"}
go.mod
module example.com/sample

go 1.26.6

require golang.org/x/sys v0.22.0
go.sum
golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI=
golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
main.go
package main

import (
	"errors"
	"fmt"
	"os"

	"golang.org/x/sys/unix"
)

func main() {
	var errENOENT unix.Errno = unix.ENOENT
	fmt.Printf("Errno value: %d, description: %s\n", errENOENT, errENOENT.Error())

	if errors.Is(errENOENT, os.ErrNotExist) {
		fmt.Println("unix.ENOENT matches os.ErrNotExist")
	}

	_, err := unix.Open("nonexistent_demo_file_xyz", unix.O_RDONLY, 0)
	if err != nil {
		var errno unix.Errno
		if errors.As(err, &errno) {
			fmt.Printf("unix.Open failed with unix.Errno: %d (%s)\n", errno, errno.Error())
		}
	}
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify golang.org/x/sys/unix.Errno in pkg:golang/golang.org/x/sys@v0.22.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/golang.org/x/sys@v0.22.0"
  ],
  "symbols": [
    "golang.org/x/sys/unix.Errno"
  ]
}
test/contract.go
package main

import (
	"errors"
	"fmt"
	"io/fs"
	"os"

	"golang.org/x/sys/unix"
)

func main() {
	if err := runTests(); err != nil {
		fmt.Fprintf(os.Stderr, "Contract test failed: %v\n", err)
		os.Exit(1)
	}
	fmt.Println("All contract assertions passed.")
}

func runTests() error {
	// 1. unix.Errno implements the error interface and formats standard error descriptions with Error()
	var err interface{} = unix.ENOENT
	errVal, ok := err.(error)
	if !ok {
		return fmt.Errorf("expected unix.Errno to implement error interface")
	}
	if errVal.Error() != "no such file or directory" {
		return fmt.Errorf("expected unix.ENOENT.Error() to be 'no such file or directory', got %q", errVal.Error())
	}

	var existErr error = unix.EEXIST
	if existErr.Error() != "file exists" {
		return fmt.Errorf("expected unix.EEXIST.Error() to be 'file exists', got %q", existErr.Error())
	}

	if unix.Errno(2) != unix.ENOENT {
		return fmt.Errorf("expected unix.Errno(2) to equal unix.ENOENT")
	}

	// 2. unix.Errno matches standard library sentinel errors via errors.Is and implements Timeout and Temporary predicates
	if !errors.Is(unix.ENOENT, os.ErrNotExist) {
		return fmt.Errorf("expected errors.Is(unix.ENOENT, os.ErrNotExist) to be true")
	}
	if !errors.Is(unix.ENOENT, fs.ErrNotExist) {
		return fmt.Errorf("expected errors.Is(unix.ENOENT, fs.ErrNotExist) to be true")
	}
	if !errors.Is(unix.EEXIST, os.ErrExist) {
		return fmt.Errorf("expected errors.Is(unix.EEXIST, os.ErrExist) to be true")
	}
	if !errors.Is(unix.EACCES, os.ErrPermission) {
		return fmt.Errorf("expected errors.Is(unix.EACCES, os.ErrPermission) to be true")
	}
	if !errors.Is(unix.EPERM, os.ErrPermission) {
		return fmt.Errorf("expected errors.Is(unix.EPERM, os.ErrPermission) to be true")
	}

	if !unix.ETIMEDOUT.Timeout() {
		return fmt.Errorf("expected unix.ETIMEDOUT.Timeout() to be true")
	}
	if !unix.EINTR.Temporary() {
		return fmt.Errorf("expected unix.EINTR.Temporary() to be true")
	}
	if !unix.EAGAIN.Temporary() {
		return fmt.Errorf("expected unix.EAGAIN.Temporary() to be true")
	}

	// 3. failed unix system calls return unix.Errno values that can be unwrapped and matched using errors.As and errors.Is
	_, openErr := unix.Open("nonexistent_path_test_file_csx", unix.O_RDONLY, 0)
	if openErr == nil {
		return fmt.Errorf("expected unix.Open on nonexistent file to fail")
	}

	var errno unix.Errno
	if !errors.As(openErr, &errno) {
		return fmt.Errorf("expected errors.As to extract unix.Errno from unix.Open error")
	}
	if errno != unix.ENOENT {
		return fmt.Errorf("expected errno to be unix.ENOENT (2), got %d", errno)
	}
	if !errors.Is(openErr, unix.ENOENT) {
		return fmt.Errorf("expected errors.Is(openErr, unix.ENOENT) to be true")
	}
	if !errors.Is(openErr, os.ErrNotExist) {
		return fmt.Errorf("expected errors.Is(openErr, os.ErrNotExist) to be true")
	}

	return nil
}

Seeder d'origine

anonyme