github.com/yinchengtsinghua/golang-Eos-dpos-Ethereum@v0.0.0-20190121132951-92cc4225ed8e/core/bloombits/generator_test.go (about) 1 2 //此源码被清华学神尹成大魔王专业翻译分析并修改 3 //尹成QQ77025077 4 //尹成微信18510341407 5 //尹成所在QQ群721929980 6 //尹成邮箱 yinc13@mails.tsinghua.edu.cn 7 //尹成毕业于清华大学,微软区块链领域全球最有价值专家 8 //https://mvp.microsoft.com/zh-cn/PublicProfile/4033620 9 //版权所有2017 Go Ethereum作者 10 //此文件是Go以太坊库的一部分。 11 // 12 //Go-Ethereum库是免费软件:您可以重新分发它和/或修改 13 //根据GNU发布的较低通用公共许可证的条款 14 //自由软件基金会,或者许可证的第3版,或者 15 //(由您选择)任何更高版本。 16 // 17 //Go以太坊图书馆的发行目的是希望它会有用, 18 //但没有任何保证;甚至没有 19 //适销性或特定用途的适用性。见 20 //GNU较低的通用公共许可证,了解更多详细信息。 21 // 22 //你应该收到一份GNU较低级别的公共许可证副本 23 //以及Go以太坊图书馆。如果没有,请参见<http://www.gnu.org/licenses/>。 24 25 package bloombits 26 27 import ( 28 "bytes" 29 "math/rand" 30 "testing" 31 32 "github.com/ethereum/go-ethereum/core/types" 33 ) 34 35 //测试成批的钢坯钻头是否从输入钢坯正确旋转 36 //过滤器。 37 func TestGenerator(t *testing.T) { 38 //生成输入和旋转输出 39 var input, output [types.BloomBitLength][types.BloomByteLength]byte 40 41 for i := 0; i < types.BloomBitLength; i++ { 42 for j := 0; j < types.BloomBitLength; j++ { 43 bit := byte(rand.Int() % 2) 44 45 input[i][j/8] |= bit << byte(7-j%8) 46 output[types.BloomBitLength-1-j][i/8] |= bit << byte(7-i%8) 47 } 48 } 49 //通过生成器压缩输入并验证结果 50 gen, err := NewGenerator(types.BloomBitLength) 51 if err != nil { 52 t.Fatalf("failed to create bloombit generator: %v", err) 53 } 54 for i, bloom := range input { 55 if err := gen.AddBloom(uint(i), bloom); err != nil { 56 t.Fatalf("bloom %d: failed to add: %v", i, err) 57 } 58 } 59 for i, want := range output { 60 have, err := gen.Bitset(uint(i)) 61 if err != nil { 62 t.Fatalf("output %d: failed to retrieve bits: %v", i, err) 63 } 64 if !bytes.Equal(have, want[:]) { 65 t.Errorf("output %d: bit vector mismatch have %x, want %x", i, have, want) 66 } 67 } 68 }