-
Notifications
You must be signed in to change notification settings - Fork 1
/
colorize_test.go
89 lines (82 loc) · 2.35 KB
/
colorize_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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Copyright 2019 Soluble Inc
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package colorize
import (
"fmt"
"strings"
"testing"
"time"
"github.com/fatih/color"
)
func TestDemoDefaults(t *testing.T) {
//t.SkipNow()
var template strings.Builder
params := make([]interface{}, 0, len(Styles))
names := []string{
"primary", "secondary", "info", "light", "success", "warning", "danger",
}
for _, k := range names {
template.WriteString(fmt.Sprintf("{%s: %%12s } ", k))
params = append(params, k)
k = "bg-" + k
if _, ok := Styles[k]; ok {
template.WriteString(fmt.Sprintf("{%s: %%12s }", k))
params = append(params, k)
}
template.WriteString("\n")
}
fmt.Println()
Colorize(template.String(), params...)
fmt.Println()
Colorize("{info:[INFO]} {secondary:%s} {primary:%s}\n",
time.Now().Format(time.RFC3339), "hello, world")
fmt.Println()
}
func TestBasic(t *testing.T) {
s := SColorize("{primary:%s} %s", "hello", "world")
if !strings.Contains(s, "hello") || !strings.Contains(s, "world") {
t.Errorf("string contents wrong")
}
Styles["primary"].Enable(false)
if Styles["primary"].IsEnabled() {
t.Error("primary is enabled")
}
if Styles["nope"].IsEnabled() {
t.Error("nope is enabled")
}
if SColorize("{primary:hello} world") != "hello world" {
t.Error("disable style didn't work")
}
color.Output = &strings.Builder{}
Colorize("hello, world")
if color.Output.(*strings.Builder).String() != "hello, world" {
t.Error("string didn't output")
}
}
func TestEscapes(t *testing.T) {
if e := SColorize("\\\n\r\t\v"); e != "\\\n\r\t\v" {
t.Errorf("escape sequences wrong: %s", e)
}
}
func TestIncomplete(t *testing.T) {
if s := SColorize("{primary:foo"); s != "{primary:foo" {
t.Error(s)
}
if s := SColorize("{nope:xxx\\}}"); s != "xxx}" {
t.Error(s)
}
if s := SColorize("{nope:foo\\ bar"); s != "{nope:foo\\ bar" {
t.Error(s)
}
}