encode_test.go 568 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package jsonpb
  2. import (
  3. "testing"
  4. "github.com/golang/protobuf/proto"
  5. )
  6. var message proto.Message
  7. func BenchmarkMarshalWithPool(b *testing.B) {
  8. b.ResetTimer()
  9. for i := 0; i < b.N; i++ {
  10. Marshal(message)
  11. }
  12. }
  13. func BenchmarkMarshalBytesWithPool(b *testing.B) {
  14. b.ResetTimer()
  15. for i := 0; i < b.N; i++ {
  16. Marshal(message)
  17. }
  18. }
  19. func BenchmarkMarshalToPBString(b *testing.B) {
  20. b.ResetTimer()
  21. for i := 0; i < b.N; i++ {
  22. marshalToPBString(message)
  23. }
  24. }
  25. func marshalToPBString(pb proto.Message) (string, error) {
  26. return marshaller.MarshalToString(pb)
  27. }