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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
// Copyright 2019 The Prometheus Authors
// 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 btrfs
import "testing"
type testVector struct {
uuid, label string
devices, features int
data, meta, system alloc
commitstats commit
}
type alloc struct {
layout string
size uint64
ratio float64
}
type commit struct {
commits uint64
lastCommitMs uint64
maxCommitMs uint64
totalCommitMs uint64
}
func TestFSBtrfsStats(t *testing.T) {
btrfs, err := NewFS("testdata/fixtures/sys")
if err != nil {
t.Fatalf("failed to access Btrfs filesystem: %v", err)
}
stats, err := btrfs.Stats()
if err != nil {
t.Fatalf("failed to parse Btrfs stats: %v", err)
}
tests := []testVector{
{
uuid: "0abb23a9-579b-43e6-ad30-227ef47fcb9d",
label: "fixture",
devices: 2,
features: 4,
data: alloc{"raid0", 2147483648, 1},
meta: alloc{"raid1", 1073741824, 2},
system: alloc{"raid1", 8388608, 2},
commitstats: commit{258051, 1000, 51462, 47836090},
},
{
uuid: "7f07c59f-6136-449c-ab87-e1cf2328731b",
label: "",
devices: 4,
features: 5,
data: alloc{"raid5", 644087808, 4. / 3.},
meta: alloc{"raid6", 429391872, 4. / 2.},
system: alloc{"raid6", 16777216, 4. / 2.},
commitstats: commit{0, 0, 0, 0},
},
}
if l := len(stats); l != len(tests) {
t.Fatalf("unexpected number of btrfs stats: %d", l)
}
for i, tt := range tests {
if want, got := tt.uuid, stats[i].UUID; want != got {
t.Errorf("fs %q unexpected stats name:\nwant: %q\nhave: %q", tt.uuid, want, got)
}
if want, got := tt.devices, len(stats[i].Devices); want != got {
t.Errorf("fs %q unexpected number of devices:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.features, len(stats[i].Features); want != got {
t.Errorf("fs %q unexpected number of features:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.data.size, stats[i].Allocation.Data.TotalBytes; want != got {
t.Errorf("fs %q unexpected data size:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.meta.size, stats[i].Allocation.Metadata.TotalBytes; want != got {
t.Errorf("fs %q unexpected metadata size:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.system.size, stats[i].Allocation.System.TotalBytes; want != got {
t.Errorf("fs %q unexpected system size:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.data.ratio, stats[i].Allocation.Data.Layouts[tt.data.layout].Ratio; want != got {
t.Errorf("fs %q unexpected data ratio:\nwant: %f\nhave: %f", tt.uuid, want, got)
}
if want, got := tt.meta.ratio, stats[i].Allocation.Metadata.Layouts[tt.meta.layout].Ratio; want != got {
t.Errorf("fs %q unexpected metadata ratio:\nwant: %f\nhave: %f", tt.uuid, want, got)
}
if want, got := tt.system.ratio, stats[i].Allocation.System.Layouts[tt.system.layout].Ratio; want != got {
t.Errorf("fs %q unexpected system ratio:\nwant: %f\nhave: %f", tt.uuid, want, got)
}
if want, got := tt.commitstats.commits, stats[i].CommitStats.Commits; want != got {
t.Errorf("fs %q unexpected commit stats commits:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.commitstats.lastCommitMs, stats[i].CommitStats.LastCommitMs; want != got {
t.Errorf("fs %q unexpected commit stats last_commit_ms:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.commitstats.maxCommitMs, stats[i].CommitStats.MaxCommitMs; want != got {
t.Errorf("fs %q unexpected commit stats max_commit_ms:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
if want, got := tt.commitstats.totalCommitMs, stats[i].CommitStats.TotalCommitMs; want != got {
t.Errorf("fs %q unexpected commit stats total_commit_ms:\nwant: %d\nhave: %d", tt.uuid, want, got)
}
}
}
|