Skip to content

Commit

Permalink
test: added chunker unit tests (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
cachho authored Aug 9, 2023
1 parent 65011a6 commit fdf5d19
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tests/chunkers/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,37 @@ def test_chunks(self):

# Additional test cases can be added to cover different scenarios

def test_big_chunksize(self):
"""
Test that if an infinitely high chunk size is used, only one chunk is returned.
"""
chunker_config = ChunkerConfig(chunk_size=9999999999, chunk_overlap=0, length_function=len)
chunker = TextChunker(config=chunker_config)
text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit."

result = chunker.create_chunks(MockLoader(), text)

documents = result["documents"]

self.assertEqual(len(documents), 1)

def test_small_chunksize(self):
"""
Test that if a chunk size of one is used, every character is a chunk.
"""
chunker_config = ChunkerConfig(chunk_size=1, chunk_overlap=0, length_function=len)
chunker = TextChunker(config=chunker_config)
# We can't test with lorem ipsum because chunks are deduped, so would be recurring characters.
text = """0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\x0b\x0c"""

result = chunker.create_chunks(MockLoader(), text)

documents = result["documents"]

print(documents)

self.assertEqual(len(documents), len(text))


class MockLoader:
def load_data(self, src):
Expand Down

0 comments on commit fdf5d19

Please sign in to comment.