1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00

30 lines
614 B
Go
Raw Normal View History

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