a987b734创建于 2024年11月15日历史提交
// Copyright 2018 Google LLC. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package clock

import (
	"context"
	"fmt"
	"testing"
	"time"
)

var cases = []struct {
	dur     time.Duration
	timeout time.Duration
	cancel  bool
	wantErr error
}{
	{dur: 0 * time.Second, timeout: time.Second},
	{dur: 10 * time.Millisecond, timeout: 200 * time.Millisecond},
	{dur: 200 * time.Millisecond, timeout: 10 * time.Millisecond, wantErr: context.DeadlineExceeded},
	{dur: 1 * time.Millisecond, timeout: 0, wantErr: context.DeadlineExceeded},
	{dur: 10 * time.Millisecond, timeout: 20 * time.Millisecond, cancel: true, wantErr: context.Canceled},
}

func TestSleepContext(t *testing.T) {
	for _, tc := range cases {
		tc := tc
		t.Run(fmt.Sprintf("%v:%v", tc.dur, tc.timeout), func(t *testing.T) {
			ctx, cancel := context.WithTimeout(context.Background(), tc.timeout)
			if tc.cancel {
				cancel()
			} else {
				defer cancel()
			}
			if got, want := SleepContext(ctx, tc.dur), tc.wantErr; got != want {
				t.Errorf("SleepContext() returned %v, want %v", got, want)
			}
		})
	}
}

func TestSleepSource(t *testing.T) {
	for _, tc := range cases {
		tc := tc
		t.Run(fmt.Sprintf("%v:%v", tc.dur, tc.timeout), func(t *testing.T) {
			base := time.Now()
			ts := NewFake(base)
			ctx, cancel := context.WithCancel(context.Background())
			if tc.cancel {
				cancel()
			} else {
				defer cancel()
			}
			go func() {
				// Give SleepSource some time to block.
				time.Sleep(50 * time.Millisecond)
				if tc.dur < tc.timeout {
					ts.Set(base.Add(tc.dur))
				} else {
					ts.Set(base.Add(tc.timeout))
					cancel()
				}
			}()
			want := tc.wantErr
			if want == context.DeadlineExceeded {
				want = context.Canceled
			}
			if got := SleepSource(ctx, tc.dur, ts); got != want {
				t.Errorf("SleepSource() returned %v, want %v", got, want)
			}
		})
	}
}