31 lines
697 B
Go
31 lines
697 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"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
func TestDeleteDialog(t *testing.T) {
|
|
p := ui.NewPages()
|
|
|
|
okFunc := func(p *metav1.DeletionPropagation, f bool) {
|
|
assert.Equal(t, propagationOptions[defaultPropagationIdx], p)
|
|
assert.True(t, f)
|
|
}
|
|
ShowDelete(new(config.Dialog), p, "Yo", okFunc, func() {})
|
|
|
|
d := p.GetPrimitive(dialogKey).(*tview.ModalForm)
|
|
assert.NotNil(t, d)
|
|
|
|
dismiss(p)
|
|
assert.Nil(t, p.GetPrimitive(dialogKey))
|
|
}
|