| "v.io/x/ref/lib/testutil/benchmark" |
| tsecurity "v.io/x/ref/lib/testutil/security" |
| "v.io/x/ref/profiles/internal/ipc/stream/vif" |
| // benchmarkDialVIF measures VIF creation time over the underlying net connection. |
| func benchmarkDialVIF(b *testing.B, mode options.VCSecurityLevel) { |
| stats := benchmark.AddStats(b, 16) |
| principal := tsecurity.NewPrincipal("test") |
| b.ResetTimer() // Exclude setup time from measurement. |
| for i := 0; i < b.N; i++ { |
| server, err := vif.InternalNewAcceptedVIF(ns, naming.FixedRoutingID(0x5), principal, nil, mode) |
| client, err := vif.InternalNewDialedVIF(nc, naming.FixedRoutingID(0xc), nil, mode) |
| duration := time.Since(start) |