24 lines
513 B
Go
24 lines
513 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package wgint
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/tailscale/wireguard-go/device"
|
|
)
|
|
|
|
func TestPeerStats(t *testing.T) {
|
|
peer := new(device.Peer)
|
|
if got := PeerLastHandshakeNano(peer); got != 0 {
|
|
t.Errorf("PeerLastHandshakeNano = %v, want 0", got)
|
|
}
|
|
if got := PeerRxBytes(peer); got != 0 {
|
|
t.Errorf("PeerRxBytes = %v, want 0", got)
|
|
}
|
|
if got := PeerTxBytes(peer); got != 0 {
|
|
t.Errorf("PeerTxBytes = %v, want 0", got)
|
|
}
|
|
}
|