File: proc_io_test.go

package info (click to toggle)
golang-procfs 0%2Bgit20150616.c91d8ee-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 208 kB
  • sloc: makefile: 18
file content (49 lines) | stat: -rw-r--r-- 993 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package procfs

import "testing"

func TestProcIO(t *testing.T) {
	fs, err := NewFS("fixtures")
	if err != nil {
		t.Fatal(err)
	}

	p, err := fs.NewProc(26231)
	if err != nil {
		t.Fatal(err)
	}

	s, err := p.NewIO()
	if err != nil {
		t.Fatal(err)
	}

	for _, test := range []struct {
		name string
		want uint64
		got  uint64
	}{
		{name: "RChar", want: 750339, got: s.RChar},
		{name: "WChar", want: 818609, got: s.WChar},
		{name: "SyscR", want: 7405, got: s.SyscR},
		{name: "SyscW", want: 5245, got: s.SyscW},
		{name: "ReadBytes", want: 1024, got: s.ReadBytes},
		{name: "WriteBytes", want: 2048, got: s.WriteBytes},
	} {
		if test.want != test.got {
			t.Errorf("want %s %d, got %d", test.name, test.want, test.got)
		}
	}

	for _, test := range []struct {
		name string
		want int64
		got  int64
	}{
		{name: "CancelledWriteBytes", want: -1024, got: s.CancelledWriteBytes},
	} {
		if test.want != test.got {
			t.Errorf("want %s %d, got %d", test.name, test.want, test.got)
		}
	}
}