Esempio n. 1
0
def test_stream_create_horcrux():
    s = split.Stream(io.BytesIO(), 2, 2)
    s.init_horcruxes()
    assert len(s.horcruxes) == 2
    s = split.Stream(io.BytesIO, 5, 3)
    s.init_horcruxes()
    assert len(s.horcruxes) == 5
    s = split.Stream(io.BytesIO(), 5, 3)
    with pytest.raises(FileNotFoundError):
        s.distribute()
Esempio n. 2
0
def test_distribute_smart_unknown_size(monkeypatch):
    infile = io.BytesIO(get_data(1024 * 1024 * 2, True))
    monkeypatch.setattr(split, 'MAX_CHUNK_SIZE', 1024 * 1024)
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    s.distribute(infile)
    assert infile.tell() == 1024**2 * 2
    infile.seek(0)
    mock_sd = mock.create_autospec(s._smart_distribute)
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    monkeypatch.setattr(s, '_smart_distribute', mock_sd)
    s.distribute(infile)
    assert mock_sd.call_count == 2
Esempio n. 3
0
def test_distribute_smart(monkeypatch):
    infile = io.BytesIO(get_data(1024 * 1024 * 2, True))
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    size = len(infile.getbuffer())
    s.distribute(infile, size)
    assert infile.tell() == size
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    infile.seek(0)
    mock_sd = mock.create_autospec(s._smart_distribute)
    monkeypatch.setattr(s, '_smart_distribute', mock_sd)
    s.distribute(infile, size)
    mock_sd.assert_called_once()
Esempio n. 4
0
def test_smart_distribute():
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    data = io.BytesIO(get_data(4096))
    block_size = split._ideal_block_size(4096, 5, 3)
    s._smart_distribute(data, block_size)
    assert_recombinable(s, range(4096 // block_size + 1), exclusive=True)
Esempio n. 5
0
def test_full_distribute():
    s = split.Stream(None, 5, 2)
    s.init_horcruxes()
    data = io.BytesIO(get_data(10))
    s._full_distribute(data)
    for h in s.horcruxes:
        h.stream.seek(0)
        h._read_next_block_id()
        assert h.read_block() == (0, data.getvalue())
Esempio n. 6
0
def test_distribute_round_robin(monkeypatch):
    infile = io.BytesIO(get_data(42))
    monkeypatch.setattr(split, 'MAX_CHUNK_SIZE', 20)
    monkeypatch.setattr(split, 'DEFAULT_BLOCK_SIZE', 20)
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    mock_rr = mock.create_autospec(s._round_robin_distribute)
    monkeypatch.setattr(s, '_round_robin_distribute', mock_rr)
    s.distribute(infile)
    assert mock_rr.call_count == 2
Esempio n. 7
0
def test_bad_smart_distribute():
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    data = io.BytesIO(get_data(4096))
    block_size = 1000
    with pytest.raises(AssertionError):
        s._smart_distribute(data, block_size)
    data = io.BytesIO(get_data(4096))
    bloc_size = 100
    with pytest.raises(StopIteration):
        s._smart_distribute(data, 100)
Esempio n. 8
0
def test_distribute_smart_then_full(monkeypatch):
    infile = io.BytesIO(get_data(1025))
    monkeypatch.setattr(split, 'MAX_CHUNK_SIZE', 1024)
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    mock_sd = mock.create_autospec(s._smart_distribute)
    mock_fd = mock.create_autospec(s._full_distribute)
    monkeypatch.setattr(s, '_smart_distribute', mock_sd)
    monkeypatch.setattr(s, '_full_distribute', mock_fd)
    s.distribute(infile)
    mock_sd.assert_called_once()
    mock_fd.assert_called_once()
Esempio n. 9
0
def make_out_streams(fin, n, k):
    s = split.Stream(fin, n, k, stream_name="My_Data.txt")
    out_streams = [io.BytesIO() for _ in range(n)]
    s.init_horcruxes(out_streams)
    s.distribute()
    return out_streams
Esempio n. 10
0
def test_distribute_no_args():
    infile = io.BytesIO(get_data(1024**2))
    s = split.Stream(infile, 5, 3, in_stream_size=1024**2)
    s.init_horcruxes()
    s.distribute()
    assert infile.tell() == 1024**2
Esempio n. 11
0
def test_round_robin():
    s = split.Stream(None, 5, 3)
    s.init_horcruxes()
    data = io.BytesIO(get_data(4096))
    s._round_robin_distribute(data, block_size=1)
    assert_recombinable(s, range(4096))