mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
78 lines
2.3 KiB
Go
78 lines
2.3 KiB
Go
// +build go1.7
|
|
|
|
/*
|
|
*
|
|
* Copyright 2017 gRPC 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 benchmark
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
"time"
|
|
|
|
"google.golang.org/grpc"
|
|
"google.golang.org/grpc/benchmark/stats"
|
|
)
|
|
|
|
func BenchmarkClient(b *testing.B) {
|
|
maxConcurrentCalls := []int{1, 8, 64, 512}
|
|
reqSizeBytes := []int{1, 1024, 1024 * 1024}
|
|
reqspSizeBytes := []int{1, 1024, 1024 * 1024}
|
|
kbps := []int{0, 10240} // if non-positive, infinite
|
|
MTU := []int{0, 10} // if non-positive, infinite
|
|
// When set the latency to 0 (no delay), the result is slower than the real result with no delay
|
|
// because latency simulation section has extra operations
|
|
latency := []time.Duration{0, 40 * time.Millisecond} // if non-positive, no delay.
|
|
|
|
for _, enableTracing := range []bool{true, false} {
|
|
grpc.EnableTracing = enableTracing
|
|
tracing := "Tracing"
|
|
if !enableTracing {
|
|
tracing = "noTrace"
|
|
}
|
|
for _, ltc := range latency {
|
|
for _, k := range kbps {
|
|
for _, mtu := range MTU {
|
|
for _, maxC := range maxConcurrentCalls {
|
|
for _, reqS := range reqSizeBytes {
|
|
for _, respS := range reqspSizeBytes {
|
|
b.Run(fmt.Sprintf("Unary-%s-kbps_%#v-MTU_%#v-maxConcurrentCalls_"+
|
|
"%#v-reqSize_%#vB-respSize_%#vB-latency_%s",
|
|
tracing, k, mtu, maxC, reqS, respS, ltc.String()), func(b *testing.B) {
|
|
runUnary(b, maxC, reqS, respS, k, mtu, ltc)
|
|
})
|
|
b.Run(fmt.Sprintf("Stream-%s-kbps_%#v-MTU_%#v-maxConcurrentCalls_"+
|
|
"%#v-reqSize_%#vB-respSize_%#vB-latency_%s",
|
|
tracing, k, mtu, maxC, reqS, respS, ltc.String()), func(b *testing.B) {
|
|
runStream(b, maxC, reqS, respS, k, mtu, ltc)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(stats.RunTestMain(m))
|
|
}
|