summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/prometheus/procfs/proc_ns_test.go
blob: aea3f6a6c972308c1593d3b3bbe36e396ab40591 (plain)
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
package procfs

import (
	"testing"
)

func TestNewNamespaces(t *testing.T) {
	p, err := FS("fixtures").NewProc(26231)
	if err != nil {
		t.Fatal(err)
	}

	namespaces, err := p.NewNamespaces()
	if err != nil {
		t.Fatal(err)
	}

	expectedNamespaces := map[string]Namespace{
		"mnt": {"mnt", 4026531840},
		"net": {"net", 4026531993},
	}

	if want, have := len(expectedNamespaces), len(namespaces); want != have {
		t.Errorf("want %d parsed namespaces, have %d", want, have)
	}
	for _, ns := range namespaces {
		if want, have := expectedNamespaces[ns.Type], ns; want != have {
			t.Errorf("%s: want %v, have %v", ns.Type, want, have)
		}
	}
}