testgen.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  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. /*
  29. The testgen plugin generates Test and Benchmark functions for each message.
  30. Tests are enabled using the following extensions:
  31. - testgen
  32. - testgen_all
  33. Benchmarks are enabled using the following extensions:
  34. - benchgen
  35. - benchgen_all
  36. Let us look at:
  37. github.com/gogo/protobuf/test/example/example.proto
  38. Btw all the output can be seen at:
  39. github.com/gogo/protobuf/test/example/*
  40. The following message:
  41. option (gogoproto.testgen_all) = true;
  42. option (gogoproto.benchgen_all) = true;
  43. message A {
  44. optional string Description = 1 [(gogoproto.nullable) = false];
  45. optional int64 Number = 2 [(gogoproto.nullable) = false];
  46. optional bytes Id = 3 [(gogoproto.customtype) = "github.com/gogo/protobuf/test/custom.Uuid", (gogoproto.nullable) = false];
  47. }
  48. given to the testgen plugin, will generate the following test code:
  49. func TestAProto(t *testing.T) {
  50. popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
  51. p := NewPopulatedA(popr, false)
  52. dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
  53. if err != nil {
  54. panic(err)
  55. }
  56. msg := &A{}
  57. if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
  58. panic(err)
  59. }
  60. for i := range dAtA {
  61. dAtA[i] = byte(popr.Intn(256))
  62. }
  63. if err := p.VerboseEqual(msg); err != nil {
  64. t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err)
  65. }
  66. if !p.Equal(msg) {
  67. t.Fatalf("%#v !Proto %#v", msg, p)
  68. }
  69. }
  70. func BenchmarkAProtoMarshal(b *testing.B) {
  71. popr := math_rand.New(math_rand.NewSource(616))
  72. total := 0
  73. pops := make([]*A, 10000)
  74. for i := 0; i < 10000; i++ {
  75. pops[i] = NewPopulatedA(popr, false)
  76. }
  77. b.ResetTimer()
  78. for i := 0; i < b.N; i++ {
  79. dAtA, err := github_com_gogo_protobuf_proto.Marshal(pops[i%10000])
  80. if err != nil {
  81. panic(err)
  82. }
  83. total += len(dAtA)
  84. }
  85. b.SetBytes(int64(total / b.N))
  86. }
  87. func BenchmarkAProtoUnmarshal(b *testing.B) {
  88. popr := math_rand.New(math_rand.NewSource(616))
  89. total := 0
  90. datas := make([][]byte, 10000)
  91. for i := 0; i < 10000; i++ {
  92. dAtA, err := github_com_gogo_protobuf_proto.Marshal(NewPopulatedA(popr, false))
  93. if err != nil {
  94. panic(err)
  95. }
  96. datas[i] = dAtA
  97. }
  98. msg := &A{}
  99. b.ResetTimer()
  100. for i := 0; i < b.N; i++ {
  101. total += len(datas[i%10000])
  102. if err := github_com_gogo_protobuf_proto.Unmarshal(datas[i%10000], msg); err != nil {
  103. panic(err)
  104. }
  105. }
  106. b.SetBytes(int64(total / b.N))
  107. }
  108. func TestAJSON(t *testing1.T) {
  109. popr := math_rand1.New(math_rand1.NewSource(time1.Now().UnixNano()))
  110. p := NewPopulatedA(popr, true)
  111. jsondata, err := encoding_json.Marshal(p)
  112. if err != nil {
  113. panic(err)
  114. }
  115. msg := &A{}
  116. err = encoding_json.Unmarshal(jsondata, msg)
  117. if err != nil {
  118. panic(err)
  119. }
  120. if err := p.VerboseEqual(msg); err != nil {
  121. t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err)
  122. }
  123. if !p.Equal(msg) {
  124. t.Fatalf("%#v !Json Equal %#v", msg, p)
  125. }
  126. }
  127. func TestAProtoText(t *testing2.T) {
  128. popr := math_rand2.New(math_rand2.NewSource(time2.Now().UnixNano()))
  129. p := NewPopulatedA(popr, true)
  130. dAtA := github_com_gogo_protobuf_proto1.MarshalTextString(p)
  131. msg := &A{}
  132. if err := github_com_gogo_protobuf_proto1.UnmarshalText(dAtA, msg); err != nil {
  133. panic(err)
  134. }
  135. if err := p.VerboseEqual(msg); err != nil {
  136. t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err)
  137. }
  138. if !p.Equal(msg) {
  139. t.Fatalf("%#v !Proto %#v", msg, p)
  140. }
  141. }
  142. func TestAProtoCompactText(t *testing2.T) {
  143. popr := math_rand2.New(math_rand2.NewSource(time2.Now().UnixNano()))
  144. p := NewPopulatedA(popr, true)
  145. dAtA := github_com_gogo_protobuf_proto1.CompactTextString(p)
  146. msg := &A{}
  147. if err := github_com_gogo_protobuf_proto1.UnmarshalText(dAtA, msg); err != nil {
  148. panic(err)
  149. }
  150. if err := p.VerboseEqual(msg); err != nil {
  151. t.Fatalf("%#v !VerboseProto %#v, since %v", msg, p, err)
  152. }
  153. if !p.Equal(msg) {
  154. t.Fatalf("%#v !Proto %#v", msg, p)
  155. }
  156. }
  157. Other registered tests are also generated.
  158. Tests are registered to this test plugin by calling the following function.
  159. func RegisterTestPlugin(newFunc NewTestPlugin)
  160. where NewTestPlugin is:
  161. type NewTestPlugin func(g *generator.Generator) TestPlugin
  162. and TestPlugin is an interface:
  163. type TestPlugin interface {
  164. Generate(imports generator.PluginImports, file *generator.FileDescriptor) (used bool)
  165. }
  166. Plugins that use this interface include:
  167. - populate
  168. - gostring
  169. - equal
  170. - union
  171. - and more
  172. Please look at these plugins as examples of how to create your own.
  173. A good idea is to let each plugin generate its own tests.
  174. */
  175. package testgen
  176. import (
  177. "github.com/gogo/protobuf/gogoproto"
  178. "github.com/gogo/protobuf/protoc-gen-gogo/generator"
  179. )
  180. type TestPlugin interface {
  181. Generate(imports generator.PluginImports, file *generator.FileDescriptor) (used bool)
  182. }
  183. type NewTestPlugin func(g *generator.Generator) TestPlugin
  184. var testplugins = make([]NewTestPlugin, 0)
  185. func RegisterTestPlugin(newFunc NewTestPlugin) {
  186. testplugins = append(testplugins, newFunc)
  187. }
  188. type plugin struct {
  189. *generator.Generator
  190. generator.PluginImports
  191. tests []TestPlugin
  192. }
  193. func NewPlugin() *plugin {
  194. return &plugin{}
  195. }
  196. func (p *plugin) Name() string {
  197. return "testgen"
  198. }
  199. func (p *plugin) Init(g *generator.Generator) {
  200. p.Generator = g
  201. p.tests = make([]TestPlugin, 0, len(testplugins))
  202. for i := range testplugins {
  203. p.tests = append(p.tests, testplugins[i](g))
  204. }
  205. }
  206. func (p *plugin) Generate(file *generator.FileDescriptor) {
  207. p.PluginImports = generator.NewPluginImports(p.Generator)
  208. atLeastOne := false
  209. for i := range p.tests {
  210. used := p.tests[i].Generate(p.PluginImports, file)
  211. if used {
  212. atLeastOne = true
  213. }
  214. }
  215. if atLeastOne {
  216. p.P(`//These tests are generated by github.com/gogo/protobuf/plugin/testgen`)
  217. }
  218. }
  219. type testProto struct {
  220. *generator.Generator
  221. }
  222. func newProto(g *generator.Generator) TestPlugin {
  223. return &testProto{g}
  224. }
  225. func (p *testProto) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool {
  226. used := false
  227. testingPkg := imports.NewImport("testing")
  228. randPkg := imports.NewImport("math/rand")
  229. timePkg := imports.NewImport("time")
  230. protoPkg := imports.NewImport("github.com/gogo/protobuf/proto")
  231. if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
  232. protoPkg = imports.NewImport("github.com/golang/protobuf/proto")
  233. }
  234. for _, message := range file.Messages() {
  235. ccTypeName := generator.CamelCaseSlice(message.TypeName())
  236. if message.DescriptorProto.GetOptions().GetMapEntry() {
  237. continue
  238. }
  239. if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) {
  240. used = true
  241. p.P(`func Test`, ccTypeName, `Proto(t *`, testingPkg.Use(), `.T) {`)
  242. p.In()
  243. p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`)
  244. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`)
  245. p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`)
  246. p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(p)`)
  247. p.P(`if err != nil {`)
  248. p.In()
  249. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  250. p.Out()
  251. p.P(`}`)
  252. p.P(`msg := &`, ccTypeName, `{}`)
  253. p.P(`if err := `, protoPkg.Use(), `.Unmarshal(dAtA, msg); err != nil {`)
  254. p.In()
  255. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  256. p.Out()
  257. p.P(`}`)
  258. p.P(`littlefuzz := make([]byte, len(dAtA))`)
  259. p.P(`copy(littlefuzz, dAtA)`)
  260. p.P(`for i := range dAtA {`)
  261. p.In()
  262. p.P(`dAtA[i] = byte(popr.Intn(256))`)
  263. p.Out()
  264. p.P(`}`)
  265. if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) {
  266. p.P(`if err := p.VerboseEqual(msg); err != nil {`)
  267. p.In()
  268. p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`)
  269. p.Out()
  270. p.P(`}`)
  271. }
  272. p.P(`if !p.Equal(msg) {`)
  273. p.In()
  274. p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`)
  275. p.Out()
  276. p.P(`}`)
  277. p.P(`if len(littlefuzz) > 0 {`)
  278. p.In()
  279. p.P(`fuzzamount := 100`)
  280. p.P(`for i := 0; i < fuzzamount; i++ {`)
  281. p.In()
  282. p.P(`littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))`)
  283. p.P(`littlefuzz = append(littlefuzz, byte(popr.Intn(256)))`)
  284. p.Out()
  285. p.P(`}`)
  286. p.P(`// shouldn't panic`)
  287. p.P(`_ = `, protoPkg.Use(), `.Unmarshal(littlefuzz, msg)`)
  288. p.Out()
  289. p.P(`}`)
  290. p.Out()
  291. p.P(`}`)
  292. p.P()
  293. }
  294. if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) {
  295. if gogoproto.IsMarshaler(file.FileDescriptorProto, message.DescriptorProto) || gogoproto.IsUnsafeMarshaler(file.FileDescriptorProto, message.DescriptorProto) {
  296. p.P(`func Test`, ccTypeName, `MarshalTo(t *`, testingPkg.Use(), `.T) {`)
  297. p.In()
  298. p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`)
  299. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`)
  300. p.P(`p := NewPopulated`, ccTypeName, `(popr, false)`)
  301. if gogoproto.IsProtoSizer(file.FileDescriptorProto, message.DescriptorProto) {
  302. p.P(`size := p.ProtoSize()`)
  303. } else {
  304. p.P(`size := p.Size()`)
  305. }
  306. p.P(`dAtA := make([]byte, size)`)
  307. p.P(`for i := range dAtA {`)
  308. p.In()
  309. p.P(`dAtA[i] = byte(popr.Intn(256))`)
  310. p.Out()
  311. p.P(`}`)
  312. p.P(`_, err := p.MarshalTo(dAtA)`)
  313. p.P(`if err != nil {`)
  314. p.In()
  315. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  316. p.Out()
  317. p.P(`}`)
  318. p.P(`msg := &`, ccTypeName, `{}`)
  319. p.P(`if err := `, protoPkg.Use(), `.Unmarshal(dAtA, msg); err != nil {`)
  320. p.In()
  321. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  322. p.Out()
  323. p.P(`}`)
  324. p.P(`for i := range dAtA {`)
  325. p.In()
  326. p.P(`dAtA[i] = byte(popr.Intn(256))`)
  327. p.Out()
  328. p.P(`}`)
  329. if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) {
  330. p.P(`if err := p.VerboseEqual(msg); err != nil {`)
  331. p.In()
  332. p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`)
  333. p.Out()
  334. p.P(`}`)
  335. }
  336. p.P(`if !p.Equal(msg) {`)
  337. p.In()
  338. p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`)
  339. p.Out()
  340. p.P(`}`)
  341. p.Out()
  342. p.P(`}`)
  343. p.P()
  344. }
  345. }
  346. if gogoproto.HasBenchGen(file.FileDescriptorProto, message.DescriptorProto) {
  347. used = true
  348. p.P(`func Benchmark`, ccTypeName, `ProtoMarshal(b *`, testingPkg.Use(), `.B) {`)
  349. p.In()
  350. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(616))`)
  351. p.P(`total := 0`)
  352. p.P(`pops := make([]*`, ccTypeName, `, 10000)`)
  353. p.P(`for i := 0; i < 10000; i++ {`)
  354. p.In()
  355. p.P(`pops[i] = NewPopulated`, ccTypeName, `(popr, false)`)
  356. p.Out()
  357. p.P(`}`)
  358. p.P(`b.ResetTimer()`)
  359. p.P(`for i := 0; i < b.N; i++ {`)
  360. p.In()
  361. p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(pops[i%10000])`)
  362. p.P(`if err != nil {`)
  363. p.In()
  364. p.P(`panic(err)`)
  365. p.Out()
  366. p.P(`}`)
  367. p.P(`total += len(dAtA)`)
  368. p.Out()
  369. p.P(`}`)
  370. p.P(`b.SetBytes(int64(total / b.N))`)
  371. p.Out()
  372. p.P(`}`)
  373. p.P()
  374. p.P(`func Benchmark`, ccTypeName, `ProtoUnmarshal(b *`, testingPkg.Use(), `.B) {`)
  375. p.In()
  376. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(616))`)
  377. p.P(`total := 0`)
  378. p.P(`datas := make([][]byte, 10000)`)
  379. p.P(`for i := 0; i < 10000; i++ {`)
  380. p.In()
  381. p.P(`dAtA, err := `, protoPkg.Use(), `.Marshal(NewPopulated`, ccTypeName, `(popr, false))`)
  382. p.P(`if err != nil {`)
  383. p.In()
  384. p.P(`panic(err)`)
  385. p.Out()
  386. p.P(`}`)
  387. p.P(`datas[i] = dAtA`)
  388. p.Out()
  389. p.P(`}`)
  390. p.P(`msg := &`, ccTypeName, `{}`)
  391. p.P(`b.ResetTimer()`)
  392. p.P(`for i := 0; i < b.N; i++ {`)
  393. p.In()
  394. p.P(`total += len(datas[i%10000])`)
  395. p.P(`if err := `, protoPkg.Use(), `.Unmarshal(datas[i%10000], msg); err != nil {`)
  396. p.In()
  397. p.P(`panic(err)`)
  398. p.Out()
  399. p.P(`}`)
  400. p.Out()
  401. p.P(`}`)
  402. p.P(`b.SetBytes(int64(total / b.N))`)
  403. p.Out()
  404. p.P(`}`)
  405. p.P()
  406. }
  407. }
  408. return used
  409. }
  410. type testJson struct {
  411. *generator.Generator
  412. }
  413. func newJson(g *generator.Generator) TestPlugin {
  414. return &testJson{g}
  415. }
  416. func (p *testJson) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool {
  417. used := false
  418. testingPkg := imports.NewImport("testing")
  419. randPkg := imports.NewImport("math/rand")
  420. timePkg := imports.NewImport("time")
  421. jsonPkg := imports.NewImport("github.com/gogo/protobuf/jsonpb")
  422. for _, message := range file.Messages() {
  423. ccTypeName := generator.CamelCaseSlice(message.TypeName())
  424. if message.DescriptorProto.GetOptions().GetMapEntry() {
  425. continue
  426. }
  427. if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) {
  428. used = true
  429. p.P(`func Test`, ccTypeName, `JSON(t *`, testingPkg.Use(), `.T) {`)
  430. p.In()
  431. p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`)
  432. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`)
  433. p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`)
  434. p.P(`marshaler := `, jsonPkg.Use(), `.Marshaler{}`)
  435. p.P(`jsondata, err := marshaler.MarshalToString(p)`)
  436. p.P(`if err != nil {`)
  437. p.In()
  438. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  439. p.Out()
  440. p.P(`}`)
  441. p.P(`msg := &`, ccTypeName, `{}`)
  442. p.P(`err = `, jsonPkg.Use(), `.UnmarshalString(jsondata, msg)`)
  443. p.P(`if err != nil {`)
  444. p.In()
  445. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  446. p.Out()
  447. p.P(`}`)
  448. if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) {
  449. p.P(`if err := p.VerboseEqual(msg); err != nil {`)
  450. p.In()
  451. p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`)
  452. p.Out()
  453. p.P(`}`)
  454. }
  455. p.P(`if !p.Equal(msg) {`)
  456. p.In()
  457. p.P(`t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)`)
  458. p.Out()
  459. p.P(`}`)
  460. p.Out()
  461. p.P(`}`)
  462. }
  463. }
  464. return used
  465. }
  466. type testText struct {
  467. *generator.Generator
  468. }
  469. func newText(g *generator.Generator) TestPlugin {
  470. return &testText{g}
  471. }
  472. func (p *testText) Generate(imports generator.PluginImports, file *generator.FileDescriptor) bool {
  473. used := false
  474. testingPkg := imports.NewImport("testing")
  475. randPkg := imports.NewImport("math/rand")
  476. timePkg := imports.NewImport("time")
  477. protoPkg := imports.NewImport("github.com/gogo/protobuf/proto")
  478. if !gogoproto.ImportsGoGoProto(file.FileDescriptorProto) {
  479. protoPkg = imports.NewImport("github.com/golang/protobuf/proto")
  480. }
  481. //fmtPkg := imports.NewImport("fmt")
  482. for _, message := range file.Messages() {
  483. ccTypeName := generator.CamelCaseSlice(message.TypeName())
  484. if message.DescriptorProto.GetOptions().GetMapEntry() {
  485. continue
  486. }
  487. if gogoproto.HasTestGen(file.FileDescriptorProto, message.DescriptorProto) {
  488. used = true
  489. p.P(`func Test`, ccTypeName, `ProtoText(t *`, testingPkg.Use(), `.T) {`)
  490. p.In()
  491. p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`)
  492. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`)
  493. p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`)
  494. p.P(`dAtA := `, protoPkg.Use(), `.MarshalTextString(p)`)
  495. p.P(`msg := &`, ccTypeName, `{}`)
  496. p.P(`if err := `, protoPkg.Use(), `.UnmarshalText(dAtA, msg); err != nil {`)
  497. p.In()
  498. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  499. p.Out()
  500. p.P(`}`)
  501. if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) {
  502. p.P(`if err := p.VerboseEqual(msg); err != nil {`)
  503. p.In()
  504. p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`)
  505. p.Out()
  506. p.P(`}`)
  507. }
  508. p.P(`if !p.Equal(msg) {`)
  509. p.In()
  510. p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`)
  511. p.Out()
  512. p.P(`}`)
  513. p.Out()
  514. p.P(`}`)
  515. p.P()
  516. p.P(`func Test`, ccTypeName, `ProtoCompactText(t *`, testingPkg.Use(), `.T) {`)
  517. p.In()
  518. p.P(`seed := `, timePkg.Use(), `.Now().UnixNano()`)
  519. p.P(`popr := `, randPkg.Use(), `.New(`, randPkg.Use(), `.NewSource(seed))`)
  520. p.P(`p := NewPopulated`, ccTypeName, `(popr, true)`)
  521. p.P(`dAtA := `, protoPkg.Use(), `.CompactTextString(p)`)
  522. p.P(`msg := &`, ccTypeName, `{}`)
  523. p.P(`if err := `, protoPkg.Use(), `.UnmarshalText(dAtA, msg); err != nil {`)
  524. p.In()
  525. p.P(`t.Fatalf("seed = %d, err = %v", seed, err)`)
  526. p.Out()
  527. p.P(`}`)
  528. if gogoproto.HasVerboseEqual(file.FileDescriptorProto, message.DescriptorProto) {
  529. p.P(`if err := p.VerboseEqual(msg); err != nil {`)
  530. p.In()
  531. p.P(`t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)`)
  532. p.Out()
  533. p.P(`}`)
  534. }
  535. p.P(`if !p.Equal(msg) {`)
  536. p.In()
  537. p.P(`t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)`)
  538. p.Out()
  539. p.P(`}`)
  540. p.Out()
  541. p.P(`}`)
  542. p.P()
  543. }
  544. }
  545. return used
  546. }
  547. func init() {
  548. RegisterTestPlugin(newProto)
  549. RegisterTestPlugin(newJson)
  550. RegisterTestPlugin(newText)
  551. }