-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
License: MIT Signed-off-by: Jakub Sztandera <[email protected]>
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
package set | ||
|
||
import ( | ||
"testing" | ||
|
||
bu "github.com/ipfs/go-ipfs/blocks/blocksutil" | ||
k "github.com/ipfs/go-ipfs/blocks/key" | ||
) | ||
|
||
func exampleKeys() []k.Key { | ||
res := make([]k.Key, 1<<8) | ||
gen := bu.NewBlockGenerator() | ||
for i := uint64(0); i < 1<<8; i++ { | ||
res[i] = gen.Next().Key() | ||
} | ||
return res | ||
} | ||
func checkSet(set BlockSet, keySlice []k.Key, t *testing.T) { | ||
for i, key := range keySlice { | ||
if i&(1<<2) == 0 { | ||
if set.HasKey(key) == false { | ||
t.Error("key should be in the set") | ||
} | ||
} else if i&(1<<1) == 0 { | ||
if set.HasKey(key) == true { | ||
t.Error("key shouldn't be in the set") | ||
} | ||
} else if i&(1<<0) == 0 { | ||
if set.HasKey(key) == false { | ||
t.Error("key should be in the set") | ||
} | ||
} | ||
} | ||
} | ||
|
||
func TestSetWorks(t *testing.T) { | ||
set := NewSimpleBlockSet() | ||
keys := exampleKeys() | ||
|
||
for i, key := range keys { | ||
if i&(1<<0) == 0 { | ||
set.AddBlock(key) | ||
} | ||
} | ||
for i, key := range keys { | ||
if i&(1<<1) == 0 { | ||
set.RemoveBlock(key) | ||
} | ||
} | ||
for i, key := range keys { | ||
if (i)&(1<<2) == 0 { | ||
set.AddBlock(key) | ||
} | ||
} | ||
|
||
checkSet(set, keys, t) | ||
addedKeys := set.GetKeys() | ||
|
||
newSet := SimpleSetFromKeys(addedKeys) | ||
// same check works on a new set | ||
checkSet(newSet, keys, t) | ||
|
||
bloom := set.GetBloomFilter() | ||
|
||
for _, key := range addedKeys { | ||
if bloom.Find([]byte(key)) == false { | ||
t.Error("bloom doesn't contain expected key") | ||
} | ||
} | ||
|
||
} |