Exemplo n.º 1
0
def test_bad_extension():
    length = 5
    source = Source(length)
    cache = MerkleCache(merkle, source, length)
    level = cache.level.copy()
    with pytest.raises(AssertionError):
        cache.branch_and_root(8, 0)
    # The bad extension should not destroy the cache
    assert cache.level == level
    assert cache.length == length
Exemplo n.º 2
0
def test_markle_cache_bad():
    length = 23
    source = Source(length)
    cache = MerkleCache(merkle, source, length)
    cache.branch_and_root(5, 3)
    with pytest.raises(TypeError):
        cache.branch_and_root(5.0, 3)
    with pytest.raises(TypeError):
        cache.branch_and_root(5, 3.0)
    with pytest.raises(ValueError):
        cache.branch_and_root(0, -1)
    with pytest.raises(ValueError):
        cache.branch_and_root(3, 3)
Exemplo n.º 3
0
def test_merkle_cache_truncation():
    max_length = 33
    source = Source(max_length)
    for length in range(max_length - 2, max_length + 1):
        for trunc_length in range(1, 20, 3):
            cache = MerkleCache(merkle, source, length)
            cache.truncate(trunc_length)
            assert cache.length <= trunc_length
            for cp_length in range(1, length + 1, 3):
                cp_hashes = source.hashes(0, cp_length)
                # All possible indices
                for index in range(cp_length):
                    # Compare correct answer with cache
                    branch, root = merkle.branch_and_root(cp_hashes, index)
                    branch2, root2 = cache.branch_and_root(cp_length, index)
                    assert branch == branch2
                    assert root == root2

    # Truncation is a no-op if longer
    cache = MerkleCache(merkle, source, 10)
    level = cache.level.copy()
    for length in range(10, 13):
        cache.truncate(length)
        assert cache.level == level
        assert cache.length == 10
Exemplo n.º 4
0
def time_it():
    source = Source(500000)
    import time
    cache = MerkleCache(merkle, source)
    cp_length = 492000
    cp_hashes = source.hashes(0, cp_length)
    brs2 = []
    t1 = time.time()
    for index in range(5, 400000, 500):
        brs2.append(cache.branch_and_root(cp_length, index))
    t2 = time.time()
    print(t2 - t1)
    assert False
Exemplo n.º 5
0
def test_merkle_cache_extension():
    source = Source(64)
    for length in range(14, 18):
        for cp_length in range(30, 36):
            cache = MerkleCache(merkle, source, length)
            cp_hashes = source.hashes(0, cp_length)
            # All possible indices
            for index in range(cp_length):
                # Compare correct answer with cache
                branch, root = merkle.branch_and_root(cp_hashes, index)
                branch2, root2 = cache.branch_and_root(cp_length, index)
                assert branch == branch2
                assert root == root2
Exemplo n.º 6
0
def test_merkle_cache():
    lengths = (*range(1, 18), 31, 32, 33, 57)
    source = Source(max(lengths))
    for length in lengths:
        cache = MerkleCache(merkle, source, length)
        # Simulate all possible checkpoints
        for cp_length in range(1, length + 1):
            cp_hashes = source.hashes(0, cp_length)
            # All possible indices
            for index in range(cp_length):
                # Compare correct answer with cache
                branch, root = merkle.branch_and_root(cp_hashes, index)
                branch2, root2 = cache.branch_and_root(cp_length, index)
                assert branch == branch2
                assert root == root2