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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
package pterm_test
import (
"io"
"os"
"testing"
"github.com/MarvinJWendt/testza"
"github.com/pterm/pterm"
)
func TestPanelPrinterNilPrint(t *testing.T) {
p := pterm.PanelPrinter{}
err := p.Render()
testza.AssertNoError(t, err)
}
func TestPanelPrinterNilPrintWithPanels(t *testing.T) {
panels := pterm.Panels{
{
{Data: "Hello, World"},
},
}
p := pterm.PanelPrinter{}.WithPanels(panels)
err := p.Render()
testza.AssertNoError(t, err)
}
func TestPanelPrinter_Render(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
panels := pterm.Panels{
{{Data: pterm.Sprint(a)}},
}
p := pterm.PanelPrinter{}.WithPanels(panels)
err := p.Render()
testza.AssertNoError(t, err)
})
}
func TestPanelPrinter_RenderMultiplePanels(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
panels := pterm.Panels{
{{Data: pterm.Sprint("a\nbc\ndef")}, {Data: pterm.Sprint("abcd")}},
{{Data: pterm.Sprint(a)}},
}
p := pterm.PanelPrinter{}.WithPanels(panels)
err := p.Render()
testza.AssertNoError(t, err)
})
}
func TestPanelPrinter_RenderMultiplePanelsWithBorder(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
panels := pterm.Panels{
{{Data: pterm.Sprint("a\nbc\ndef")}, {Data: pterm.Sprint("abcd")}},
{{Data: pterm.Sprint(a)}},
}
p := pterm.PanelPrinter{}.WithPanels(panels).WithBoxPrinter(pterm.DefaultBox)
err := p.Render()
testza.AssertNoError(t, err)
})
}
func TestPanelPrinter_RenderWithSameColumnWidth(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
panels := pterm.Panels{
{{Data: pterm.Sprint(a)}},
{{Data: pterm.Sprint("test")}},
{{Data: pterm.Sprint("Hello, World!")}},
}
p := pterm.PanelPrinter{}.WithPanels(panels).WithSameColumnWidth()
err := p.Render()
testza.AssertNoError(t, err)
})
}
func TestPanelPrinter_RenderWithBottomPadding(t *testing.T) {
testPrintContains(t, func(w io.Writer, a interface{}) {
panels := pterm.Panels{
{{Data: pterm.Sprint(a)}},
{{Data: pterm.Sprint("test")}},
{{Data: pterm.Sprint("Hello, World!")}},
}
p := pterm.PanelPrinter{}.WithPanels(panels).WithBottomPadding(1)
err := p.Render()
testza.AssertNoError(t, err)
})
}
func TestPanelPrinter_WithPanels(t *testing.T) {
panels := pterm.Panels{
{
{Data: "Hello, World!"},
},
}
p := pterm.PanelPrinter{}
p2 := p.WithPanels(panels)
testza.AssertEqual(t, panels, p2.Panels)
testza.AssertZero(t, p.Panels)
}
func TestPanelPrinter_WithPadding(t *testing.T) {
padding := 1337
p := pterm.PanelPrinter{}
p2 := p.WithPadding(padding)
testza.AssertEqual(t, padding, p2.Padding)
testza.AssertZero(t, p.Padding)
}
func TestPanelPrinter_WithInvalidPadding(t *testing.T) {
padding := -5
p := pterm.PanelPrinter{}
p2 := p.WithPadding(padding)
testza.AssertEqual(t, 0, p2.Padding)
testza.AssertZero(t, p.Padding)
}
func TestPanelPrinter_WithBottomPadding(t *testing.T) {
padding := 1337
p := pterm.PanelPrinter{}
p2 := p.WithBottomPadding(padding)
testza.AssertEqual(t, padding, p2.BottomPadding)
testza.AssertZero(t, p.BottomPadding)
}
func TestPanelPrinter_WithInvalidBottomPadding(t *testing.T) {
padding := -5
p := pterm.PanelPrinter{}
p2 := p.WithBottomPadding(padding)
testza.AssertEqual(t, 0, p2.BottomPadding)
testza.AssertZero(t, p.BottomPadding)
}
func TestPanelPrinter_WithSameColumnWidth(t *testing.T) {
p := pterm.PanelPrinter{}
p2 := p.WithSameColumnWidth()
testza.AssertTrue(t, p2.SameColumnWidth)
testza.AssertFalse(t, p.SameColumnWidth)
}
func TestPanelPrinter_WithBoxPrinter(t *testing.T) {
p := pterm.PanelPrinter{}
p2 := p.WithBoxPrinter(pterm.DefaultBox)
testza.AssertEqual(t, pterm.DefaultBox, p2.BoxPrinter)
testza.AssertZero(t, p.BoxPrinter)
}
func TestPanelPrinter_WithWriter(t *testing.T) {
p := pterm.PanelPrinter{}
s := os.Stderr
p2 := p.WithWriter(s)
testza.AssertEqual(t, s, p2.Writer)
testza.AssertZero(t, p.Writer)
}
|