net/tstun: rename statististics method (#5852)

Rename StatisticsEnable as SetStatisticsEnabled to be consistent
with other similarly named methods.

Rename StatisticsExtract as ExtractStatistics to follow
the convention where methods start with a verb.
It was originally named with Statistics as a prefix so that
statistics related methods would sort well in godoc,
but that property no longer holds.

Signed-off-by: Joe Tsai <joetsai@digital-static.net>
This commit is contained in:
Joe Tsai
2022-10-06 10:46:09 -07:00
committed by GitHub
parent dd045a3767
commit 84e8f25c21
2 changed files with 12 additions and 12 deletions

View File

@ -286,8 +286,8 @@ func TestWriteAndInject(t *testing.T) {
}
// Statistics gathering is disabled by default.
if stats := tun.StatisticsExtract(); len(stats) > 0 {
t.Errorf("tun.StatisticsExtract = %v, want {}", stats)
if stats := tun.ExtractStatistics(); len(stats) > 0 {
t.Errorf("tun.ExtractStatistics = %v, want {}", stats)
}
}
@ -337,15 +337,15 @@ func TestFilter(t *testing.T) {
}()
var buf [MaxPacketSize]byte
tun.StatisticsEnable(true)
tun.SetStatisticsEnabled(true)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var n int
var err error
var filtered bool
if stats := tun.StatisticsExtract(); len(stats) > 0 {
t.Errorf("tun.StatisticsExtract = %v, want {}", stats)
if stats := tun.ExtractStatistics(); len(stats) > 0 {
t.Errorf("tun.ExtractStatistics = %v, want {}", stats)
}
if tt.dir == in {
@ -378,7 +378,7 @@ func TestFilter(t *testing.T) {
}
}
got := tun.StatisticsExtract()
got := tun.ExtractStatistics()
want := map[flowtrack.Tuple]tunstats.Counts{}
if !tt.drop {
var p packet.Parsed
@ -393,7 +393,7 @@ func TestFilter(t *testing.T) {
}
}
if !reflect.DeepEqual(got, want) {
t.Errorf("tun.StatisticsExtract = %v, want %v", got, want)
t.Errorf("tun.ExtractStatistics = %v, want %v", got, want)
}
})
}