Esempio n. 1
0
def test_file_compression_biased():
    """
    Test compression of a short text file with  multiple of a given character.
    """
    file_writer: HuffmanIO = HuffmanIO()
    file_writer.compress_file("test/data/biased.txt", "test/data/result.bin")

    result: BitArray = BitArray(filename='test/data/result.bin')
    expected: BitArray = BitArray(filename='test/data/biased.bin')

    assert result == expected
Esempio n. 2
0
def test_file_compression_simple():
    """
    Test Text compression on a simple text file.
    """
    file_writer: HuffmanIO = HuffmanIO()
    file_writer.compress_file("test/data/simple.txt", "test/data/result2.bin")

    result: BitArray = BitArray(filename='test/data/result2.bin')
    expected: BitArray = BitArray(filename='test/data/simple.bin')

    assert result == expected
Esempio n. 3
0
def test_file_decompression_empty():
    """
    Test text decompression on an empty text file.
    """
    file_writer: HuffmanIO = HuffmanIO()
    file_writer.decompress_file("test/data/empty.bin", "test/data/result3.txt")

    with open("test/data/result3.bin", 'rb') as fp:
        result: bytes = fp.read()
    expected: bytes = b''

    assert result == expected
Esempio n. 4
0
def test_file_decompression_biased():
    """
    Test Text decompression on a text file with multiple of a character.
    """
    file_writer: HuffmanIO = HuffmanIO()
    file_writer.decompress_file("test/data/biased.bin", "test/data/result.txt")

    with open("test/data/result.txt") as fp:
        result: str = fp.read()

    with open("test/data/biased.txt") as fp:
        expected: str = fp.read()
    assert result == expected
Esempio n. 5
0
def test_file_decompression_simple():
    """
    Test text decompression on a simple text file.
    """
    file_writer: HuffmanIO = HuffmanIO()
    file_writer.decompress_file("test/data/simple.bin",
                                "test/data/result2.txt")

    with open("test/data/result2.txt") as fp:
        result: str = fp.read()

    with open("test/data/simple.txt") as fp:
        expected: str = fp.read()
    assert result == expected
Esempio n. 6
0
from huffman.file import HuffmanIO

stuff = HuffmanIO()
stuff.compress_file("test/data/simple.txt", "test/data/test.bin")
stuff.decompress_file("test/data/test.bin", "test/data/result.txt")