27 lines
568 B
Go
27 lines
568 B
Go
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright Authors of K9s
|
|
|
|
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)
|
|
ShowConfirm(new(config.Dialog), p, "Blee", "Yo", func() {}, func() {})
|
|
|
|
d := p.GetPrimitive(dialogKey).(*tview.ModalForm)
|
|
assert.NotNil(t, d)
|
|
|
|
dismiss(p)
|
|
assert.Nil(t, p.GetPrimitive(dialogKey))
|
|
}
|