summaryrefslogtreecommitdiffhomepage
path: root/test/benchmarks/tools/sysbench_test.go
blob: 850d1939e61149210309e92407bec49fedc59c31 (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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Copyright 2020 The gVisor 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 tools

import (
	"testing"
)

// TestSysbenchCpu tests parses on sample 'sysbench cpu' output.
func TestSysbenchCpu(t *testing.T) {
	sampleData := `
sysbench 1.0.11 (using system LuaJIT 2.1.0-beta3)

Running the test with following options:
Number of threads: 8
Initializing random number generator from current time


Prime numbers limit: 10000

Initializing worker threads...

Threads started!

CPU speed:
    events per second:  9093.38

General statistics:
    total time:                          10.0007s
    total number of events:              90949

Latency (ms):
         min:                                  0.64
         avg:                                  0.88
         max:                                 24.65
         95th percentile:                      1.55
         sum:                              79936.91

Threads fairness:
    events (avg/stddev):           11368.6250/831.38
    execution time (avg/stddev):   9.9921/0.01
`
	sysbench := SysbenchCPU{}
	want := 9093.38
	if got, err := sysbench.parseEvents(sampleData); err != nil {
		t.Fatalf("parse cpu events failed: %v", err)
	} else if want != got {
		t.Fatalf("got: %f want: %f", got, want)
	}
}

// TestSysbenchMemory tests parsers on sample 'sysbench memory' output.
func TestSysbenchMemory(t *testing.T) {
	sampleData := `
sysbench 1.0.11 (using system LuaJIT 2.1.0-beta3)

Running the test with following options:
Number of threads: 8
Initializing random number generator from current time


Running memory speed test with the following options:
  block size: 1KiB
  total size: 102400MiB
  operation: write
  scope: global

Initializing worker threads...

Threads started!

Total operations: 47999046 (9597428.64 per second)

46874.07 MiB transferred (9372.49 MiB/sec)


General statistics:
    total time:                          5.0001s
    total number of events:              47999046

Latency (ms):
         min:                                  0.00
         avg:                                  0.00
         max:                                  0.21
         95th percentile:                      0.00
         sum:                              33165.91

Threads fairness:
    events (avg/stddev):           5999880.7500/111242.52
    execution time (avg/stddev):   4.1457/0.09
`
	sysbench := SysbenchMemory{}
	want := 9597428.64
	if got, err := sysbench.parseOperations(sampleData); err != nil {
		t.Fatalf("parse memory ops failed: %v", err)
	} else if want != got {
		t.Fatalf("got: %f want: %f", got, want)
	}
}

// TestSysbenchMutex tests parsers on sample 'sysbench mutex' output.
func TestSysbenchMutex(t *testing.T) {
	sampleData := `
sysbench 1.0.11 (using system LuaJIT 2.1.0-beta3)

The 'mutex' test requires a command argument. See 'sysbench mutex help'
root@ec078132e294:/# sysbench mutex --threads=8 run
sysbench 1.0.11 (using system LuaJIT 2.1.0-beta3)

Running the test with following options:
Number of threads: 8
Initializing random number generator from current time


Initializing worker threads...

Threads started!


General statistics:
    total time:                          0.2320s
    total number of events:              8

Latency (ms):
         min:                                152.35
         avg:                                192.48
         max:                                231.41
         95th percentile:                    231.53
         sum:                               1539.83

Threads fairness:
    events (avg/stddev):           1.0000/0.00
    execution time (avg/stddev):   0.1925/0.04
`

	sysbench := SysbenchMutex{}
	want := .1925
	if got, err := sysbench.parseExecutionTime(sampleData); err != nil {
		t.Fatalf("parse mutex time failed: %v", err)
	} else if want != got {
		t.Fatalf("got: %f want: %f", got, want)
	}

	want = 0.04
	if got, err := sysbench.parseDeviation(sampleData); err != nil {
		t.Fatalf("parse mutex deviation failed: %v", err)
	} else if want != got {
		t.Fatalf("got: %f want: %f", got, want)
	}

	want = 192.48
	if got, err := sysbench.parseLatency(sampleData); err != nil {
		t.Fatalf("parse mutex time failed: %v", err)
	} else if want != got {
		t.Fatalf("got: %f want: %f", got, want)
	}
}