tstest/natlab: add latency & loss simulation

A simple implementation of latency and loss simulation, applied to
writes to the ethernet interface of the NIC. The latency implementation
could be optimized substantially later if necessary.

Updates #13355
Signed-off-by: James Tucker <james@tailscale.com>
This commit is contained in:
James Tucker
2024-09-13 11:35:47 -07:00
committed by James Tucker
parent 41aac26106
commit c0a1ed86cb
3 changed files with 56 additions and 3 deletions
+14 -1
View File
@@ -3,7 +3,10 @@
package vnet
import "testing"
import (
"testing"
"time"
)
func TestConfig(t *testing.T) {
tests := []struct {
@@ -18,6 +21,16 @@ func TestConfig(t *testing.T) {
c.AddNode(c.AddNetwork("2.2.2.2", "10.2.0.1/16", HardNAT))
},
},
{
name: "latency-and-loss",
setup: func(c *Config) {
n1 := c.AddNetwork("2.1.1.1", "192.168.1.1/24", EasyNAT, NATPMP)
n1.SetLatency(time.Second)
n1.SetPacketLoss(0.1)
c.AddNode(n1)
c.AddNode(c.AddNetwork("2.2.2.2", "10.2.0.1/16", HardNAT))
},
},
{
name: "indirect",
setup: func(c *Config) {