-
Notifications
You must be signed in to change notification settings - Fork 2
/
bench_test.go
161 lines (124 loc) · 3.41 KB
/
bench_test.go
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
package main_test
import (
"fmt"
"os"
"os/exec"
"sync"
"testing"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/go-plugin"
"github.com/Devoter/dlplugin_multilib_example/device"
"github.com/Devoter/dlplugin_multilib_example/rpcplug/shared"
)
type benchDataItem struct {
api shared.Device
dev uint64
}
var benchData map[string]*benchDataItem
var benchDataMx sync.Mutex
func accessDevice(b *testing.B, lib string) *benchDataItem {
benchDataMx.Lock()
defer benchDataMx.Unlock()
if benchData == nil {
benchData = map[string]*benchDataItem{}
}
data, ok := benchData[lib]
if !ok {
client := plugin.NewClient(&plugin.ClientConfig{
HandshakeConfig: shared.Handshake,
Plugins: shared.PluginMap,
Cmd: exec.Command("sh", "-c", lib),
Logger: hclog.NewNullLogger(),
})
// defer client.Kill()
rpcClient, err := client.Client()
if err != nil {
fmt.Println("Error:", err.Error())
os.Exit(1)
}
raw, err := rpcClient.Dispense("device")
if err != nil {
fmt.Println("Error:", err.Error())
os.Exit(1)
}
papi := raw.(shared.Device)
data = &benchDataItem{api: papi}
benchData[lib] = data
}
if data.dev == 0 {
dev, err := data.api.CreateDevice()
if err != nil {
b.Fatalf("could not instantiate a device by the reason: %v\n", err)
return nil
}
data.dev = dev
}
return data
}
func BenchmarkSetGetGoPlug(b *testing.B) {
benchItem := accessDevice(b, "./device-go-rpc")
if benchItem == nil {
b.Fatalf("could not access a device\n")
}
api := benchItem.api
dev := benchItem.dev
var value int32
var err error
i := int32(b.N)
b.ResetTimer()
if err = api.DeviceSetValue(dev, i); err != nil {
b.Fatalf("could not set a device value by the reason: %v\n", err)
}
if value, err = api.DeviceValue(dev); err != nil {
b.Fatalf("could not get a device value by the reason: %v\n", err)
}
if i != value {
b.Errorf("value should be [%d], but got [%d]", i, value)
}
}
func BenchmarkReadingGoPlug(b *testing.B) {
benchItem := accessDevice(b, "./device-go-rpc")
if benchItem == nil {
b.Fatalf("iteration: %d. could not access a device\n", b.N)
}
api := benchItem.api
dev := benchItem.dev
var err error
i := int32(b.N)
b.ResetTimer()
api.DeviceSetValue(dev, i)
encoded, err := api.GetDevice(dev, false)
if err != nil {
b.Fatalf("iteration: %d. could not get an encoded device state by the reason: %v\n", b.N, err)
}
var d device.Device
if err = d.UnmarshalBinary(encoded); err != nil {
b.Fatalf("iteration: %d. Could not parse an encoded device state by the reason: %v\n", b.N, err)
}
if i != d.Value() {
b.Errorf("iteration: %d. value should be [%d], but got [%d]", b.N, i, d.Value())
}
}
func BenchmarkReadingJSONGoPlug(b *testing.B) {
benchItem := accessDevice(b, "./device-go-rpc")
if benchItem == nil {
b.Fatalf("iteration: %d. could not access a device\n", b.N)
}
api := benchItem.api
dev := benchItem.dev
var err error
i := int32(b.N)
b.ResetTimer()
api.DeviceSetValue(dev, i)
encoded, err := api.GetDevice(dev, true)
if err != nil {
b.Fatalf("iteration: %d. could not get an encoded device state by the reason: %v\n", b.N, err)
}
var d device.Device
if err = d.UnmarshalJSON(encoded); err != nil {
b.Fatalf("iteration: %d. Could not parse an encoded device state by the reason: %v\n", b.N, err)
}
if i != d.Value() {
b.Errorf("iteration: %d. value should be [%d], but got [%d]", b.N, i, d.Value())
}
}