Author: fanningpj
Date: Fri Nov 18 10:09:51 2022
New Revision: 1905374
URL: http://svn.apache.org/viewvc?rev=1905374&view=rev
Log:
[bug-66347] add read test
Added:
poi/trunk/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java
poi/trunk/tests.txt
Modified:
poi/trunk/src/resources/ooxml-lite-report.clazz
Added:
poi/trunk/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java
URL:
http://svn.apache.org/viewvc/poi/trunk/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java?rev=1905374&view=auto
==============================================================================
---
poi/trunk/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java
(added)
+++
poi/trunk/poi-ooxml/src/test/java/org/apache/poi/xwpf/usermodel/TestXWPFTheme.java
Fri Nov 18 10:09:51 2022
@@ -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());
+ }
+}
Modified: poi/trunk/src/resources/ooxml-lite-report.clazz
URL:
http://svn.apache.org/viewvc/poi/trunk/src/resources/ooxml-lite-report.clazz?rev=1905374&r1=1905373&r2=1905374&view=diff
==============================================================================
--- poi/trunk/src/resources/ooxml-lite-report.clazz (original)
+++ poi/trunk/src/resources/ooxml-lite-report.clazz Fri Nov 18 10:09:51 2022
@@ -2521,3 +2521,5 @@ org/openxmlformats/schemas/wordprocessin
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
Added: poi/trunk/tests.txt
URL: http://svn.apache.org/viewvc/poi/trunk/tests.txt?rev=1905374&view=auto
==============================================================================
(empty)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]