sizetest.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. // Protocol Buffers for Go with Gadgets
  2. //
  3. // Copyright (c) 2013, The GoGo Authors. All rights reserved.
  4. // http://github.com/gogo/protobuf
  5. //
  6. // Redistribution and use in source and binary forms, with or without
  7. // modification, are permitted provided that the following conditions are
  8. // met:
  9. //
  10. // * Redistributions of source code must retain the above copyright
  11. // notice, this list of conditions and the following disclaimer.
  12. // * Redistributions in binary form must reproduce the above
  13. // copyright notice, this list of conditions and the following disclaimer
  14. // in the documentation and/or other materials provided with the
  15. // distribution.
  16. //
  17. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. package size
  29. import (
  30. "github.com/gogo/protobuf/gogoproto"
  31. "github.com/gogo/protobuf/plugin/testgen"
  32. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  33. )
  34. type test struct {
  35. *generator.Generator
  36. }
  37. func NewTest(g *generator.Generator) testgen.TestPlugin {
  38. return &test{g}
  39. }
  40. func (p *test) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool {
  41. used := false
  42. randPkg := imports.NewImport("math/rand")
  43. timePkg := imports.NewImport("time")
  44. testingPkg := imports.NewImport("testing")
  45. protoPkg := imports.NewImport("github.com/gogo/protobuf/proto")
  46. if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
  47. protoPkg = imports.NewImport("github.com/golang/protobuf/proto")
  48. }
  49. for _, message := range file.Messages() {
  50. ccTypeName := generator.CamelCaseSlice(message.TypeName())
  51. sizeName := ""
  52. if gogoproto.IsSizer(file.FileDescriptorProto, message.DescriptorProto) {
  53. sizeName = "Size"
  54. } else if gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) {
  55. sizeName = "ProtoSize"
  56. } else {
  57. continue
  58. }
  59. if message.DescriptorProto.GetOptions().GetMapEntry() {
  60. continue
  61. }
  62. if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) {
  63. used = true
  64. p.P(`func Test`, ccTypeName, sizeName, `(t *`, testingPkg.Use(), `.T) {`)
  65. p.In()
  66. p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`)
  67. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`)
  68. p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`)
  69. p.P(`size2 := `, protoPkg.Use(), `.Size(p)`)
  70. p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(p)`)
  71. p.P(`if err != nil {`)
  72. p.In()
  73. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  74. p.Out()
  75. p.P(`}`)
  76. p.P(`size := p.`, sizeName, `()`)
  77. p.P(`if len(dAtA) != size {`)
  78. p.In()
  79. p.P(`t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA))`)
  80. p.Out()
  81. p.P(`}`)
  82. p.P(`if size2 != size {`)
  83. p.In()
  84. p.P(`t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2)`)
  85. p.Out()
  86. p.P(`}`)
  87. p.P(`size3 := `, protoPkg.Use(), `.Size(p)`)
  88. p.P(`if size3 != size {`)
  89. p.In()
  90. p.P(`t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3)`)
  91. p.Out()
  92. p.P(`}`)
  93. p.Out()
  94. p.P(`}`)
  95. p.P()
  96. }
  97. if gogoproto.HasBenchGen(file.FileDescriptorProto, message.DescriptorProto) {
  98. used = true
  99. p.P(`func Benchmark`, ccTypeName, sizeName, `(b *`, testingPkg.Use(), `.B) {`)
  100. p.In()
  101. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(616))`)
  102. p.P(`total := 0`)
  103. p.P(`pops := make([]*`, ccTypeName, `, 1000)`)
  104. p.P(`for i := 0; i < 1000; i++ {`)
  105. p.In()
  106. p.P(`pops[i] = NewPopulated`, ccTypeName, `(popr, false)`)
  107. p.Out()
  108. p.P(`}`)
  109. p.P(`b.ResetTimer()`)
  110. p.P(`for i := 0; i < b.N; i++ {`)
  111. p.In()
  112. p.P(`total += pops[i%1000].`, sizeName, `()`)
  113. p.Out()
  114. p.P(`}`)
  115. p.P(`b.SetBytes(int64(total / b.N))`)
  116. p.Out()
  117. p.P(`}`)
  118. p.P()
  119. }
  120. }
  121. return used
  122. }
  123. func init() {
  124. testgen.RegisterTestPlugin(NewTest)
  125. }