-
Notifications
You must be signed in to change notification settings - Fork 40
/
ansi_test.go
65 lines (57 loc) · 1.15 KB
/
ansi_test.go
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
63
64
65
package ansi
import (
"fmt"
"strings"
"testing"
)
func TestPlain(t *testing.T) {
DisableColors(true)
PrintStyles()
}
func TestStyles(t *testing.T) {
DisableColors(false)
PrintStyles()
}
func TestDisableColors(t *testing.T) {
fn := ColorFunc("red")
buf := colorCode("off")
if buf.String() != "" {
t.Fail()
}
DisableColors(true)
if Black != "" {
t.Fail()
}
code := ColorCode("red")
if code != "" {
t.Fail()
}
s := fn("foo")
if s != "foo" {
t.Fail()
}
DisableColors(false)
if Black == "" {
t.Fail()
}
code = ColorCode("red")
if code == "" {
t.Fail()
}
// will have escape codes around it
index := strings.Index(fn("foo"), "foo")
if index <= 0 {
t.Fail()
}
}
func TestAttributeReset(t *testing.T) {
boldRed := ColorCode("red+b")
greenUnderline := ColorCode("green+u")
s := fmt.Sprintf("normal %s bold red %s green underline %s", boldRed, greenUnderline, Reset)
// See the results on the terminal for regression tests.
fmt.Printf("Colored string: %s\n", s)
fmt.Printf("Escaped string: %q\n", s)
if s != "normal \x1b[0;1;31m bold red \x1b[0;4;32m green underline \x1b[0m" {
t.Error("Attributes are not being reset")
}
}