summaryrefslogtreecommitdiff
path: root/vendor/github.com/onsi/ginkgo/reporters/stenographer/console_logging.go
blob: 45b8f88690e479daf52c38d26319582e744acde2 (plain)
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
package stenographer

import (
	"fmt"
	"strings"
)

func (s *consoleStenographer) colorize(colorCode string, format string, args ...interface{}) string {
	var out string

	if len(args) > 0 {
		out = fmt.Sprintf(format, args...)
	} else {
		out = format
	}

	if s.color {
		return fmt.Sprintf("%s%s%s", colorCode, out, defaultStyle)
	} else {
		return out
	}
}

func (s *consoleStenographer) printBanner(text string, bannerCharacter string) {
	fmt.Fprintln(s.w, text)
	fmt.Fprintln(s.w, strings.Repeat(bannerCharacter, len(text)))
}

func (s *consoleStenographer) printNewLine() {
	fmt.Fprintln(s.w, "")
}

func (s *consoleStenographer) printDelimiter() {
	fmt.Fprintln(s.w, s.colorize(grayColor, "%s", strings.Repeat("-", 30)))
}

func (s *consoleStenographer) print(indentation int, format string, args ...interface{}) {
	fmt.Fprint(s.w, s.indent(indentation, format, args...))
}

func (s *consoleStenographer) println(indentation int, format string, args ...interface{}) {
	fmt.Fprintln(s.w, s.indent(indentation, format, args...))
}

func (s *consoleStenographer) indent(indentation int, format string, args ...interface{}) string {
	var text string

	if len(args) > 0 {
		text = fmt.Sprintf(format, args...)
	} else {
		text = format
	}

	stringArray := strings.Split(text, "\n")
	padding := ""
	if indentation >= 0 {
		padding = strings.Repeat("  ", indentation)
	}
	for i, s := range stringArray {
		stringArray[i] = fmt.Sprintf("%s%s", padding, s)
	}

	return strings.Join(stringArray, "\n")
}