From 204126893e170a857474aec75bb38d21be17c9fe Mon Sep 17 00:00:00 2001 From: Evgenii Stratonikov Date: Mon, 28 Feb 2022 14:45:35 +0300 Subject: [PATCH] [#376] object: add benchmarks for attributes marshal/unmarshal Signed-off-by: Evgenii Stratonikov --- object/bench_test.go | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 object/bench_test.go diff --git a/object/bench_test.go b/object/bench_test.go new file mode 100644 index 0000000..417c0df --- /dev/null +++ b/object/bench_test.go @@ -0,0 +1,43 @@ +package object + +import ( + "math/rand" + "testing" +) + +func randString(n int) string { + x := make([]byte, n) + for i := range x { + x[i] = byte('a' + rand.Intn('z'-'a')) + } + return string(x) +} + +func BenchmarkAttributesMarshal(b *testing.B) { + attrs := make([]*Attribute, 50) + for i := range attrs { + attrs[i] = new(Attribute) + attrs[i].key = SysAttributePrefix + randString(10) + attrs[i].val = randString(10) + } + raw := AttributesToGRPC(attrs) + + b.Run("marshal", func(b *testing.B) { + b.ReportAllocs() + for i := 0; i < b.N; i++ { + res := AttributesToGRPC(attrs) + if len(res) != len(raw) { + b.FailNow() + } + } + }) + b.Run("unmarshal", func(b *testing.B) { + b.ReportAllocs() + for i := 0; i < b.N; i++ { + res, err := AttributesFromGRPC(raw) + if err != nil || len(res) != len(raw) { + b.FailNow() + } + } + }) +}