xref: /trunk/test/testuno/source/fvt/uno/sc/formula/TestFormulaDocs.java (revision aa93e1fb1bbbfae99a07e8483e1c32d000bca7c3)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 package fvt.uno.sc.formula;
23 
24 import static org.junit.Assert.*;
25 
26 import org.junit.AfterClass;
27 import org.junit.Before;
28 import org.junit.Rule;
29 import org.junit.Test;
30 
31 import org.junit.runner.RunWith;
32 import org.junit.runners.Parameterized;
33 import org.junit.runners.Parameterized.Parameters;
34 
35 import java.util.Arrays;
36 import java.util.Collection;
37 
38 import org.openoffice.test.common.Testspace;
39 import org.openoffice.test.common.Logger;
40 
41 import org.openoffice.test.uno.UnoApp;
42 
43 import testlib.uno.SCUtil;
44 import static testlib.uno.TestUtil.*;
45 
46 import com.sun.star.beans.PropertyValue;
47 import com.sun.star.document.MacroExecMode;
48 import com.sun.star.lang.XComponent;
49 import com.sun.star.sheet.XSpreadsheet;
50 import com.sun.star.sheet.XSpreadsheetDocument;
51 import com.sun.star.sheet.XSpreadsheets;
52 import com.sun.star.table.XCell;
53 import com.sun.star.uno.Any;
54 import com.sun.star.text.XText;
55 import com.sun.star.uno.UnoRuntime;
56 import com.sun.star.util.XModifiable;
57 
58 import java.util.logging.Level;
59 
60 @RunWith(Parameterized.class)
61 public class TestFormulaDocs {
62 
63     private String filename;
64     private String type;
65 
66     @Parameters
67     public static Collection<Object[]> data() {
68         return Arrays.asList(new Object[][]{
69                 // test documents
70                 {"uno/sc/fvt/FormulaTest1.ods", "FormulaTest1.ods"},
71                 {"uno/sc/fvt/StarBasicYearMonthDateHourMinuteSecondTests.ods", "Basic Year Month Date Hour Minute Second Test"},
72                 {"uno/sc/fvt/StarBasicCLng.ods", "Basic Convert to Long Function Test"},
73                 {"uno/sc/fvt/DGET on formulas.ods", "DGET on formulas Test"},
74                 {"uno/sc/fvt/Basic Line as variable and Line Input.ods", "Basic Line as variable and Line Input Test"},
75                 {"uno/sc/fvt/comment-in-single-line-if-then-else.ods", "Basic comment after single line if statement Test"}
76         });
77     }
78 
79     @Rule
80     public Logger log = Logger.getLogger(this);
81 
82     static UnoApp unoApp = new UnoApp();
83     XComponent scComponent = null;
84 
85     /**
86      * Clean class after testing
87      *
88      * @throws Exception
89      */
90     @AfterClass
91     public static void afterClass() {
92         unoApp.close();
93     }
94 
95     @Before
96     public void setUp() throws Exception {
97         unoApp.close(); // moved here from tearDown because stopping app there causes a late screenshot
98         unoApp.start();
99     }
100 
101     public TestFormulaDocs(String filename, String type) {
102         this.filename = filename;
103         this.type = type;
104     }
105 
106     // FIXME: only needs a timeout for running tests against AOO41X due to fixes for i112383 and i117960 present in trunk
107     // haven't been backported to AOO41X yet and causes these tests to hang on an error dialog.
108     @Test(timeout = 15000)
109     public void testOneDoc() throws Exception {
110         // open the spreadsheet document
111         String sample = Testspace.prepareData(filename);
112         // enable macros
113         PropertyValue prop = new PropertyValue();
114         prop.Name = "MacroExecutionMode";
115         prop.Value = MacroExecMode.ALWAYS_EXECUTE_NO_WARN;
116         XSpreadsheetDocument scDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(
117             XSpreadsheetDocument.class, unoApp.loadDocument(sample, prop));
118         XSpreadsheet xSheet = SCUtil.getCurrentSheet( scDoc);
119 
120         // find the "TestID" and "TestOK" markers
121         int nTestIdCol = -1;
122         int nTestOkCol = -1;
123         int nTestRowStart = -1;
124         for( int y = 0; y < 8; ++y) {
125             for( int x = 0; x < 26; ++x) {
126                 XCell xCell = xSheet.getCellByPosition( x, y);
127                 XText xText = (XText)UnoRuntime.queryInterface( XText.class, xCell);
128                 String name = xText.getString();
129                 if( name.equals( "TestID")) {
130                     assertTrue( "Multiple rows with TestID marker!", nTestIdCol == -1);
131                     assertTrue( nTestRowStart == -1);
132                     nTestIdCol = x;
133                     nTestRowStart = y + 1;
134                 } else if( name.equals( "TestOK")) {
135                     assertTrue( "Multiple rows with TestOK marker!", nTestOkCol == -1);
136                     assertTrue( "TestID and TestOK marker not in same row!", nTestRowStart == y + 1);
137                     nTestOkCol = x;
138                 }
139             }
140         }
141         assertTrue( "Column \"TestID\" not found!", nTestIdCol >= 0);
142         assertTrue( "Column \"TestOK\" not found!", nTestOkCol >= 0);
143 
144         int nTestRowEnd = nTestRowStart + 100; // TODO: get the last row from the sheet
145         int nTestCount = 0;
146         int nFailCount = 0;
147         for( int y = nTestRowStart; y < nTestRowEnd; ++y) {
148             // get the test id
149             XCell xCell = xSheet.getCellByPosition( nTestIdCol, y);
150             XText xText = (XText)UnoRuntime.queryInterface( XText.class, xCell);
151             String testId = xText.getString();
152             // ignore rows without test ids
153             if( testId.length() == 0)
154                 continue;
155             ++nTestCount;
156 
157             // get and check the test result
158             xCell = xSheet.getCellByPosition( nTestOkCol, y);
159             String testOk = ((XText)UnoRuntime.queryInterface( XText.class, xCell)).getString();
160             assertTrue( "Test result must be TRUE or FALSE", testOk.equals("TRUE") || testOk.equals("FALSE"));
161             boolean bOK = testOk.equals("TRUE");
162             // mark evaluated test results
163             SCUtil.setProperties( xCell, "CellBackColor", (Integer)(bOK ? 0x00FF00 : 0xFF0000));
164             // handle failed test cases
165             if( !bOK) {
166                 ++nFailCount;
167                 log.log( Level.SEVERE, "\ttest \""+testId+" failed");
168             }
169         }
170 
171         assertTrue( (""+nFailCount+" of "+nTestCount+" tests failed for " + type), nFailCount==0);
172 
173         XModifiable modified = (XModifiable)UnoRuntime.queryInterface( XModifiable.class, scDoc);
174         modified.setModified( false);
175         SCUtil.closeFile( scDoc);
176     }
177 
178 }
179