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
|
// Copyright 2015-2018 The NATS 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.
// +build windows
package pse
import (
"fmt"
"os/exec"
"runtime"
"strconv"
"strings"
"testing"
)
func checkValues(t *testing.T, pcpu, tPcpu float64, rss, tRss int64) {
if pcpu != tPcpu {
delta := int64(pcpu - tPcpu)
if delta < 0 {
delta = -delta
}
if delta > 30 { // 30%?
t.Fatalf("CPUs did not match close enough: %f vs %f", pcpu, tPcpu)
}
}
if rss != tRss {
delta := rss - tRss
if delta < 0 {
delta = -delta
}
if delta > 1024*1024 { // 1MB
t.Fatalf("RSSs did not match close enough: %d vs %d", rss, tRss)
}
}
}
func TestPSEmulationWin(t *testing.T) {
var pcpu, tPcpu float64
var rss, vss, tRss int64
runtime.GC()
if err := ProcUsage(&pcpu, &rss, &vss); err != nil {
t.Fatalf("Error: %v", err)
}
runtime.GC()
imageName := getProcessImageName()
// query the counters using typeperf
out, err := exec.Command("typeperf.exe",
fmt.Sprintf("\\Process(%s)\\%% Processor Time", imageName),
fmt.Sprintf("\\Process(%s)\\Working Set - Private", imageName),
fmt.Sprintf("\\Process(%s)\\Virtual Bytes", imageName),
"-sc", "1").Output()
if err != nil {
t.Fatal("unable to run command", err)
}
// parse out results - refer to comments in procUsage for detail
results := strings.Split(string(out), "\r\n")
values := strings.Split(results[2], ",")
// parse pcpu
tPcpu, err = strconv.ParseFloat(strings.Trim(values[1], "\""), 64)
if err != nil {
t.Fatalf("Unable to parse percent cpu: %s", values[1])
}
// parse private bytes (rss)
fval, err := strconv.ParseFloat(strings.Trim(values[2], "\""), 64)
if err != nil {
t.Fatalf("Unable to parse private bytes: %s", values[2])
}
tRss = int64(fval)
checkValues(t, pcpu, tPcpu, rss, tRss)
runtime.GC()
// Again to test caching
if err = ProcUsage(&pcpu, &rss, &vss); err != nil {
t.Fatalf("Error: %v", err)
}
checkValues(t, pcpu, tPcpu, rss, tRss)
}
|