File: helpers_test.go

package info (click to toggle)
golang-github-creack-pty 1.1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 324 kB
  • sloc: sh: 51; asm: 5; makefile: 2
file content (62 lines) | stat: -rw-r--r-- 1,318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package pty

import (
	"bytes"
	"fmt"
	"io"
	"os"
	"testing"
)

// openCloses opens a pty/tty pair and stages the closing as part of the cleanup.
func openClose(t *testing.T) (pty, tty *os.File) {
	t.Helper()

	pty, tty, err := Open()
	if err != nil {
		t.Fatalf("Unexpected error from Open: %s.", err)
	}
	t.Cleanup(func() {
		if err := tty.Close(); err != nil {
			t.Errorf("Unexpected error from tty Close: %s.", err)
		}

		if err := pty.Close(); err != nil {
			t.Errorf("Unexpected error from pty Close: %s.", err)
		}
	})

	return pty, tty
}

func noError(t *testing.T, err error, msg string) {
	t.Helper()
	if err != nil {
		t.Fatalf("%s: %s.", msg, err)
	}
}

func assert[T comparable](t *testing.T, a, b T, msg string) {
	t.Helper()
	if a != b {
		t.Errorf("%s: %v != %v.", msg, a, b)
	}
}

// When asserting bytes, we want to display the diff, which may contain control characters.
func assertBytes(t *testing.T, a, b []byte, msg string) {
	t.Helper()
	if !bytes.Equal(a, b) {
		t.Errorf("%s: %v != %v.", msg, a, b)
	}
}

// Read a specific number of bytes from r, assert it didn't fail and return the bytes.
func readN(t *testing.T, r io.Reader, n int, msg string) []byte {
	t.Helper()

	buf := make([]byte, n)
	_, err := io.ReadFull(r, buf)
	noError(t, err, fmt.Sprintf("%s: %s", msg, err))
	return buf
}