2023-09-26 12:43:55 -07:00
|
|
|
# pyright: reportPrivateUsage=false
|
|
|
|
|
|
|
|
"""Test suite for `unstructured.partition.pptx` module."""
|
|
|
|
|
2023-01-23 12:03:09 -05:00
|
|
|
import os
|
|
|
|
import pathlib
|
2023-09-26 12:43:55 -07:00
|
|
|
from typing import Iterator, Sequence, cast
|
2023-01-23 12:03:09 -05:00
|
|
|
|
2023-02-03 17:12:33 -05:00
|
|
|
import pptx
|
2023-02-27 17:30:54 +01:00
|
|
|
import pytest
|
2023-09-26 12:43:55 -07:00
|
|
|
from pptx.util import Inches
|
|
|
|
from pytest_mock import MockFixture
|
2023-02-03 17:12:33 -05:00
|
|
|
|
2023-09-11 16:00:14 -05:00
|
|
|
from unstructured.chunking.title import chunk_by_title
|
2023-02-27 17:30:54 +01:00
|
|
|
from unstructured.documents.elements import (
|
|
|
|
ListItem,
|
|
|
|
NarrativeText,
|
|
|
|
PageBreak,
|
|
|
|
Text,
|
|
|
|
Title,
|
|
|
|
)
|
2023-08-29 16:59:26 -04:00
|
|
|
from unstructured.partition.json import partition_json
|
2023-09-26 12:43:55 -07:00
|
|
|
from unstructured.partition.pptx import _PptxPartitioner, partition_pptx
|
2023-08-29 16:59:26 -04:00
|
|
|
from unstructured.staging.base import elements_to_json
|
2023-01-23 12:03:09 -05:00
|
|
|
|
|
|
|
DIRECTORY = pathlib.Path(__file__).parent.resolve()
|
2023-08-19 12:56:13 -04:00
|
|
|
EXAMPLE_DOCS_DIRECTORY = os.path.join(DIRECTORY, "..", "..", "..", "example-docs")
|
2023-01-23 12:03:09 -05:00
|
|
|
|
|
|
|
EXPECTED_PPTX_OUTPUT = [
|
|
|
|
Title(text="Adding a Bullet Slide"),
|
|
|
|
ListItem(text="Find the bullet slide layout"),
|
|
|
|
ListItem(text="Use _TextFrame.text for first bullet"),
|
|
|
|
ListItem(text="Use _TextFrame.add_paragraph() for subsequent bullets"),
|
|
|
|
NarrativeText(text="Here is a lot of text!"),
|
|
|
|
NarrativeText(text="Here is some text in a text box!"),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def get_test_file_path(filename: str) -> str:
|
|
|
|
return str(pathlib.Path(__file__).parent / "test_files" / filename)
|
|
|
|
|
|
|
|
|
|
|
|
# == DescribePptxPartitionerSourceFileBehaviors ==================================================
|
|
|
|
|
|
|
|
|
2023-01-23 12:03:09 -05:00
|
|
|
def test_partition_pptx_from_filename():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
elements = partition_pptx(filename=filename)
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "fake-power-point.pptx"
|
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_from_filename_with_metadata_filename():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
elements = partition_pptx(filename=filename, metadata_filename="test")
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "test"
|
2023-05-09 21:39:07 -07:00
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_with_spooled_file():
|
2023-09-26 12:43:55 -07:00
|
|
|
"""The `partition_pptx() function can handle a `SpooledTemporaryFile.
|
|
|
|
|
|
|
|
Including one that does not have its read-pointer set to the start.
|
|
|
|
"""
|
2023-05-09 21:39:07 -07:00
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
from tempfile import SpooledTemporaryFile
|
|
|
|
|
|
|
|
with open(filename, "rb") as test_file:
|
|
|
|
spooled_temp_file = SpooledTemporaryFile()
|
|
|
|
spooled_temp_file.write(test_file.read())
|
|
|
|
elements = partition_pptx(file=spooled_temp_file)
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename is None
|
2023-01-23 12:03:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_from_file():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
elements = partition_pptx(file=f)
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_from_file_with_metadata_filename():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
elements = partition_pptx(file=f, metadata_filename="test")
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "test"
|
2023-01-23 12:03:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_raises_with_both_specified():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
2023-02-27 17:30:54 +01:00
|
|
|
with open(filename, "rb") as f, pytest.raises(ValueError):
|
|
|
|
partition_pptx(filename=filename, file=f)
|
2023-01-23 12:03:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_raises_with_neither():
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
partition_pptx()
|
2023-02-03 17:12:33 -05:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
class DescribePptxPartitionerShapeOrderingBehaviors:
|
|
|
|
"""Tests related to shape inclusion and ordering based on position."""
|
|
|
|
|
|
|
|
def it_recurses_into_group_shapes(self):
|
|
|
|
elements = cast(
|
|
|
|
Iterator[Text],
|
|
|
|
_PptxPartitioner(
|
2023-09-27 11:32:46 -04:00
|
|
|
get_test_file_path("group-shapes-nested.pptx"),
|
2023-09-26 12:43:55 -07:00
|
|
|
)._iter_presentation_elements(),
|
|
|
|
)
|
|
|
|
|
|
|
|
assert [e.text for e in elements] == ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J"]
|
|
|
|
|
|
|
|
|
|
|
|
# == DescribePptxPartitionerPageBreakBehaviors ===================================================
|
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_adds_page_breaks(tmp_path: pathlib.Path):
|
|
|
|
filename = str(tmp_path / "test-page-breaks.pptx")
|
2023-02-08 10:11:15 -05:00
|
|
|
|
|
|
|
presentation = pptx.Presentation()
|
|
|
|
blank_slide_layout = presentation.slide_layouts[6]
|
|
|
|
|
|
|
|
slide = presentation.slides.add_slide(blank_slide_layout)
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(2)
|
2023-02-08 10:11:15 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is the first slide."
|
|
|
|
|
|
|
|
slide = presentation.slides.add_slide(blank_slide_layout)
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(2)
|
2023-02-08 10:11:15 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is the second slide."
|
|
|
|
|
|
|
|
presentation.save(filename)
|
|
|
|
|
|
|
|
elements = partition_pptx(filename=filename)
|
|
|
|
|
|
|
|
assert elements == [
|
|
|
|
NarrativeText(text="This is the first slide."),
|
2023-06-28 23:14:05 -04:00
|
|
|
PageBreak(text=""),
|
2023-02-08 10:11:15 -05:00
|
|
|
NarrativeText(text="This is the second slide."),
|
|
|
|
]
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "test-page-breaks.pptx"
|
2023-02-08 10:11:15 -05:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_page_breaks_toggle_off(tmp_path: pathlib.Path):
|
|
|
|
filename = str(tmp_path / "test-page-breaks.pptx")
|
2023-02-08 10:11:15 -05:00
|
|
|
|
|
|
|
presentation = pptx.Presentation()
|
|
|
|
blank_slide_layout = presentation.slide_layouts[6]
|
|
|
|
|
|
|
|
slide = presentation.slides.add_slide(blank_slide_layout)
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(2)
|
2023-02-08 10:11:15 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is the first slide."
|
|
|
|
|
|
|
|
slide = presentation.slides.add_slide(blank_slide_layout)
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(2)
|
2023-02-08 10:11:15 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is the second slide."
|
|
|
|
|
|
|
|
presentation.save(filename)
|
|
|
|
|
|
|
|
elements = partition_pptx(filename=filename, include_page_breaks=False)
|
|
|
|
|
|
|
|
assert elements == [
|
|
|
|
NarrativeText(text="This is the first slide."),
|
|
|
|
NarrativeText(text="This is the second slide."),
|
|
|
|
]
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "test-page-breaks.pptx"
|
2023-02-08 10:11:15 -05:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_many_pages():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-many-pages.pptx")
|
|
|
|
elements = partition_pptx(filename=filename)
|
|
|
|
|
|
|
|
# The page_number of PageBreak is None
|
|
|
|
assert set(filter(None, (elt.metadata.page_number for elt in elements))) == {1, 2}
|
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "fake-power-point-many-pages.pptx"
|
|
|
|
|
|
|
|
|
|
|
|
# == DescribePptxPartitionerMiscellaneousBehaviors ===============================================
|
2023-02-03 17:12:33 -05:00
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
|
|
|
|
def test_partition_pptx_orders_elements(tmp_path: pathlib.Path):
|
|
|
|
filename = str(tmp_path / "test-ordering.pptx")
|
2023-02-03 17:12:33 -05:00
|
|
|
presentation = pptx.Presentation()
|
|
|
|
blank_slide_layout = presentation.slide_layouts[6]
|
|
|
|
slide = presentation.slides.add_slide(blank_slide_layout)
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(2)
|
2023-02-03 17:12:33 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is lower and should come second"
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(1)
|
|
|
|
left = top = Inches(-10)
|
2023-02-03 17:12:33 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is off the page and shouldn't appear"
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(2)
|
2023-02-03 17:12:33 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = ""
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
left = top = width = height = Inches(1)
|
2023-02-03 17:12:33 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "This is higher and should come first"
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
top = width = height = Inches(1)
|
|
|
|
left = Inches(0.5)
|
2023-02-03 17:12:33 -05:00
|
|
|
txBox = slide.shapes.add_textbox(left, top, width, height)
|
|
|
|
tf = txBox.text_frame
|
|
|
|
tf.text = "-------------TOP-------------"
|
|
|
|
|
|
|
|
presentation.save(filename)
|
|
|
|
|
|
|
|
elements = partition_pptx(filename=filename)
|
|
|
|
assert elements == [
|
|
|
|
Text("-------------TOP-------------"),
|
|
|
|
NarrativeText("This is higher and should come first"),
|
|
|
|
NarrativeText("This is lower and should come second"),
|
|
|
|
]
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "test-ordering.pptx"
|
2023-05-31 13:26:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
EXPECTED_HTML_TABLE = """<table>
|
|
|
|
<thead>
|
|
|
|
<tr><th>Column 1 </th><th>Column 2 </th><th>Column 3 </th></tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr><td>Red </td><td>Green </td><td>Blue </td></tr>
|
|
|
|
<tr><td>Purple </td><td>Orange </td><td>Yellow </td></tr>
|
|
|
|
<tr><td>Tangerine </td><td>Pink </td><td>Aqua </td></tr>
|
|
|
|
</tbody>
|
|
|
|
</table>"""
|
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_grabs_tables():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-table.pptx")
|
|
|
|
elements = cast(Sequence[Text], partition_pptx(filename=filename))
|
2023-05-31 13:26:32 -05:00
|
|
|
|
|
|
|
assert elements[1].text.startswith("Column 1")
|
|
|
|
assert elements[1].text.strip().endswith("Aqua")
|
|
|
|
assert elements[1].metadata.text_as_html == EXPECTED_HTML_TABLE
|
2023-07-05 15:02:22 -05:00
|
|
|
assert elements[1].metadata.filename == "fake-power-point-table.pptx"
|
2023-06-02 16:22:43 +03:00
|
|
|
|
|
|
|
|
2023-06-15 12:52:44 -07:00
|
|
|
def test_partition_pptx_malformed():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-malformed.pptx")
|
2023-09-26 12:43:55 -07:00
|
|
|
elements = cast(Sequence[Text], partition_pptx(filename=filename))
|
2023-06-15 12:52:44 -07:00
|
|
|
|
|
|
|
assert elements[0].text == "Problem Date Placeholder"
|
|
|
|
assert elements[1].text == "Test Slide"
|
2023-07-05 15:02:22 -05:00
|
|
|
for element in elements:
|
|
|
|
assert element.metadata.filename == "fake-power-point-malformed.pptx"
|
2023-06-30 09:44:46 -05:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
# == DescribePptxPartitionerMetadataBehaviors ====================================================
|
|
|
|
|
|
|
|
|
2023-06-30 09:44:46 -05:00
|
|
|
def test_partition_pptx_from_filename_exclude_metadata():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
elements = partition_pptx(filename=filename, include_metadata=False)
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_from_file_exclude_metadata():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
elements = partition_pptx(file=f, include_metadata=False)
|
|
|
|
assert elements == EXPECTED_PPTX_OUTPUT
|
2023-07-26 15:10:14 -04:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_metadata_date(mocker: MockFixture):
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-malformed.pptx")
|
2023-07-26 15:10:14 -04:00
|
|
|
mocked_last_modification_date = "2029-07-05T09:24:28"
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
"unstructured.partition.pptx.get_last_modified_date",
|
|
|
|
return_value=mocked_last_modification_date,
|
|
|
|
)
|
|
|
|
|
|
|
|
elements = partition_pptx(
|
|
|
|
filename=filename,
|
|
|
|
)
|
|
|
|
|
2023-07-31 19:55:43 -07:00
|
|
|
assert elements[0].metadata.last_modified == mocked_last_modification_date
|
2023-07-26 15:10:14 -04:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_with_custom_metadata_date(mocker: MockFixture):
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-malformed.pptx")
|
2023-07-26 15:10:14 -04:00
|
|
|
mocked_last_modification_date = "2029-07-05T09:24:28"
|
|
|
|
expected_last_modification_date = "2020-07-05T09:24:28"
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
"unstructured.partition.pptx.get_last_modified_date",
|
|
|
|
return_value=mocked_last_modification_date,
|
|
|
|
)
|
|
|
|
|
|
|
|
elements = partition_pptx(
|
|
|
|
filename=filename,
|
2023-07-31 19:55:43 -07:00
|
|
|
metadata_last_modified=expected_last_modification_date,
|
2023-07-26 15:10:14 -04:00
|
|
|
)
|
|
|
|
|
2023-07-31 19:55:43 -07:00
|
|
|
assert elements[0].metadata.last_modified == expected_last_modification_date
|
2023-07-26 15:10:14 -04:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_from_file_metadata_date(mocker: MockFixture):
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-malformed.pptx")
|
2023-07-26 15:10:14 -04:00
|
|
|
mocked_last_modification_date = "2029-07-05T09:24:28"
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
"unstructured.partition.pptx.get_last_modified_date_from_file",
|
|
|
|
return_value=mocked_last_modification_date,
|
|
|
|
)
|
|
|
|
|
|
|
|
with open(filename, "rb") as f:
|
|
|
|
elements = partition_pptx(
|
|
|
|
file=f,
|
|
|
|
)
|
|
|
|
|
2023-07-31 19:55:43 -07:00
|
|
|
assert elements[0].metadata.last_modified == mocked_last_modification_date
|
2023-07-26 15:10:14 -04:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
def test_partition_pptx_from_file_with_custom_metadata_date(mocker: MockFixture):
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point-malformed.pptx")
|
2023-07-26 15:10:14 -04:00
|
|
|
mocked_last_modification_date = "2029-07-05T09:24:28"
|
|
|
|
expected_last_modification_date = "2020-07-05T09:24:28"
|
|
|
|
|
|
|
|
mocker.patch(
|
|
|
|
"unstructured.partition.pptx.get_last_modified_date_from_file",
|
|
|
|
return_value=mocked_last_modification_date,
|
|
|
|
)
|
|
|
|
|
|
|
|
with open(filename, "rb") as f:
|
2023-07-31 19:55:43 -07:00
|
|
|
elements = partition_pptx(file=f, metadata_last_modified=expected_last_modification_date)
|
2023-07-26 15:10:14 -04:00
|
|
|
|
2023-07-31 19:55:43 -07:00
|
|
|
assert elements[0].metadata.last_modified == expected_last_modification_date
|
2023-08-29 16:59:26 -04:00
|
|
|
|
|
|
|
|
2023-09-26 12:43:55 -07:00
|
|
|
# == DescribePptxPartitionerDownstreamBehaviors ==================================================
|
|
|
|
|
|
|
|
|
|
|
|
def test_partition_pptx_with_json():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "fake-power-point.pptx")
|
2023-08-29 16:59:26 -04:00
|
|
|
elements = partition_pptx(filename=filename)
|
|
|
|
test_elements = partition_json(text=elements_to_json(elements))
|
|
|
|
|
|
|
|
assert len(elements) == len(test_elements)
|
|
|
|
assert elements[0].metadata.filename == test_elements[0].metadata.filename
|
|
|
|
|
|
|
|
for i in range(len(elements)):
|
|
|
|
assert elements[i] == test_elements[i]
|
2023-09-11 16:00:14 -05:00
|
|
|
|
|
|
|
|
2023-10-03 09:40:34 -07:00
|
|
|
def test_add_chunking_strategy_by_title_on_partition_pptx():
|
|
|
|
filename = os.path.join(EXAMPLE_DOCS_DIRECTORY, "science-exploration-1p.pptx")
|
2023-09-11 16:00:14 -05:00
|
|
|
elements = partition_pptx(filename=filename)
|
|
|
|
chunk_elements = partition_pptx(filename, chunking_strategy="by_title")
|
|
|
|
chunks = chunk_by_title(elements)
|
|
|
|
assert chunk_elements != elements
|
|
|
|
assert chunk_elements == chunks
|