aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2022-11-18 10:09:51 +0000
committerPJ Fanning <fanningpj@apache.org>2022-11-18 10:09:51 +0000
commita1919c33cfa8289aaec54ceb04c22c51b76dc292 (patch)
tree9814e49780dbe5f2c338030205fe327b6cfd3865
parent33c5125865c6ece03f4bcef4122f7de894304f9e (diff)
downloadpoi-a1919c33cfa8289aaec54ceb04c22c51b76dc292.tar.gz
poi-a1919c33cfa8289aaec54ceb04c22c51b76dc292.zip
[bug-66347] add read test
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1905374 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java43
-rw-r--r--src/resources/ooxml-lite-report.clazz2
-rw-r--r--tests.txt0
3 files changed, 45 insertions, 0 deletions
diff --git a/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java b/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java
new file mode 100644
index 0000000000..56fa5e20ca
--- /dev/null
+++ b/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java
@@ -0,0 +1,43 @@
+/* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+==================================================================== */
+
+package org.apache.poi.xwpf.usermodel;
+
+import org.apache.poi.xslf.usermodel.XSLFColor;
+import org.apache.poi.xwpf.XWPFTestDataSamples;
+import org.junit.jupiter.api.Test;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTColor;
+
+import java.awt.*;
+import java.io.IOException;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+public final class TestXWPFTheme {
+
+ @Test
+ void testRead() throws IOException {
+ XWPFDocument docx = XWPFTestDataSamples.openSampleDocument("sample.docx");
+ XWPFTheme theme = docx.getTheme();
+ assertEquals("Office Theme", theme.getName());
+ assertEquals("Cambria", theme.getMajorFont());
+ assertEquals("Calibri", theme.getMinorFont());
+ CTColor accent1 = theme.getCTColor("accent1");
+ XSLFColor color = new XSLFColor(accent1, null, null, null);
+ assertEquals(new Color(79, 129, 189), color.getColor());
+ }
+}
diff --git a/src/resources/ooxml-lite-report.clazz b/src/resources/ooxml-lite-report.clazz
index a91b42861d..9321d71703 100644
--- a/src/resources/ooxml-lite-report.clazz
+++ b/src/resources/ooxml-lite-report.clazz
@@ -2521,3 +2521,5 @@ org/openxmlformats/schemas/wordprocessingml/x2006/main/impl/CTSdtRowImpl
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTSdtRow
org/openxmlformats/schemas/wordprocessingml/x2006/main/impl/CTSdtContentRowImpl
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTSdtContentRow
+org/openxmlformats/schemas/drawingml/x2006/main/CTComplementTransform
+org/openxmlformats/schemas/drawingml/x2006/main/CTPositiveFixedAngle
diff --git a/tests.txt b/tests.txt
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/tests.txt