1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/process_test.go

104 lines
1.6 KiB
Go
Raw Normal View History

package gopsutil
import (
2014-04-23 17:57:47 +09:00
"fmt"
2014-04-25 16:38:23 +09:00
"os"
2014-04-24 01:07:15 +09:00
"runtime"
"testing"
)
func test_getProcess() Process {
checkPid := os.Getpid()
if runtime.GOOS == "windows" {
checkPid = 7960
}
ret, _ := NewProcess(int32(checkPid))
return *ret
}
func Test_Pids(t *testing.T) {
ret, err := Pids()
if err != nil {
t.Errorf("error %v", err)
}
if len(ret) == 0 {
t.Errorf("could not get pids %v", ret)
}
}
func Test_Pid_exists(t *testing.T) {
2014-04-30 16:16:07 +09:00
checkPid := 1
2014-04-24 01:07:15 +09:00
if runtime.GOOS == "windows" {
2014-04-30 16:16:07 +09:00
checkPid = 0
2014-04-24 01:07:15 +09:00
}
2014-04-30 16:16:07 +09:00
ret, err := PidExists(int32(checkPid))
if err != nil {
t.Errorf("error %v", err)
}
if ret == false {
t.Errorf("could not get init process %v", ret)
}
2014-04-23 17:57:47 +09:00
}
func Test_NewProcess(t *testing.T) {
2014-04-30 16:16:07 +09:00
checkPid := 1
2014-04-24 01:07:15 +09:00
if runtime.GOOS == "windows" {
2014-04-30 16:16:07 +09:00
checkPid = 0
2014-04-24 01:07:15 +09:00
}
2014-04-30 16:16:07 +09:00
ret, err := NewProcess(int32(checkPid))
2014-04-23 17:57:47 +09:00
if err != nil {
t.Errorf("error %v", err)
}
fmt.Println(ret)
}
func Test_Process_memory_maps(t *testing.T) {
2014-04-30 16:16:07 +09:00
checkPid := os.Getpid()
if runtime.GOOS == "windows" {
2014-04-30 16:16:07 +09:00
checkPid = 0
}
return
2014-04-30 16:16:07 +09:00
ret, err := NewProcess(int32(checkPid))
2014-04-30 15:32:05 +09:00
mmaps, err := ret.MemoryMaps(false)
if err != nil {
t.Errorf("memory map get error %v", err)
}
for _, m := range *mmaps {
fmt.Println(m)
}
}
func Test_Process_Ppid(t *testing.T) {
p := test_getProcess()
v, err := p.Ppid()
if err != nil {
t.Errorf("geting ppid error %v", err)
}
if v == 0 {
t.Errorf("return value is 0 %v", v)
}
}
func Test_Process_IOCounters(t *testing.T) {
p := test_getProcess()
v, err := p.IOCounters()
if err != nil {
t.Errorf("geting ppid error %v", err)
2014-05-01 18:46:40 +09:00
return
}
if v.ReadCount == 0 {
t.Errorf("return value is 0 %v", v)
}
2014-05-01 18:46:40 +09:00
fmt.Println(v)
}