-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added msys2/cygwin terminal detection support
- Loading branch information
1 parent
cdd47ca
commit 4c2de73
Showing
2 changed files
with
114 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package term | ||
|
||
import ( | ||
"fmt" | ||
"syscall" | ||
"testing" | ||
) | ||
|
||
// +build windows | ||
|
||
type myWriter struct { | ||
fd uintptr | ||
} | ||
|
||
func (w *myWriter) Write(p []byte) (int, error) { | ||
return 0, fmt.Errorf("not implemented") | ||
} | ||
|
||
func (w *myWriter) Fd() uintptr { | ||
return w.fd | ||
} | ||
|
||
var procGetStdHandle = kernel32.NewProc("GetStdHandle") | ||
|
||
const stdOutputHandle = ^uintptr(0) - 11 + 1 | ||
|
||
func getConsoleHandle() syscall.Handle { | ||
ptr, err := syscall.UTF16PtrFromString("CONOUT$") | ||
|
||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
handle, err := syscall.CreateFile(ptr, syscall.GENERIC_READ|syscall.GENERIC_WRITE, syscall.FILE_SHARE_READ, nil, syscall.OPEN_EXISTING, 0, 0) | ||
|
||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
return handle | ||
} | ||
|
||
func TestIsTerminal(t *testing.T) { | ||
// This is necessary because depending on whether `go test` is called with | ||
// the `-v` option, stdout will or will not be bound, changing the behavior | ||
// of the test. So we refer to it directly to avoid flakyness. | ||
handle := getConsoleHandle() | ||
|
||
writer := &myWriter{ | ||
fd: uintptr(handle), | ||
} | ||
|
||
if !IsTerminal(writer) { | ||
t.Errorf("output is supposed to be a terminal") | ||
} | ||
} |