CodeSampleX

샘플

golang.org/x/mod v0.24.0: modfile.Require

검증된 샘플 — golang golang.org/x/mod v0.24.0: modfile.Require. go 1.26 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: modfile.Require parses direct and…

sha256:b86a51d02dd6ddb4d0d6ff0975211fd03fc5be8db42ec4a4b3df47c1020fa355

이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다. 통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다. 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-04

케이스

HOW
목표
verify golang.org/x/mod/modfile.Require in pkg:golang/golang.org/x/mod@v0.24.0
패키지
심벌
  • golang.org/x/mod/modfile.Require
생성일
2026-09-04T06:56:55Z

컨트랙트

  1. modfile.Require parses direct and indirect dependencies with correct module path, version, and indirect flag
  2. modfile.File.AddNewRequire adds a Require entry with the specified path, version, and indirect status
  3. modfile.File.DropRequire removes the matching Require entry by module path
  4. modfile.File.SetRequire replaces all Require entries and formats consistently on round-trip parsing

파일

  • 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 golang.org/x/mod/modfile.Require in pkg:golang/golang.org/x/mod@v0.24.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/golang.org/x/mod@v0.24.0
Demonstrate these symbols/APIs:
  - golang.org/x/mod/modfile.Require

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:c8e6057b9e656d7a5094dc8c95237badc101ddf9c6a5a67e5187eba66c7333f0","contract":["modfile.Require parses direct and indirect dependencies with correct module path, version, and indirect flag","modfile.File.AddNewRequire adds a Require entry with the specified path, version, and indirect status","modfile.File.DropRequire removes the matching Require entry by module path","modfile.File.SetRequire replaces all Require entries and formats consistently on round-trip parsing"],"goal":"verify golang.org/x/mod/modfile.Require in pkg:golang/golang.org/x/mod@v0.24.0","kind":"HOW","packages":["pkg:golang/golang.org/x/mod@v0.24.0"],"schemaVersion":1,"symbols":["golang.org/x/mod/modfile.Require"]},"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/mod@v0.24.0"],"schemaVersion":1,"subject":"pkg:golang/golang.org/x/mod@v0.24.0","symbols":["golang.org/x/mod/modfile.Require"],"verifierAdapter":"golang@1"}
go.mod
module sample

go 1.23.0

require golang.org/x/mod v0.24.0
go.sum
golang.org/x/mod v0.24.0 h1:ZfthKaKaT4NrhGVZHO1/WDTwGES4De8KtWO0SIbNJMU=
golang.org/x/mod v0.24.0/go.mod h1:IXM97Txy2VM4PJ3gI61r1YEk/gAj6zAHN3AdZt6S9Ww=
main.go
package main

import (
	"fmt"
	"log"

	"golang.org/x/mod/modfile"
)

// ParseRequires parses a go.mod file content and returns its Require statements.
func ParseRequires(filename string, content []byte) ([]*modfile.Require, error) {
	file, err := modfile.Parse(filename, content, nil)
	if err != nil {
		return nil, err
	}
	return file.Require, nil
}

// AddDependency adds a new direct or indirect Require dependency to a go.mod file.
func AddDependency(file *modfile.File, path, version string, indirect bool) {
	file.AddNewRequire(path, version, indirect)
}

func main() {
	content := []byte(`module example.com/app

go 1.23.0

require (
	github.com/google/uuid v1.6.0
	golang.org/x/crypto v0.35.0 // indirect
)
`)

	file, err := modfile.Parse("go.mod", content, nil)
	if err != nil {
		log.Fatalf("Parse failed: %v", err)
	}

	fmt.Printf("Parsed %d requirements:\n", len(file.Require))
	for _, req := range file.Require {
		fmt.Printf(" - %s %s (indirect: %t)\n", req.Mod.Path, req.Mod.Version, req.Indirect)
	}

	AddDependency(file, "golang.org/x/sync", "v0.11.0", false)
	fmt.Printf("Updated requirements count: %d\n", len(file.Require))
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify golang.org/x/mod/modfile.Require in pkg:golang/golang.org/x/mod@v0.24.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/golang.org/x/mod@v0.24.0"
  ],
  "symbols": [
    "golang.org/x/mod/modfile.Require"
  ]
}
test/contract.go
package main

import (
	"fmt"
	"os"

	"golang.org/x/mod/modfile"
	"golang.org/x/mod/module"
)

func main() {
	// 1. modfile.Require parses direct and indirect dependencies with correct module path, version, and indirect flag
	{
		content := []byte(`module example.com/testmod

go 1.23.0

require (
	github.com/google/uuid v1.6.0
	golang.org/x/crypto v0.35.0 // indirect
)
`)

		file, err := modfile.Parse("go.mod", content, nil)
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: unexpected parse error: %v\n", err)
			os.Exit(1)
		}

		if len(file.Require) != 2 {
			fmt.Fprintf(os.Stderr, "FAIL: expected 2 requires, got %d\n", len(file.Require))
			os.Exit(1)
		}

		req0 := file.Require[0]
		if req0.Mod.Path != "github.com/google/uuid" || req0.Mod.Version != "v1.6.0" || req0.Indirect != false {
			fmt.Fprintf(os.Stderr, "FAIL: req0 mismatch: path=%s ver=%s indirect=%t\n", req0.Mod.Path, req0.Mod.Version, req0.Indirect)
			os.Exit(1)
		}

		req1 := file.Require[1]
		if req1.Mod.Path != "golang.org/x/crypto" || req1.Mod.Version != "v0.35.0" || req1.Indirect != true {
			fmt.Fprintf(os.Stderr, "FAIL: req1 mismatch: path=%s ver=%s indirect=%t\n", req1.Mod.Path, req1.Mod.Version, req1.Indirect)
			os.Exit(1)
		}
	}

	// 2. modfile.File.AddNewRequire adds a Require entry with the specified path, version, and indirect status
	{
		content := []byte(`module example.com/testmod

go 1.23.0
`)
		file, err := modfile.Parse("go.mod", content, nil)
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: parse error: %v\n", err)
			os.Exit(1)
		}

		file.AddNewRequire("golang.org/x/sync", "v0.11.0", false)
		file.AddNewRequire("golang.org/x/sys", "v0.30.0", true)

		if len(file.Require) != 2 {
			fmt.Fprintf(os.Stderr, "FAIL: expected 2 requires after AddNewRequire, got %d\n", len(file.Require))
			os.Exit(1)
		}

		if file.Require[0].Mod.Path != "golang.org/x/sync" || file.Require[0].Mod.Version != "v0.11.0" || file.Require[0].Indirect != false {
			fmt.Fprintf(os.Stderr, "FAIL: direct require mismatch after AddNewRequire\n")
			os.Exit(1)
		}

		if file.Require[1].Mod.Path != "golang.org/x/sys" || file.Require[1].Mod.Version != "v0.30.0" || file.Require[1].Indirect != true {
			fmt.Fprintf(os.Stderr, "FAIL: indirect require mismatch after AddNewRequire\n")
			os.Exit(1)
		}
	}

	// 3. modfile.File.DropRequire removes the matching Require entry by module path
	{
		content := []byte(`module example.com/testmod

go 1.23.0

require (
	github.com/google/uuid v1.6.0
	golang.org/x/sync v0.11.0
)
`)
		file, err := modfile.Parse("go.mod", content, nil)
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: parse error: %v\n", err)
			os.Exit(1)
		}

		err = file.DropRequire("github.com/google/uuid")
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: unexpected DropRequire error: %v\n", err)
			os.Exit(1)
		}

		file.Cleanup()
		if len(file.Require) != 1 {
			fmt.Fprintf(os.Stderr, "FAIL: expected 1 require after drop, got %d\n", len(file.Require))
			os.Exit(1)
		}

		if file.Require[0].Mod.Path != "golang.org/x/sync" {
			fmt.Fprintf(os.Stderr, "FAIL: remaining require mismatch: got %s\n", file.Require[0].Mod.Path)
			os.Exit(1)
		}
	}

	// 4. modfile.File.SetRequire replaces all Require entries and formats consistently on round-trip parsing
	{
		content := []byte(`module example.com/testmod

go 1.23.0
`)
		file, err := modfile.Parse("go.mod", content, nil)
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: parse error: %v\n", err)
			os.Exit(1)
		}

		newRequires := []*modfile.Require{
			{
				Mod:      module.Version{Path: "github.com/stretchr/testify", Version: "v1.10.0"},
				Indirect: false,
			},
			{
				Mod:      module.Version{Path: "golang.org/x/net", Version: "v0.35.0"},
				Indirect: true,
			},
		}

		file.SetRequire(newRequires)

		formatted, err := file.Format()
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: format error: %v\n", err)
			os.Exit(1)
		}

		reparsed, err := modfile.Parse("go.mod", formatted, nil)
		if err != nil {
			fmt.Fprintf(os.Stderr, "FAIL: round-trip parse error: %v\n", err)
			os.Exit(1)
		}

		if len(reparsed.Require) != 2 {
			fmt.Fprintf(os.Stderr, "FAIL: expected 2 requires in round-trip, got %d\n", len(reparsed.Require))
			os.Exit(1)
		}

		if reparsed.Require[0].Mod.Path != "github.com/stretchr/testify" || reparsed.Require[0].Indirect != false {
			fmt.Fprintf(os.Stderr, "FAIL: round-trip require[0] mismatch\n")
			os.Exit(1)
		}
		if reparsed.Require[1].Mod.Path != "golang.org/x/net" || reparsed.Require[1].Indirect != true {
			fmt.Fprintf(os.Stderr, "FAIL: round-trip require[1] mismatch\n")
			os.Exit(1)
		}
	}

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

오리진 시더

익명