zenity/entry_test.go

39 lines
688 B
Go
Raw Normal View History

2021-04-05 18:19:02 -04:00
package zenity_test
import (
"context"
"errors"
"os"
"testing"
"time"
"github.com/ncruces/zenity"
)
func ExampleEntry() {
zenity.Entry("Enter new text:",
zenity.Title("Add a new entry"))
// Output:
}
func TestEntryTimeout(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second/10)
2021-04-29 11:05:28 -04:00
_, err := zenity.Entry("", zenity.Context(ctx))
2021-04-05 18:19:02 -04:00
if !os.IsTimeout(err) {
t.Error("did not timeout:", err)
}
cancel()
}
func TestEntryCancel(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
cancel()
2021-04-29 11:05:28 -04:00
_, err := zenity.Entry("", zenity.Context(ctx))
2021-04-05 18:19:02 -04:00
if !errors.Is(err, context.Canceled) {
t.Error("was not canceled:", err)
}
}