CodeSampleX

Exemplo

golang.org/x/net v0.24.0: html.ErrorNode

Amostra verificada para golang golang.org/x/net v0.24.0: html.ErrorNode. O contrato rodou em go 1.26 · linux debian/x64 · docker e passou: html.ErrorNode is…

sha256:1a9c85ecaf0daaa14cb2fb3e4282ada5245b2a89a77637f2b1e9d6a3437cf8bc

Esta rede oferece uma coisa: uma amostra que compila. Ela a executou em um sandbox e guardou o recibo assinado. Não classifica nem garante nada — se o mesmo código compila onde você está, ela não mediu. Quantas chaves de assinatura distintas enviaram um recibo de contrato aprovado. Uma é só o autor; mais de uma significa que outra pessoa também o compilou. Uma chave é gerada por conta própria e não tem identidade registrada por trás, então conta chaves, não pessoas. MIT-0

Evidência de execução

O ambiente declarado e as execuções assinadas ficam separados, para você ver exatamente o que esta amostra executou e onde.

Base da evidência
Contrato assinado aprovado
Recibos de verificação
1
Chaves de assinatura que o compilaram
1
Ambiente declarado go 1.26 linux 24 · ubuntu · glibc 2.39 x64 go 1.26 go go 1

Ambientes das execuções de verificação

Ambiente Contrato Etapas Execução
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-05

Caso

HOW
Objetivo
verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0
Pacotes
Símbolos
  • golang.org/x/net/html.ErrorNode
Ambiente
go 1.26.6
Criado
2026-09-05T03:32:57Z

Contrato

  1. html.ErrorNode is a NodeType constant equal to uint32(0)
  2. uninitialized html.Node struct has Type equal to html.ErrorNode by default
  3. explicitly created html.Node with html.ErrorNode retains its Type and error Data
  4. html.ErrorNode is distinct from TextNode, DocumentNode, ElementNode, CommentNode, DoctypeNode, and RawNode
  5. html.Parse on valid HTML produces a DOM tree where no nodes have Type equal to html.ErrorNode

Arquivos

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

Baixar o artefato de código-fonte (tar.gz)

Código-fonte

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/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/golang.org/x/net@v0.24.0
Demonstrate these symbols/APIs:
  - golang.org/x/net/html.ErrorNode
Required runtime conditions:
  - ecosystem: golang
  - language: go
  - packageManager: go@1.26.6
  - runtime: go@1.26.6

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:1b6aa870d3580004ca9169aa5fbc77cdbcef7471d71cf3d17968699fed095424","contract":["html.ErrorNode is a NodeType constant equal to uint32(0)","uninitialized html.Node struct has Type equal to html.ErrorNode by default","explicitly created html.Node with html.ErrorNode retains its Type and error Data","html.ErrorNode is distinct from TextNode, DocumentNode, ElementNode, CommentNode, DoctypeNode, and RawNode","html.Parse on valid HTML produces a DOM tree where no nodes have Type equal to html.ErrorNode"],"goal":"verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0","kind":"HOW","packages":["pkg:golang/golang.org/x/net@v0.24.0"],"schemaVersion":1,"symbols":["golang.org/x/net/html.ErrorNode"]},"contractCommand":["go","run","./test"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","language":"go","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","packageManagerVersion":"1.26.6","runtime":"go","runtimeVersion":"1.26.6","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/golang.org/x/net@v0.24.0"],"schemaVersion":1,"subject":"pkg:golang/golang.org/x/net@v0.24.0","symbols":["golang.org/x/net/html.ErrorNode"],"verifierAdapter":"golang@1"}
go.mod
module sample

go 1.24.0

require golang.org/x/net v0.24.0
go.sum
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
main.go
package main

import (
	"fmt"
	"strings"

	"golang.org/x/net/html"
)

// IsErrorNode checks if an html.Node has NodeType ErrorNode.
func IsErrorNode(n *html.Node) bool {
	return n != nil && n.Type == html.ErrorNode
}

// FindErrorNodes recursively scans an HTML node tree and returns any ErrorNodes found.
func FindErrorNodes(n *html.Node) []*html.Node {
	var errNodes []*html.Node
	if n == nil {
		return errNodes
	}
	if n.Type == html.ErrorNode {
		errNodes = append(errNodes, n)
	}
	for c := n.FirstChild; c != nil; c = c.NextSibling {
		errNodes = append(errNodes, FindErrorNodes(c)...)
	}
	return errNodes
}

// NodeTypeName returns the human-readable string representation of an html.NodeType.
func NodeTypeName(t html.NodeType) string {
	switch t {
	case html.ErrorNode:
		return "ErrorNode"
	case html.TextNode:
		return "TextNode"
	case html.DocumentNode:
		return "DocumentNode"
	case html.ElementNode:
		return "ElementNode"
	case html.CommentNode:
		return "CommentNode"
	case html.DoctypeNode:
		return "DoctypeNode"
	case html.RawNode:
		return "RawNode"
	default:
		return "UnknownNode"
	}
}

func main() {
	var defaultNode html.Node
	fmt.Printf("Default node type is %s (is ErrorNode: %t)\n",
		NodeTypeName(defaultNode.Type), IsErrorNode(&defaultNode))

	errNode := &html.Node{
		Type: html.ErrorNode,
		Data: "parse error: unclosed tag",
	}
	fmt.Printf("Created ErrorNode with error details: %q\n", errNode.Data)

	doc, err := html.Parse(strings.NewReader("<p>Hello World</p>"))
	if err != nil {
		panic(err)
	}
	foundErrors := FindErrorNodes(doc)
	fmt.Printf("ErrorNodes in valid parsed document: %d\n", len(foundErrors))
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify golang.org/x/net/html.ErrorNode in pkg:golang/golang.org/x/net@v0.24.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/golang.org/x/net@v0.24.0"
  ],
  "symbols": [
    "golang.org/x/net/html.ErrorNode"
  ],
  "runtimeConditions": {
    "ecosystem": "golang",
    "language": "go",
    "packageManager": "go@1.26.6",
    "runtime": "go@1.26.6"
  }
}
test/contract.go
package main

import (
	"fmt"
	"os"
	"strings"

	"golang.org/x/net/html"
)

func main() {
	// 1. html.ErrorNode is a NodeType constant equal to uint32(0)
	{
		if html.ErrorNode != 0 {
			fmt.Fprintf(os.Stderr, "FAIL: expected html.ErrorNode to be 0, got %d\n", html.ErrorNode)
			os.Exit(1)
		}
	}

	// 2. uninitialized html.Node struct has Type equal to html.ErrorNode by default
	{
		var defaultNode html.Node
		if defaultNode.Type != html.ErrorNode {
			fmt.Fprintf(os.Stderr, "FAIL: expected default html.Node.Type to be html.ErrorNode, got %v\n", defaultNode.Type)
			os.Exit(1)
		}
	}

	// 3. explicitly created html.Node with html.ErrorNode retains its Type and error Data
	{
		errMsg := "invalid html token encountered"
		node := &html.Node{
			Type: html.ErrorNode,
			Data: errMsg,
		}
		if node.Type != html.ErrorNode {
			fmt.Fprintf(os.Stderr, "FAIL: expected node.Type to be html.ErrorNode, got %v\n", node.Type)
			os.Exit(1)
		}
		if node.Data != errMsg {
			fmt.Fprintf(os.Stderr, "FAIL: expected node.Data to be %q, got %q\n", errMsg, node.Data)
			os.Exit(1)
		}
	}

	// 4. html.ErrorNode is distinct from TextNode, DocumentNode, ElementNode, CommentNode, DoctypeNode, and RawNode
	{
		otherTypes := []struct {
			name     string
			nodeType html.NodeType
		}{
			{"TextNode", html.TextNode},
			{"DocumentNode", html.DocumentNode},
			{"ElementNode", html.ElementNode},
			{"CommentNode", html.CommentNode},
			{"DoctypeNode", html.DoctypeNode},
			{"RawNode", html.RawNode},
		}
		for _, ot := range otherTypes {
			if ot.nodeType == html.ErrorNode {
				fmt.Fprintf(os.Stderr, "FAIL: html.ErrorNode unexpectedly matches %s\n", ot.name)
				os.Exit(1)
			}
		}
	}

	// 5. html.Parse on valid HTML produces a DOM tree where no nodes have Type equal to html.ErrorNode
	{
		doc, err := html.Parse(strings.NewReader("<!DOCTYPE html><html><head><title>Test</title></head><body><!-- comment --><h1>Title</h1><p>Text</p></body></html>"))
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: html.Parse returned error: %v\n", err)
			os.Exit(1)
		}

		var errorNodes []*html.Node
		var walk func(*html.Node)
		walk = func(n *html.Node) {
			if n.Type == html.ErrorNode {
				errorNodes = append(errorNodes, n)
			}
			for c := n.FirstChild; c != nil; c = c.NextSibling {
				walk(c)
			}
		}
		walk(doc)

		if len(errorNodes) != 0 {
			fmt.Fprintf(os.Stderr, "FAIL: expected 0 ErrorNodes in parsed document, found %d\n", len(errorNodes))
			os.Exit(1)
		}
	}

	fmt.Println("PASS: all contract assertions passed")
}

Seeder de origem

anônimo