github.com/theQRL/go-zond@v0.1.1/core/bloombits/generator_test.go (about) 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 17 package bloombits 18 19 import ( 20 "bytes" 21 crand "crypto/rand" 22 "math/rand" 23 "testing" 24 25 "github.com/theQRL/go-zond/core/types" 26 ) 27 28 // Tests that batched bloom bits are correctly rotated from the input bloom 29 // filters. 30 func TestGenerator(t *testing.T) { 31 // Generate the input and the rotated output 32 var input, output [types.BloomBitLength][types.BloomByteLength]byte 33 34 for i := 0; i < types.BloomBitLength; i++ { 35 for j := 0; j < types.BloomBitLength; j++ { 36 bit := byte(rand.Int() % 2) 37 38 input[i][j/8] |= bit << byte(7-j%8) 39 output[types.BloomBitLength-1-j][i/8] |= bit << byte(7-i%8) 40 } 41 } 42 // Crunch the input through the generator and verify the result 43 gen, err := NewGenerator(types.BloomBitLength) 44 if err != nil { 45 t.Fatalf("failed to create bloombit generator: %v", err) 46 } 47 for i, bloom := range input { 48 if err := gen.AddBloom(uint(i), bloom); err != nil { 49 t.Fatalf("bloom %d: failed to add: %v", i, err) 50 } 51 } 52 for i, want := range output { 53 have, err := gen.Bitset(uint(i)) 54 if err != nil { 55 t.Fatalf("output %d: failed to retrieve bits: %v", i, err) 56 } 57 if !bytes.Equal(have, want[:]) { 58 t.Errorf("output %d: bit vector mismatch have %x, want %x", i, have, want) 59 } 60 } 61 } 62 63 func BenchmarkGenerator(b *testing.B) { 64 var input [types.BloomBitLength][types.BloomByteLength]byte 65 b.Run("empty", func(b *testing.B) { 66 b.ReportAllocs() 67 b.ResetTimer() 68 for i := 0; i < b.N; i++ { 69 // Crunch the input through the generator and verify the result 70 gen, err := NewGenerator(types.BloomBitLength) 71 if err != nil { 72 b.Fatalf("failed to create bloombit generator: %v", err) 73 } 74 for j, bloom := range &input { 75 if err := gen.AddBloom(uint(j), bloom); err != nil { 76 b.Fatalf("bloom %d: failed to add: %v", i, err) 77 } 78 } 79 } 80 }) 81 for i := 0; i < types.BloomBitLength; i++ { 82 crand.Read(input[i][:]) 83 } 84 b.Run("random", func(b *testing.B) { 85 b.ReportAllocs() 86 b.ResetTimer() 87 for i := 0; i < b.N; i++ { 88 // Crunch the input through the generator and verify the result 89 gen, err := NewGenerator(types.BloomBitLength) 90 if err != nil { 91 b.Fatalf("failed to create bloombit generator: %v", err) 92 } 93 for j, bloom := range &input { 94 if err := gen.AddBloom(uint(j), bloom); err != nil { 95 b.Fatalf("bloom %d: failed to add: %v", i, err) 96 } 97 } 98 } 99 }) 100 }