CodeSampleX

샘플

golang.org/x/term v0.40.0: GetSize, GetState, IsTerminal

검증된 샘플 — golang golang.org/x/term v0.40.0: GetSize, GetState, IsTerminal. go 1.26 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다.

sha256:3ebb3ece387bad2ca49fc88a127939d7dfbb8a30f7d106d8ac6bbd026a9ff034

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

실행 증거

선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.

증거 기준
서명된 컨트랙트 통과
검증 영수증
1
빌드한 서명 키
1
선언된 환경 go 1.26 linux 24 · ubuntu · glibc 2.39 x64 go 1.26 go 1.26 go 1

검증 실행 환경

환경 컨트랙트 단계 실행일
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-14

케이스

HOW
목표
verify pkg:golang/golang.org/x/term@v0.40.0
패키지
심벌
  • golang.org/x/term.GetSize
  • golang.org/x/term.GetState
  • golang.org/x/term.IsTerminal
  • golang.org/x/term.MakeRaw
  • golang.org/x/term.NewTerminal
  • golang.org/x/term.Restore
환경
go 1.26.6
생성일
2026-09-14T05:02:35Z

컨트랙트

  1. term.IsTerminal reports whether the given file descriptor is a terminal
  2. term.GetSize returns error when querying dimensions of a non-terminal file descriptor
  3. term.GetState returns error when querying state of a non-terminal file descriptor
  4. term.MakeRaw returns error when configuring a non-terminal file descriptor into raw mode
  5. term.Restore returns error when restoring terminal state on a non-terminal file descriptor
  6. term.NewTerminal initializes a VT100 terminal handler over an io.ReadWriter

파일

  • PROMPT.md
  • contract_test.go
  • csx.json
  • go.mod
  • go.sum
  • spec.json

소스 아티팩트 내려받기 (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 pkg:golang/golang.org/x/term@v0.40.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/golang.org/x/term@v0.40.0
Constraints:
  - executionContext: node
Required runtime conditions:
  - ecosystem: npm
  - language: javascript
  - moduleSystem: cjs
  - packageManager: npm@10.9.8
  - runtime: node@22.23.2

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.
contract_test.go
package sample_test

import (
	"bytes"
	"os"
	"strings"
	"testing"

	"golang.org/x/term"
)

type bufferRW struct {
	in  *bytes.Buffer
	out *bytes.Buffer
}

func (rw *bufferRW) Read(p []byte) (n int, err error) {
	return rw.in.Read(p)
}

func (rw *bufferRW) Write(p []byte) (n int, err error) {
	return rw.out.Write(p)
}

func newBufferRW(input string) *bufferRW {
	return &bufferRW{
		in:  bytes.NewBufferString(input),
		out: &bytes.Buffer{},
	}
}

func TestIsTerminal(t *testing.T) {
	// Invalid file descriptor
	if term.IsTerminal(-1) {
		t.Fatal("expected IsTerminal(-1) to be false")
	}

	// Pipe file descriptor is not a terminal
	r, w, err := os.Pipe()
	if err != nil {
		t.Fatalf("failed to create pipe: %v", err)
	}
	defer r.Close()
	defer w.Close()

	if term.IsTerminal(int(r.Fd())) {
		t.Fatal("expected pipe reader to not be a terminal")
	}
	if term.IsTerminal(int(w.Fd())) {
		t.Fatal("expected pipe writer to not be a terminal")
	}
}

func TestGetSize(t *testing.T) {
	// Querying terminal size on non-terminal fd returns error
	r, w, err := os.Pipe()
	if err != nil {
		t.Fatalf("failed to create pipe: %v", err)
	}
	defer r.Close()
	defer w.Close()

	width, height, err := term.GetSize(int(r.Fd()))
	if err == nil {
		t.Fatalf("expected error querying size on non-terminal pipe, got width=%d, height=%d", width, height)
	}

	// Querying terminal size on invalid fd returns error
	_, _, err = term.GetSize(-1)
	if err == nil {
		t.Fatal("expected error querying size on invalid fd")
	}
}

func TestGetState(t *testing.T) {
	// Querying terminal state on non-terminal fd returns error
	r, w, err := os.Pipe()
	if err != nil {
		t.Fatalf("failed to create pipe: %v", err)
	}
	defer r.Close()
	defer w.Close()

	state, err := term.GetState(int(r.Fd()))
	if err == nil {
		t.Fatalf("expected error getting state on non-terminal pipe, got state=%v", state)
	}

	// Querying terminal state on invalid fd returns error
	_, err = term.GetState(-1)
	if err == nil {
		t.Fatal("expected error getting state on invalid fd")
	}
}

func TestMakeRawAndRestore(t *testing.T) {
	// Calling MakeRaw on non-terminal fd returns error
	r, w, err := os.Pipe()
	if err != nil {
		t.Fatalf("failed to create pipe: %v", err)
	}
	defer r.Close()
	defer w.Close()

	state, err := term.MakeRaw(int(r.Fd()))
	if err == nil {
		t.Fatalf("expected error making raw on non-terminal pipe, got state=%v", state)
	}

	// Calling Restore on non-terminal fd with dummy state returns error
	dummyState := &term.State{}
	err = term.Restore(int(r.Fd()), dummyState)
	if err == nil {
		t.Fatal("expected error restoring state on non-terminal pipe")
	}

	// Calling MakeRaw on invalid fd returns error
	_, err = term.MakeRaw(-1)
	if err == nil {
		t.Fatal("expected error making raw on invalid fd")
	}

	// Calling Restore on invalid fd returns error
	err = term.Restore(-1, dummyState)
	if err == nil {
		t.Fatal("expected error restoring state on invalid fd")
	}
}

func TestNewTerminal(t *testing.T) {
	rw := newBufferRW("echo test\r\n")
	terminal := term.NewTerminal(rw, "user$ ")

	// Test SetSize
	if err := terminal.SetSize(80, 24); err != nil {
		t.Fatalf("SetSize failed: %v", err)
	}

	// Test ReadLine
	line, err := terminal.ReadLine()
	if err != nil {
		t.Fatalf("ReadLine failed: %v", err)
	}
	if line != "echo test" {
		t.Fatalf("expected 'echo test', got '%s'", line)
	}
	if !strings.Contains(rw.out.String(), "user$ ") {
		t.Fatalf("expected prompt 'user$ ' in output, got '%s'", rw.out.String())
	}

	// Test SetPrompt
	terminal.SetPrompt("new$ ")
	rw.in.WriteString("next cmd\r\n")
	line2, err := terminal.ReadLine()
	if err != nil || line2 != "next cmd" {
		t.Fatalf("ReadLine after SetPrompt failed: line=%s, err=%v", line2, err)
	}
	if !strings.Contains(rw.out.String(), "new$ ") {
		t.Fatalf("expected updated prompt 'new$ ' in output, got '%s'", rw.out.String())
	}

	// Test Write
	n, err := terminal.Write([]byte("response\n"))
	if err != nil {
		t.Fatalf("Write failed: %v", err)
	}
	if n != 9 {
		t.Fatalf("expected 9 bytes written, got %d", n)
	}
	if !strings.Contains(rw.out.String(), "response\r\n") {
		t.Fatalf("expected newline translation to CRLF in output, got %q", rw.out.String())
	}
}
csx.json
{"case":{"caseId":"case:sha256:ec8aad377665a0244709716d464cf45aaee78928f0db854c5e0bcc5a07220256","contract":["term.IsTerminal reports whether the given file descriptor is a terminal","term.GetSize returns error when querying dimensions of a non-terminal file descriptor","term.GetState returns error when querying state of a non-terminal file descriptor","term.MakeRaw returns error when configuring a non-terminal file descriptor into raw mode","term.Restore returns error when restoring terminal state on a non-terminal file descriptor","term.NewTerminal initializes a VT100 terminal handler over an io.ReadWriter"],"goal":"verify pkg:golang/golang.org/x/term@v0.40.0","kind":"HOW","packages":["pkg:golang/golang.org/x/term@v0.40.0"],"schemaVersion":1,"symbols":["golang.org/x/term.GetSize","golang.org/x/term.GetState","golang.org/x/term.IsTerminal","golang.org/x/term.MakeRaw","golang.org/x/term.NewTerminal","golang.org/x/term.Restore"]},"contractCommand":["go","test","-v","./..."],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","language":"go","languageVersion":"1.26.6","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/term@v0.40.0"],"schemaVersion":1,"subject":"pkg:golang/golang.org/x/term@v0.40.0","symbols":["golang.org/x/term.GetSize","golang.org/x/term.GetState","golang.org/x/term.IsTerminal","golang.org/x/term.MakeRaw","golang.org/x/term.NewTerminal","golang.org/x/term.Restore"],"verifierAdapter":"golang@1"}
go.mod
module sample

go 1.26.6

require (
	golang.org/x/sys v0.41.0 // indirect
	golang.org/x/term v0.40.0 // indirect
)
go.sum
golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k=
golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
golang.org/x/term v0.40.0 h1:36e4zGLqU4yhjlmxEaagx2KuYbJq3EwY8K943ZsHcvg=
golang.org/x/term v0.40.0/go.mod h1:w2P8uVp06p2iyKKuvXIm7N/y0UCRt3UfJTfZ7oOpglM=
spec.json
{
  "schemaVersion": 1,
  "goal": "verify pkg:golang/golang.org/x/term@v0.40.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/golang.org/x/term@v0.40.0"
  ],
  "constraints": {
    "executionContext": "node"
  },
  "runtimeConditions": {
    "ecosystem": "npm",
    "language": "javascript",
    "moduleSystem": "cjs",
    "packageManager": "npm@10.9.8",
    "runtime": "node@22.23.2"
  }
}

오리진 시더

익명