Skip to content

Commit

Permalink
Add test for net dev stats
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmidyson committed Oct 28, 2015
1 parent da771a0 commit c72e0c2
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 2 deletions.
4 changes: 2 additions & 2 deletions container/libcontainer/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,11 +171,11 @@ func scanInterfaceStats(netStatsFile string) ([]info.InterfaceStats, error) {

i := info.InterfaceStats{}

numRead, _ := fmt.Sscanf(line, netstatsLine,
_, err := fmt.Sscanf(line, netstatsLine,
&i.Name, &i.RxBytes, &i.RxPackets, &i.RxErrors, &i.RxDropped, &bkt, &bkt, &bkt,
&bkt, &i.TxBytes, &i.TxPackets, &i.TxErrors, &i.TxDropped, &bkt, &bkt, &bkt, &bkt)

if numRead == 17 && !isIgnoredDevice(i.Name) {
if err == nil && !isIgnoredDevice(i.Name) {
stats = append(stats, i)
}
}
Expand Down
63 changes: 63 additions & 0 deletions container/libcontainer/helpers_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
// Copyright 2014 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package libcontainer

import (
"testing"

info "github.com/google/cadvisor/info/v1"
)

func TestScanInterfaceStats(t *testing.T) {
stats, err := scanInterfaceStats("testdata/procnetdev")
if err != nil {
t.Error(err)
}

var netdevstats = []info.InterfaceStats{
{
Name: "wlp4s0",
RxBytes: 1,
RxPackets: 2,
RxErrors: 3,
RxDropped: 4,
TxBytes: 9,
TxPackets: 10,
TxErrors: 11,
TxDropped: 12,
},
{
Name: "em1",
RxBytes: 315849,
RxPackets: 1172,
RxErrors: 0,
RxDropped: 0,
TxBytes: 315850,
TxPackets: 1173,
TxErrors: 0,
TxDropped: 0,
},
}

if len(stats) != len(netdevstats) {
t.Errorf("Expected 2 net stats, got %d", len(stats))
}

for i, v := range netdevstats {
if v != stats[i] {
t.Errorf("Expected %#v, got %#v", v, stats[i])
}
}
}
6 changes: 6 additions & 0 deletions container/libcontainer/testdata/procnetdev
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
wlp4s0: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0
docker0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
lo: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
em1: 315849 1172 0 0 0 0 0 0 315850 1173 0 0 0 0 0 0

0 comments on commit c72e0c2

Please sign in to comment.