mirror of https://github.com/shirou/gopsutil
Merge 4201ef19df
into 60463721ef
commit
e6d16e985a
@ -0,0 +1,122 @@
|
|||||||
|
//go:build linux
|
||||||
|
// +build linux
|
||||||
|
|
||||||
|
package disk
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestDiskStatsPost55(t *testing.T) {
|
||||||
|
orig := os.Getenv("HOST_PROC")
|
||||||
|
defer os.Setenv("HOST_PROC", orig)
|
||||||
|
|
||||||
|
os.Setenv("HOST_PROC", "testdata/linux/diskstats-post5.5/proc")
|
||||||
|
ios, err := IOCounters("sda", "sdc")
|
||||||
|
if err != nil {
|
||||||
|
t.Error("IOCounters failed")
|
||||||
|
}
|
||||||
|
|
||||||
|
expected := IOCountersStat{
|
||||||
|
ReadCount: 256838102,
|
||||||
|
MergedReadCount: 620512,
|
||||||
|
ReadBytes: 5028599594 * sectorSize,
|
||||||
|
ReadTime: 226563271,
|
||||||
|
WriteCount: 418236058,
|
||||||
|
MergedWriteCount: 7573415,
|
||||||
|
WriteBytes: 8577305933 * sectorSize,
|
||||||
|
WriteTime: 171833267,
|
||||||
|
IopsInProgress: 0,
|
||||||
|
IoTime: 141604084,
|
||||||
|
WeightedIO: 402232601,
|
||||||
|
DiscardCount: 168817,
|
||||||
|
MergedDiscardCount: 110,
|
||||||
|
DiscardBytes: 4991981424 * sectorSize,
|
||||||
|
DiscardTime: 387582,
|
||||||
|
FlushCount: 983197,
|
||||||
|
FlushTime: 3448479,
|
||||||
|
Name: "sdc",
|
||||||
|
SerialNumber: "",
|
||||||
|
Label: "",
|
||||||
|
}
|
||||||
|
if ios["sdc"] != expected {
|
||||||
|
t.Logf("IOCounterStats gave wrong results: expected %v actual %v", expected, ios["sdc"])
|
||||||
|
t.Error("IOCounterStats gave wrong results")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDiskStatsPre55(t *testing.T) {
|
||||||
|
orig := os.Getenv("HOST_PROC")
|
||||||
|
os.Setenv("HOST_PROC", "testdata/linux/diskstats-pre5.5/proc")
|
||||||
|
defer os.Setenv("HOST_PROC", orig)
|
||||||
|
|
||||||
|
ios, err := IOCounters("sda", "sdc")
|
||||||
|
if err != nil {
|
||||||
|
t.Error("IOCounters failed")
|
||||||
|
}
|
||||||
|
expected := IOCountersStat{
|
||||||
|
ReadCount: 256838102,
|
||||||
|
MergedReadCount: 620512,
|
||||||
|
ReadBytes: 5028599594 * sectorSize,
|
||||||
|
ReadTime: 226563271,
|
||||||
|
WriteCount: 418236058,
|
||||||
|
MergedWriteCount: 7573415,
|
||||||
|
WriteBytes: 8577305933 * sectorSize,
|
||||||
|
WriteTime: 171833267,
|
||||||
|
IopsInProgress: 0,
|
||||||
|
IoTime: 141604084,
|
||||||
|
WeightedIO: 402232601,
|
||||||
|
DiscardCount: 168817,
|
||||||
|
MergedDiscardCount: 110,
|
||||||
|
DiscardBytes: 4991981424 * sectorSize,
|
||||||
|
DiscardTime: 387582,
|
||||||
|
FlushCount: 0,
|
||||||
|
FlushTime: 0,
|
||||||
|
Name: "sdc",
|
||||||
|
SerialNumber: "",
|
||||||
|
Label: "",
|
||||||
|
}
|
||||||
|
if ios["sdc"] != expected {
|
||||||
|
t.Logf("IOCounterStats gave wrong results: expected %v actual %v", expected, ios)
|
||||||
|
t.Error("IOCounterStats gave wrong results")
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestDiskStatsPre418(t *testing.T) {
|
||||||
|
orig := os.Getenv("HOST_PROC")
|
||||||
|
defer os.Setenv("HOST_PROC", orig)
|
||||||
|
|
||||||
|
os.Setenv("HOST_PROC", "testdata/linux/diskstats-pre4.18/proc")
|
||||||
|
ios, err := IOCounters("sda", "sdc")
|
||||||
|
if err != nil {
|
||||||
|
t.Error("IOCounters failed")
|
||||||
|
}
|
||||||
|
expected := IOCountersStat{
|
||||||
|
ReadCount: 256838102,
|
||||||
|
MergedReadCount: 620512,
|
||||||
|
ReadBytes: 5028599594 * sectorSize,
|
||||||
|
ReadTime: 226563271,
|
||||||
|
WriteCount: 418236058,
|
||||||
|
MergedWriteCount: 7573415,
|
||||||
|
WriteBytes: 8577305933 * sectorSize,
|
||||||
|
WriteTime: 171833267,
|
||||||
|
IopsInProgress: 0,
|
||||||
|
IoTime: 141604084,
|
||||||
|
WeightedIO: 402232601,
|
||||||
|
DiscardCount: 0,
|
||||||
|
MergedDiscardCount: 0,
|
||||||
|
DiscardBytes: 0,
|
||||||
|
DiscardTime: 0,
|
||||||
|
FlushCount: 0,
|
||||||
|
FlushTime: 0,
|
||||||
|
Name: "sdc",
|
||||||
|
SerialNumber: "",
|
||||||
|
Label: "",
|
||||||
|
}
|
||||||
|
if ios["sdc"] != expected {
|
||||||
|
t.Logf("IOCounterStats gave wrong results: expected %v actual %v", expected, ios["sdc"])
|
||||||
|
t.Error("IOCounterStats gave wrong results")
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
8 0 sda 251490562 587923 4907991349 207940386 418695352 7259232 8579533525 94584901 0 140322864 306361336 169975 208 4992138504 371249 984400 3464799
|
||||||
|
8 1 sda1 251488338 587923 4907983293 207938421 418695352 7259232 8579533525 94584901 0 140322088 302894572 169975 208 4992138504 371249 0 0
|
||||||
|
8 32 sdc 256838102 620512 5028599594 226563271 418236058 7573415 8577305933 171833267 0 141604084 402232601 168817 110 4991981424 387582 983197 3448479
|
||||||
|
8 33 sdc1 256835879 620512 5028591546 226561154 418236058 7573415 8577305933 171833267 0 141603284 398782004 168817 110 4991981424 387582 0 0
|
@ -0,0 +1,4 @@
|
|||||||
|
8 0 sda 251490562 587923 4907991349 207940386 418695352 7259232 8579533525 94584901 0 140322864 306361336
|
||||||
|
8 1 sda1 251488338 587923 4907983293 207938421 418695352 7259232 8579533525 94584901 0 140322088 302894572
|
||||||
|
8 32 sdc 256838102 620512 5028599594 226563271 418236058 7573415 8577305933 171833267 0 141604084 402232601
|
||||||
|
8 33 sdc1 256835879 620512 5028591546 226561154 418236058 7573415 8577305933 171833267 0 141603284 398782004
|
@ -0,0 +1,4 @@
|
|||||||
|
8 0 sda 251490562 587923 4907991349 207940386 418695352 7259232 8579533525 94584901 0 140322864 306361336
|
||||||
|
8 1 sda1 251488338 587923 4907983293 207938421 418695352 7259232 8579533525 94584901 0 140322088 302894572
|
||||||
|
8 32 sdc 256838102 620512 5028599594 226563271 418236058 7573415 8577305933 171833267 0 141604084 402232601
|
||||||
|
8 33 sdc1 256835879 620512 5028591546 226561154 418236058 7573415 8577305933 171833267 0 141603284 398782004
|
@ -0,0 +1,4 @@
|
|||||||
|
8 0 sda 251490562 587923 4907991349 207940386 418695352 7259232 8579533525 94584901 0 140322864 306361336 169975 208 4992138504 371249
|
||||||
|
8 1 sda1 251488338 587923 4907983293 207938421 418695352 7259232 8579533525 94584901 0 140322088 302894572 169975 208 4992138504 371249
|
||||||
|
8 32 sdc 256838102 620512 5028599594 226563271 418236058 7573415 8577305933 171833267 0 141604084 402232601 168817 110 4991981424 387582
|
||||||
|
8 33 sdc1 256835879 620512 5028591546 226561154 418236058 7573415 8577305933 171833267 0 141603284 398782004 168817 110 4991981424 387582
|
Loading…
Reference in New Issue