31 lines
586 B
Go
31 lines
586 B
Go
package dialog
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/config"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/derailed/tview"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestConfirmDialog(t *testing.T) {
|
|
a := tview.NewApplication()
|
|
p := ui.NewPages()
|
|
a.SetRoot(p, false)
|
|
|
|
ackFunc := func() {
|
|
assert.True(t, true)
|
|
}
|
|
caFunc := func() {
|
|
assert.True(t, true)
|
|
}
|
|
ShowConfirm(config.Dialog{}, p, "Blee", "Yo", ackFunc, caFunc)
|
|
|
|
d := p.GetPrimitive(dialogKey).(*tview.ModalForm)
|
|
assert.NotNil(t, d)
|
|
|
|
dismiss(p)
|
|
assert.Nil(t, p.GetPrimitive(dialogKey))
|
|
}
|