1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
from pathlib import Path
from fpdf import FPDF, FPDFException
from test.conftest import assert_pdf_equal, assert_same_file
import pytest
HERE = Path(__file__).resolve().parent
TABLE_DATA = (
("First name", "Last name", "Age", "City"),
("Jules", "Smith", "34", "San Juan"),
("Mary", "Ramos", "45", "Orlando"),
("Carlson", "Banks", "19", "Los Angeles"),
("Lucas", "Cimon", "31", "Angers"),
)
def test_multi_cell_table_unbreakable(tmp_path): # issue 111
pdf = FPDF()
pdf.add_page()
pdf.set_font("Times", size=16)
line_height = pdf.font_size * 2
col_width = pdf.epw / 4 # distribute content evenly
for i in range(5): # repeat table 5 times
with pdf.unbreakable() as doc:
for row in TABLE_DATA:
for datum in row:
doc.multi_cell(
col_width,
line_height,
f"{datum} ({i})",
border=1,
new_x="RIGHT",
new_y="TOP",
)
doc.ln(line_height)
pdf.ln(line_height * 2)
assert_pdf_equal(pdf, HERE / "multi_cell_table_unbreakable.pdf", tmp_path)
def test_multi_cell_table_unbreakable2(tmp_path): # issue 120 - 2nd snippet
table = {
"A": "test_lin_o_00000_001",
"B": "3",
"C": "4",
"D": "test_lin_o_00000",
"E": "7",
"F": "test_lin_o_00000",
"G": "test_lin",
"H": "test_lin",
}
pdf = FPDF()
pdf.add_page()
pdf.set_margins(20, 20)
pdf.set_font("Times", style="B", size=7)
line_height = pdf.font_size * 3
col_width = pdf.epw / 8
for header in table:
pdf.multi_cell(
col_width,
line_height,
header,
border=1,
new_x="RIGHT",
new_y="TOP",
max_line_height=pdf.font_size,
align="C",
)
pdf.ln(line_height)
pdf.set_font(style="")
line_height = pdf.font_size * 10
col_width = pdf.epw / 8
for _ in range(11):
with pdf.unbreakable():
for cell in table.values():
pdf.multi_cell(
col_width,
line_height,
cell,
border=1,
new_x="RIGHT",
new_y="TOP",
max_line_height=pdf.font_size,
align="C",
)
pdf.ln(line_height)
assert_pdf_equal(pdf, HERE / "multi_cell_table_unbreakable2.pdf", tmp_path)
def test_multi_cell_table_unbreakable_with_split_only(tmp_path): # issue 359
expected_warn = 'The parameter "split_only" is deprecated.'
pdf = FPDF("P", "mm", "A4")
pdf.set_auto_page_break(True, 20)
pdf.set_font("Helvetica", size=10)
pdf.add_page()
data = (
("First name", "Last name", "Age", "City"),
("Jules", "Smith", "34", "San Juan"),
("Mary", "Ramos", "45", "Orlando"),
("Carlson", "Banks", "19", "Los Angeles"),
("Lucas", "Cimon", "31", "Angers"),
("Jules", "Smith", "34", "San Juan"),
("Mary", "Ramos", "45", "Orlando"),
("Carlson", "Banks", "19", "Los Angeles"),
("Lucas", "Cimon", "31", "Angers"),
("Jules", "Smith", "34", "San Juan"),
("Mary", "Ramos", "45", "Orlando"),
("Carlson", "Banks", "19", "Los Angeles"),
("Lucas", "Cimon", "31", "Angers"),
)
l_height = pdf.font_size * 1.2
cell_width = pdf.epw / 4
no_of_lines_list = []
for row in data:
max_no_of_lines_in_cell = 1
for cell in row:
with pytest.warns(DeprecationWarning, match=expected_warn) as record:
result = pdf.multi_cell(
cell_width,
l_height,
cell,
border=1,
align="L",
new_x="RIGHT",
new_y="TOP",
max_line_height=l_height,
split_only=True,
)
for r in record:
if r.category == DeprecationWarning:
assert_same_file(r.filename, __file__)
no_of_lines_in_cell = len(result)
if no_of_lines_in_cell > max_no_of_lines_in_cell:
max_no_of_lines_in_cell = no_of_lines_in_cell
no_of_lines_list.append(max_no_of_lines_in_cell)
for j, row in enumerate(data):
cell_height = no_of_lines_list[j] * l_height
for cell in row:
if j == 0:
pdf.multi_cell(
cell_width,
cell_height,
"**" + cell + "**",
border=1,
fill=False,
align="L",
new_x="RIGHT",
new_y="TOP",
max_line_height=l_height,
markdown=False,
)
else:
pdf.multi_cell(
cell_width,
cell_height,
cell,
border=1,
align="L",
new_x="RIGHT",
new_y="TOP",
max_line_height=l_height,
)
pdf.ln(cell_height)
pdf.ln()
with pytest.warns(DeprecationWarning, match=expected_warn) as record:
with pdf.unbreakable() as doc:
for _ in range(4):
for row in data:
max_no_of_lines_in_cell = 1
for cell in row:
result = doc.multi_cell(
cell_width,
l_height,
cell,
border=1,
align="L",
new_x="RIGHT",
new_y="TOP",
max_line_height=l_height,
split_only=True,
)
no_of_lines_in_cell = len(result)
if no_of_lines_in_cell > max_no_of_lines_in_cell:
max_no_of_lines_in_cell = no_of_lines_in_cell
no_of_lines_list.append(max_no_of_lines_in_cell)
for j, row in enumerate(data):
cell_height = no_of_lines_list[j] * l_height
for cell in row:
if j == 0:
doc.multi_cell(
cell_width,
cell_height,
"**" + cell + "**",
border=1,
fill=False,
align="L",
new_x="RIGHT",
new_y="TOP",
max_line_height=l_height,
markdown=False,
)
else:
doc.multi_cell(
cell_width,
cell_height,
cell,
border=1,
align="L",
new_x="RIGHT",
new_y="TOP",
max_line_height=l_height,
)
doc.ln(cell_height)
for r in record:
if r.category == DeprecationWarning:
assert_same_file(r.filename, __file__)
assert_pdf_equal(
pdf, HERE / "multi_cell_table_unbreakable_with_split_only.pdf", tmp_path
)
def test_unbreakable_with_local_context(): # discussion 557
pdf = FPDF()
pdf.set_font("Helvetica", size=10)
pdf.add_page()
pdf.set_y(270) # Set position so that adding a cell triggers a page break
with pytest.raises(FPDFException):
with pdf.unbreakable() as doc:
with doc.local_context(fill_opacity=0.3):
doc.cell(doc.epw, 10, "Cell text content", border=1, fill=True)
pdf.set_y(270) # Set position so that adding a cell triggers a page break
with pytest.raises(FPDFException):
with pdf.unbreakable() as doc:
with doc.local_context(text_color=(255, 0, 0)):
doc.cell(doc.epw, 10, "Cell text content", border=1)
def test_unbreakable_with_get_y(): # discussion 557
pdf = FPDF()
pdf.set_font("Helvetica", size=10)
pdf.add_page()
pdf.set_y(270) # Set position so that adding a cell triggers a page break
with pytest.raises(FPDFException):
with pdf.unbreakable() as doc:
doc.cell(doc.epw, 10, f"doc.get_y(): {doc.get_y()}", border=1)
|