File: ack_delay_test.go

package info (click to toggle)
golang-golang-x-net 1%3A0.27.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 8,636 kB
  • sloc: asm: 18; makefile: 12; sh: 7
file content (81 lines) | stat: -rw-r--r-- 2,135 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build go1.21

package quic

import (
	"math"
	"testing"
	"time"
)

func TestAckDelayFromDuration(t *testing.T) {
	for _, test := range []struct {
		d                time.Duration
		ackDelayExponent uint8
		want             unscaledAckDelay
	}{{
		d:                8 * time.Microsecond,
		ackDelayExponent: 3,
		want:             1,
	}, {
		d:                1 * time.Nanosecond,
		ackDelayExponent: 3,
		want:             0, // rounds to zero
	}, {
		d:                3 * (1 << 20) * time.Microsecond,
		ackDelayExponent: 20,
		want:             3,
	}} {
		got := unscaledAckDelayFromDuration(test.d, test.ackDelayExponent)
		if got != test.want {
			t.Errorf("unscaledAckDelayFromDuration(%v, %v) = %v, want %v",
				test.d, test.ackDelayExponent, got, test.want)
		}
	}
}

func TestAckDelayToDuration(t *testing.T) {
	for _, test := range []struct {
		d                unscaledAckDelay
		ackDelayExponent uint8
		want             time.Duration
	}{{
		d:                1,
		ackDelayExponent: 3,
		want:             8 * time.Microsecond,
	}, {
		d:                0,
		ackDelayExponent: 3,
		want:             0,
	}, {
		d:                3,
		ackDelayExponent: 20,
		want:             3 * (1 << 20) * time.Microsecond,
	}, {
		d:                math.MaxInt64 / 1000,
		ackDelayExponent: 0,
		want:             (math.MaxInt64 / 1000) * time.Microsecond,
	}, {
		d:                (math.MaxInt64 / 1000) + 1,
		ackDelayExponent: 0,
		want:             0, // return 0 on overflow
	}, {
		d:                math.MaxInt64 / 1000 / 8,
		ackDelayExponent: 3,
		want:             (math.MaxInt64 / 1000 / 8) * 8 * time.Microsecond,
	}, {
		d:                (math.MaxInt64 / 1000 / 8) + 1,
		ackDelayExponent: 3,
		want:             0, // return 0 on overflow
	}} {
		got := test.d.Duration(test.ackDelayExponent)
		if got != test.want {
			t.Errorf("unscaledAckDelay(%v).Duration(%v) = %v, want %v",
				test.d, test.ackDelayExponent, int64(got), int64(test.want))
		}
	}
}