shirou_gopsutil/internal/common/sleep_test.go

30 lines
602 B
Go
Raw Normal View History

package common_test
import (
"context"
2021-12-05 05:29:38 +08:00
"errors"
"testing"
"time"
"github.com/shirou/gopsutil/v3/internal/common"
)
func TestSleep(test *testing.T) {
const dt = 50 * time.Millisecond
2021-12-23 05:54:41 +08:00
t := func(name string, ctx context.Context, expected error) {
test.Run(name, func(test *testing.T) {
2021-12-23 05:54:41 +08:00
err := common.Sleep(ctx, dt)
2021-12-05 05:29:38 +08:00
if !errors.Is(err, expected) {
test.Errorf("expected %v, got %v", expected, err)
}
})
}
2021-12-23 05:54:41 +08:00
ctx := context.Background()
canceled, cancel := context.WithCancel(ctx)
cancel()
t("background context", ctx, nil)
t("canceled context", canceled, context.Canceled)
}