forked from vandeseer/easytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParagraphCellTest.java
169 lines (154 loc) · 9.76 KB
/
ParagraphCellTest.java
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
package org.vandeseer.integrationtest;
import de.redsix.pdfcompare.CompareResult;
import de.redsix.pdfcompare.PdfComparator;
import lombok.SneakyThrows;
import org.apache.pdfbox.pdmodel.font.PDType1Font;
import org.junit.Test;
import org.vandeseer.TestUtils;
import org.vandeseer.easytable.structure.Row;
import org.vandeseer.easytable.structure.Table;
import org.vandeseer.easytable.structure.cell.TextCell;
import org.vandeseer.easytable.structure.cell.paragraph.Hyperlink;
import org.vandeseer.easytable.structure.cell.paragraph.Markup;
import org.vandeseer.easytable.structure.cell.paragraph.ParagraphCell;
import org.vandeseer.easytable.structure.cell.paragraph.ParagraphCell.Paragraph;
import org.vandeseer.easytable.structure.cell.paragraph.StyledText;
import java.awt.*;
import java.io.IOException;
import static java.awt.Color.*;
import static junit.framework.TestCase.assertTrue;
import static org.apache.pdfbox.pdmodel.font.PDType1Font.*;
import static org.vandeseer.TestUtils.getActualPdfFor;
import static org.vandeseer.TestUtils.getExpectedPdfFor;
import static org.vandeseer.easytable.settings.HorizontalAlignment.*;
import static org.vandeseer.easytable.settings.VerticalAlignment.*;
public class ParagraphCellTest {
private static final String FILE_NAME = "paragraphCell.pdf";
@Test
public void testParagraphCell() throws IOException {
TestUtils.createAndSaveDocumentWithTables(FILE_NAME,
createSimpleTable(), createParagraphTable()
);
CompareResult compareResult = new PdfComparator<>(getExpectedPdfFor(FILE_NAME), getActualPdfFor(FILE_NAME)).compare();
assertTrue(compareResult.isEqual());
}
private Table createParagraphTable() {
return Table.builder()
.addColumnsOfWidth(200, 200)
.borderColor(WHITE)
.fontSize(8)
.font(HELVETICA_BOLD_OBLIQUE)
.addRow(Row.builder()
.backgroundColor(GRAY)
.textColor(WHITE)
.horizontalAlignment(CENTER)
.add(TextCell.builder().borderWidth(1).text("Markup").build())
.add(TextCell.builder().borderWidth(1).text("No Markup").build())
.build())
.addRow(Row.builder()
.backgroundColor(LIGHT_GRAY)
.add(ParagraphCell.builder()
.borderWidth(1)
.padding(8)
.lineSpacing(1.2f)
.paragraph(Paragraph.builder()
.append(Markup.builder()
.markup(
"This is using __Markup__ where you can {color:#efefef}color your text, " +
"{color:#000000}or also just *emphasize* whatever you think " +
"should be *emphasized*). You can also *{color:#efefef}combine both*" +
"{color:#000000}. Furthermore you can add links like this one " +
"that is pointing to {link[https://github.com/ralfstuckert/pdfbox-layout/wiki/Markup]}" +
"markup-information{link} and which is underlined."
)
.font(Markup.MarkupSupportedFont.TIMES)
.build())
.build())
.build())
.add(ParagraphCell.builder()
.borderWidth(1)
.padding(8)
.lineSpacing(1.2f)
.paragraph(Paragraph.builder()
.append(StyledText.builder().text("This is some text in one font.").font(HELVETICA).build())
.appendNewLine()
.append(StyledText.builder().text("But this text that introduces a link that follows is different. Here comes the link: ").font(COURIER_BOLD).fontSize(6f).build())
.append(Hyperlink.builder().text("github!").url("http://www.github.com").font(COURIER_BOLD).fontSize(6f).color(WHITE).build())
.appendNewLine(6f)
.append(StyledText.builder().text("There was the link. And now we are using the default font from the cell.").build())
.build())
.build())
.build())
.build();
}
private static Table createSimpleTable() {
return Table.builder()
.addColumnsOfWidth(120, 120, 120, 120)
.fontSize(8)
.font(HELVETICA)
.addRow(Row.builder()
.add(ParagraphCell.builder().lineSpacing(2f).borderWidth(1).paragraph(createParagraph1()).build())
.add(ParagraphCell.builder().borderWidth(1).verticalAlignment(TOP).paragraph(createParagraph2()).build())
.add(ParagraphCell.builder().borderWidth(1).verticalAlignment(MIDDLE).paragraph(createParagraph2()).build())
.add(ParagraphCell.builder().borderWidth(1).verticalAlignment(BOTTOM).paragraph(createParagraph2()).build())
.build())
.addRow(Row.builder()
.add(ParagraphCell.builder().horizontalAlignment(RIGHT).backgroundColor(GRAY).borderWidth(1).paragraph(createParagraph3()).build())
.add(ParagraphCell.builder().horizontalAlignment(LEFT).backgroundColor(LIGHT_GRAY).borderWidth(1).paragraph(createParagraph3()).build())
.add(ParagraphCell.builder().horizontalAlignment(CENTER).backgroundColor(GRAY).borderWidth(1).paragraph(createParagraph3()).build())
.add(ParagraphCell.builder().horizontalAlignment(JUSTIFY).backgroundColor(LIGHT_GRAY).borderWidth(1).paragraph(createParagraph3()).build())
.build())
.addRow(Row.builder()
.font(COURIER)
.fontSize(5)
.add(ParagraphCell.builder().font(PDType1Font.TIMES_ROMAN).horizontalAlignment(LEFT).backgroundColor(GRAY).borderWidth(1).paragraph(createParagraph4()).build())
.add(ParagraphCell.builder().horizontalAlignment(CENTER).backgroundColor(LIGHT_GRAY).borderWidth(1).paragraph(createParagraph4()).build())
.add(ParagraphCell.builder().textColor(Color.WHITE).horizontalAlignment(JUSTIFY).backgroundColor(GRAY).borderWidth(1).paragraph(createParagraph4()).build())
.add(ParagraphCell.builder().fontSize(8).horizontalAlignment(RIGHT).backgroundColor(LIGHT_GRAY).borderWidth(1).paragraph(createParagraph5()).build())
.build())
.build();
}
@SneakyThrows
private static Paragraph createParagraph1() {
return Paragraph.builder()
.append(StyledText.builder().text("Some people have an ability to write placeholder text... " +
"It's an art you're basically born with. You either have it or you don't. " +
"Look at that text! Would anyone use that? Can you imagine that, " +
"the text of your next webpage?! If Trump Ipsum weren’t my own words, " +
"perhaps I’d be dating it.").fontSize(6f).font(PDType1Font.COURIER).build())
.build();
}
@SneakyThrows
private static Paragraph createParagraph2() {
return Paragraph.builder()
.append(StyledText.builder().text("Some people have an ability to write placeholder text... " +
"\n\nIt's an art you're basically born with.").fontSize(6f).font(PDType1Font.COURIER).build())
.build();
}
@SneakyThrows
private static Paragraph createParagraph3() {
return Paragraph.builder()
.append(StyledText.builder().text("This is some ").fontSize(11f).font(PDType1Font.COURIER).build())
.append(StyledText.builder().text("simple example ").fontSize(20f).font(PDType1Font.HELVETICA_BOLD_OBLIQUE).build())
.append(StyledText.builder().text("text").fontSize(7f).font(PDType1Font.HELVETICA).build())
.append(Markup.builder().markup("This is a link to {link[http://www.pdfbox.org]}PDFBox{link}").fontSize(11f).font(Markup.MarkupSupportedFont.HELVETICA).build())
.append(Hyperlink.builder().font(HELVETICA).fontSize(18f).text("Pdfbox-Link").url("https://github.com/ralfstuckert/pdfbox-layout").build())
.build();
}
private static Paragraph createParagraph4() {
return Paragraph.builder()
.append(StyledText.builder().text("This placeholder text is gonna be HUGE.\n" +
"You have so many different things placeholder " +
"text has to be able to do, and I don't believe Lorem " +
"Ipsum has the stamina.").build())
.build();
}
private static Paragraph createParagraph5() {
return Paragraph.builder()
.append(StyledText.builder().text("This placeholder text is gonna be ").build())
.append(StyledText.builder().text("HUGE").font(COURIER_BOLD_OBLIQUE).build())
.append(StyledText.builder().text(". And there is also ").build())
.append(StyledText.builder().text("COLOR!").color(Color.RED).font(COURIER_BOLD_OBLIQUE).build())
.build();
}
}