40 lines
1013 B
Go
40 lines
1013 B
Go
package ui_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/config"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIndicatorReset(t *testing.T) {
|
|
i := ui.NewStatusIndicator(ui.NewApp(config.NewConfig(nil), ""), config.NewStyles())
|
|
i.SetPermanent("Blee")
|
|
i.Info("duh")
|
|
i.Reset()
|
|
|
|
assert.Equal(t, "Blee\n", i.GetText(false))
|
|
}
|
|
|
|
func TestIndicatorInfo(t *testing.T) {
|
|
i := ui.NewStatusIndicator(ui.NewApp(config.NewConfig(nil), ""), config.NewStyles())
|
|
i.Info("Blee")
|
|
|
|
assert.Equal(t, "[lawngreen::b] <Blee> \n", i.GetText(false))
|
|
}
|
|
|
|
func TestIndicatorWarn(t *testing.T) {
|
|
i := ui.NewStatusIndicator(ui.NewApp(config.NewConfig(nil), ""), config.NewStyles())
|
|
i.Warn("Blee")
|
|
|
|
assert.Equal(t, "[mediumvioletred::b] <Blee> \n", i.GetText(false))
|
|
}
|
|
|
|
func TestIndicatorErr(t *testing.T) {
|
|
i := ui.NewStatusIndicator(ui.NewApp(config.NewConfig(nil), ""), config.NewStyles())
|
|
i.Err("Blee")
|
|
|
|
assert.Equal(t, "[orangered::b] <Blee> \n", i.GetText(false))
|
|
}
|