44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Authors of K9s
|
|
|
|
package ui_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/config"
|
|
"github.com/derailed/k9s/internal/config/mock"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIndicatorReset(t *testing.T) {
|
|
i := ui.NewStatusIndicator(ui.NewApp(mock.NewMockConfig(), ""), 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(mock.NewMockConfig(), ""), 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(mock.NewMockConfig(), ""), 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(mock.NewMockConfig(), ""), config.NewStyles())
|
|
i.Err("Blee")
|
|
|
|
assert.Equal(t, "[orangered::b] <Blee> \n", i.GetText(false))
|
|
}
|