generator_test.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // Copyright 2017 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. package bloombits
  17. import (
  18. "bytes"
  19. "math/rand"
  20. "testing"
  21. "github.com/ethereum/go-ethereum/core/types"
  22. )
  23. // Tests that batched bloom bits are correctly rotated from the input bloom
  24. // filters.
  25. func TestGenerator(t *testing.T) {
  26. // Generate the input and the rotated output
  27. var input, output [types.BloomBitLength][types.BloomByteLength]byte
  28. for i := 0; i < types.BloomBitLength; i++ {
  29. for j := 0; j < types.BloomBitLength; j++ {
  30. bit := byte(rand.Int() % 2)
  31. input[i][j/8] |= bit << byte(7-j%8)
  32. output[types.BloomBitLength-1-j][i/8] |= bit << byte(7-i%8)
  33. }
  34. }
  35. // Crunch the input through the generator and verify the result
  36. gen, err := NewGenerator(types.BloomBitLength)
  37. if err != nil {
  38. t.Fatalf("failed to create bloombit generator: %v", err)
  39. }
  40. for i, bloom := range input {
  41. if err := gen.AddBloom(uint(i), bloom); err != nil {
  42. t.Fatalf("bloom %d: failed to add: %v", i, err)
  43. }
  44. }
  45. for i, want := range output {
  46. have, err := gen.Bitset(uint(i))
  47. if err != nil {
  48. t.Fatalf("output %d: failed to retrieve bits: %v", i, err)
  49. }
  50. if !bytes.Equal(have, want[:]) {
  51. t.Errorf("output %d: bit vector mismatch have %x, want %x", i, have, want)
  52. }
  53. }
  54. }
  55. func BenchmarkGenerator(b *testing.B) {
  56. var input [types.BloomBitLength][types.BloomByteLength]byte
  57. b.Run("empty", func(b *testing.B) {
  58. b.ReportAllocs()
  59. b.ResetTimer()
  60. for i := 0; i < b.N; i++ {
  61. // Crunch the input through the generator and verify the result
  62. gen, err := NewGenerator(types.BloomBitLength)
  63. if err != nil {
  64. b.Fatalf("failed to create bloombit generator: %v", err)
  65. }
  66. for j, bloom := range input {
  67. if err := gen.AddBloom(uint(j), bloom); err != nil {
  68. b.Fatalf("bloom %d: failed to add: %v", i, err)
  69. }
  70. }
  71. }
  72. })
  73. for i := 0; i < types.BloomBitLength; i++ {
  74. rand.Read(input[i][:])
  75. }
  76. b.Run("random", func(b *testing.B) {
  77. b.ReportAllocs()
  78. b.ResetTimer()
  79. for i := 0; i < b.N; i++ {
  80. // Crunch the input through the generator and verify the result
  81. gen, err := NewGenerator(types.BloomBitLength)
  82. if err != nil {
  83. b.Fatalf("failed to create bloombit generator: %v", err)
  84. }
  85. for j, bloom := range input {
  86. if err := gen.AddBloom(uint(j), bloom); err != nil {
  87. b.Fatalf("bloom %d: failed to add: %v", i, err)
  88. }
  89. }
  90. }
  91. })
  92. }