zenity/pwd_test.go

74 lines
1.5 KiB
Go
Raw Normal View History

2021-04-08 20:26:57 -04:00
package zenity_test
import (
"context"
"errors"
"os"
2021-06-18 11:16:04 -04:00
"runtime"
2021-04-08 20:26:57 -04:00
"testing"
"time"
"github.com/ncruces/zenity"
2021-04-30 14:19:14 -04:00
"go.uber.org/goleak"
2021-04-08 20:26:57 -04:00
)
func ExamplePassword() {
zenity.Password(zenity.Title("Type your password"))
// Output:
}
2021-06-18 11:16:04 -04:00
func ExamplePassword_username() {
zenity.Password(
zenity.Title("Type your username and password"),
zenity.Username())
// Output:
}
2021-04-30 14:19:14 -04:00
func TestPassword_timeout(t *testing.T) {
defer goleak.VerifyNone(t)
2021-04-08 20:26:57 -04:00
ctx, cancel := context.WithTimeout(context.Background(), time.Second/10)
2021-04-30 14:19:14 -04:00
defer cancel()
2021-04-08 20:26:57 -04:00
2021-04-29 11:05:28 -04:00
_, _, err := zenity.Password(zenity.Context(ctx))
2021-06-18 10:04:09 -04:00
if err, skip := skip(err); skip {
t.Skip("skipping:", err)
}
2021-04-08 20:26:57 -04:00
if !os.IsTimeout(err) {
t.Error("did not timeout:", err)
}
}
2021-04-30 14:19:14 -04:00
func TestPassword_cancel(t *testing.T) {
defer goleak.VerifyNone(t)
2021-04-08 20:26:57 -04:00
ctx, cancel := context.WithCancel(context.Background())
cancel()
2021-04-29 11:05:28 -04:00
_, _, err := zenity.Password(zenity.Context(ctx))
2021-06-18 10:04:09 -04:00
if err, skip := skip(err); skip {
t.Skip("skipping:", err)
}
2021-04-08 20:26:57 -04:00
if !errors.Is(err, context.Canceled) {
t.Error("was not canceled:", err)
}
}
2021-06-18 11:16:04 -04:00
func TestPassword_username(t *testing.T) {
defer goleak.VerifyNone(t)
ctx, cancel := context.WithCancel(context.Background())
cancel()
_, _, err := zenity.Password(zenity.Context(ctx), zenity.Username())
if err, skip := skip(err); skip {
t.Skip("skipping:", err)
}
if runtime.GOOS == "windows" || runtime.GOOS == "darwin" {
if !errors.Is(err, zenity.ErrUnsupported) {
t.Error("was not unsupported:", err)
}
} else {
if !errors.Is(err, context.Canceled) {
t.Error("was not canceled:", err)
}
}
}