|
@@ -77,17 +77,17 @@ func testBars(t *testing.T) {
|
|
|
{9500, Bar95},
|
|
|
{10100, Bar100}}
|
|
|
|
|
|
- BarSolid := map[int]string{0: Bar25 + " ",
|
|
|
- 5: Bar25 + " ",
|
|
|
- 10: Bar25 + BARS.Solid + " ",
|
|
|
- 20: Bar25 + strings.Repeat(BARS.Solid, 2) + " ",
|
|
|
- 25: Bar25 + strings.Repeat(BARS.Solid, 2) + " ",
|
|
|
- 30: Bar50 + strings.Repeat(BARS.Solid, 3) + " ",
|
|
|
- 50: Bar50 + strings.Repeat(BARS.Solid, 5) + " ",
|
|
|
- 75: Bar75 + strings.Repeat(BARS.Solid, 7) + " ",
|
|
|
- 90: Bar95 + strings.Repeat(BARS.Solid, 9) + " ",
|
|
|
- 95: Bar95 + strings.Repeat(BARS.Solid, 9) + " ",
|
|
|
- 100: Bar100 + strings.Repeat(BARS.Solid, 10) + "",
|
|
|
+ BarSolid := map[int]string{0: string(Bar25) + " ",
|
|
|
+ 5: string(Bar25) + " ",
|
|
|
+ 10: string(Bar25) + BARS.Solid + " ",
|
|
|
+ 20: string(Bar25) + strings.Repeat(BARS.Solid, 2) + " ",
|
|
|
+ 25: string(Bar25) + strings.Repeat(BARS.Solid, 2) + " ",
|
|
|
+ 30: string(Bar50) + strings.Repeat(BARS.Solid, 3) + " ",
|
|
|
+ 50: string(Bar50) + strings.Repeat(BARS.Solid, 5) + " ",
|
|
|
+ 75: string(Bar75) + strings.Repeat(BARS.Solid, 7) + " ",
|
|
|
+ 90: string(Bar95) + strings.Repeat(BARS.Solid, 9) + " ",
|
|
|
+ 95: string(Bar95) + strings.Repeat(BARS.Solid, 9) + " ",
|
|
|
+ 100: string(Bar100) + strings.Repeat(BARS.Solid, 10) + "",
|
|
|
}
|
|
|
|
|
|
for pct, text := range BarSolid {
|
|
@@ -100,17 +100,17 @@ func testBars(t *testing.T) {
|
|
|
|
|
|
BarColor = ColorText("BLA ON WHI")
|
|
|
bar = BarLine{Line: Line{DefaultColor: BarColor}, Width: 10, Style: HALF_STEP, PercentStyle: PERCENT_SPACE}
|
|
|
- BarHalf := map[int]string{0: BarColor + " 0% ",
|
|
|
- 5: BarColor + BARS.Half[1] + " 5% ",
|
|
|
- 6: BarColor + BARS.Half[1] + " 6% ",
|
|
|
- 10: BarColor + BARS.Half[0] + " 10% ",
|
|
|
- 20: BarColor + BARS.Half[0] + BARS.Half[0] + " 20% ",
|
|
|
- 25: BarColor + BARS.Half[0] + BARS.Half[0] + BARS.Half[1] + " 25% ",
|
|
|
- 26: BarColor + BARS.Half[0] + BARS.Half[0] + BARS.Half[1] + " 26% ",
|
|
|
- 50: BarColor + strings.Repeat(BARS.Half[0], 3) + " 50% ",
|
|
|
- 75: BarColor + strings.Repeat(BARS.Half[0], 3) + " 75% ",
|
|
|
- 90: BarColor + strings.Repeat(BARS.Half[0], 3) + " 90% " + BARS.Half[0] + " ",
|
|
|
- 100: BarColor + strings.Repeat(BARS.Half[0], 3) + " 100 " + strings.Repeat(BARS.Half[0], 2),
|
|
|
+ BarHalf := map[int]string{0: string(BarColor) + " 0% ",
|
|
|
+ 5: string(BarColor) + BARS.Half[1] + " 5% ",
|
|
|
+ 6: string(BarColor) + BARS.Half[1] + " 6% ",
|
|
|
+ 10: string(BarColor) + BARS.Half[0] + " 10% ",
|
|
|
+ 20: string(BarColor) + BARS.Half[0] + BARS.Half[0] + " 20% ",
|
|
|
+ 25: string(BarColor) + BARS.Half[0] + BARS.Half[0] + BARS.Half[1] + " 25% ",
|
|
|
+ 26: string(BarColor) + BARS.Half[0] + BARS.Half[0] + BARS.Half[1] + " 26% ",
|
|
|
+ 50: string(BarColor) + strings.Repeat(BARS.Half[0], 3) + " 50% ",
|
|
|
+ 75: string(BarColor) + strings.Repeat(BARS.Half[0], 3) + " 75% ",
|
|
|
+ 90: string(BarColor) + strings.Repeat(BARS.Half[0], 3) + " 90% " + BARS.Half[0] + " ",
|
|
|
+ 100: string(BarColor) + strings.Repeat(BARS.Half[0], 3) + " 100 " + strings.Repeat(BARS.Half[0], 2),
|
|
|
}
|
|
|
|
|
|
for pct, text := range BarHalf {
|
|
@@ -123,16 +123,16 @@ func testBars(t *testing.T) {
|
|
|
|
|
|
BarColor = ColorText("RED")
|
|
|
bar = BarLine{Line: Line{DefaultColor: BarColor}, Width: 10, Style: GRADIENT}
|
|
|
- BarGrad := map[int]string{0: BarColor + " ",
|
|
|
- 3: BarColor + BARS.Gradient[1] + " ",
|
|
|
- 5: BarColor + BARS.Gradient[2] + " ",
|
|
|
- 8: BarColor + BARS.Gradient[3] + " ",
|
|
|
- 10: BarColor + BARS.Gradient[0] + " ",
|
|
|
- 20: BarColor + BARS.Gradient[0] + BARS.Gradient[0] + " ",
|
|
|
- 25: BarColor + BARS.Gradient[0] + BARS.Gradient[0] + BARS.Gradient[2] + " ",
|
|
|
- 50: BarColor + strings.Repeat(BARS.Gradient[0], 5) + " ",
|
|
|
- 75: BarColor + strings.Repeat(BARS.Gradient[0], 7) + BARS.Gradient[2] + " ",
|
|
|
- 100: BarColor + strings.Repeat(BARS.Gradient[0], 10),
|
|
|
+ BarGrad := map[int]string{0: string(BarColor) + " ",
|
|
|
+ 3: string(BarColor) + BARS.Gradient[1] + " ",
|
|
|
+ 5: string(BarColor) + BARS.Gradient[2] + " ",
|
|
|
+ 8: string(BarColor) + BARS.Gradient[3] + " ",
|
|
|
+ 10: string(BarColor) + BARS.Gradient[0] + " ",
|
|
|
+ 20: string(BarColor) + BARS.Gradient[0] + BARS.Gradient[0] + " ",
|
|
|
+ 25: string(BarColor) + BARS.Gradient[0] + BARS.Gradient[0] + BARS.Gradient[2] + " ",
|
|
|
+ 50: string(BarColor) + strings.Repeat(BARS.Gradient[0], 5) + " ",
|
|
|
+ 75: string(BarColor) + strings.Repeat(BARS.Gradient[0], 7) + BARS.Gradient[2] + " ",
|
|
|
+ 100: string(BarColor) + strings.Repeat(BARS.Gradient[0], 10),
|
|
|
}
|
|
|
|
|
|
var percent int64
|