xref: /trunk/test/testuno/source/fvt/uno/sc/formula/TestFormulaDocs.java (revision 3b297b461537a449cdc46a885832873b48e62701)
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/StarBasicTab.ods", "Basic Tab Function Test"},
74                 {"uno/sc/fvt/DGET on formulas.ods", "DGET on formulas Test"},
75                 {"uno/sc/fvt/Basic Line as variable and Line Input.ods", "Basic Line as variable and Line Input Test"},
76                 {"uno/sc/fvt/comment-in-single-line-if-then-else.ods", "Basic comment after single line if statement Test"}
77         });
78     }
79 
80     @Rule
81     public Logger log = Logger.getLogger(this);
82 
83     static UnoApp unoApp = new UnoApp();
84     XComponent scComponent = null;
85 
86     /**
87      * Clean class after testing
88      *
89      * @throws Exception
90      */
91     @AfterClass
92     public static void afterClass() {
93         unoApp.close();
94     }
95 
96     @Before
97     public void setUp() throws Exception {
98         unoApp.close(); // moved here from tearDown because stopping app there causes a late screenshot
99         unoApp.start();
100     }
101 
102     public TestFormulaDocs(String filename, String type) {
103         this.filename = filename;
104         this.type = type;
105     }
106 
107     // FIXME: only needs a timeout for running tests against AOO41X due to fixes for i112383 and i117960 present in trunk
108     // haven't been backported to AOO41X yet and causes these tests to hang on an error dialog.
109     @Test(timeout = 15000)
110     public void testOneDoc() throws Exception {
111         // open the spreadsheet document
112         String sample = Testspace.prepareData(filename);
113         // enable macros
114         PropertyValue prop = new PropertyValue();
115         prop.Name = "MacroExecutionMode";
116         prop.Value = MacroExecMode.ALWAYS_EXECUTE_NO_WARN;
117         XSpreadsheetDocument scDoc = (XSpreadsheetDocument) UnoRuntime.queryInterface(
118             XSpreadsheetDocument.class, unoApp.loadDocument(sample, prop));
119         XSpreadsheet xSheet = SCUtil.getCurrentSheet( scDoc);
120 
121         // find the "TestID" and "TestOK" markers
122         int nTestIdCol = -1;
123         int nTestOkCol = -1;
124         int nTestRowStart = -1;
125         for( int y = 0; y < 8; ++y) {
126             for( int x = 0; x < 26; ++x) {
127                 XCell xCell = xSheet.getCellByPosition( x, y);
128                 XText xText = (XText)UnoRuntime.queryInterface( XText.class, xCell);
129                 String name = xText.getString();
130                 if( name.equals( "TestID")) {
131                     assertTrue( "Multiple rows with TestID marker!", nTestIdCol == -1);
132                     assertTrue( nTestRowStart == -1);
133                     nTestIdCol = x;
134                     nTestRowStart = y + 1;
135                 } else if( name.equals( "TestOK")) {
136                     assertTrue( "Multiple rows with TestOK marker!", nTestOkCol == -1);
137                     assertTrue( "TestID and TestOK marker not in same row!", nTestRowStart == y + 1);
138                     nTestOkCol = x;
139                 }
140             }
141         }
142         assertTrue( "Column \"TestID\" not found!", nTestIdCol >= 0);
143         assertTrue( "Column \"TestOK\" not found!", nTestOkCol >= 0);
144 
145         int nTestRowEnd = nTestRowStart + 100; // TODO: get the last row from the sheet
146         int nTestCount = 0;
147         int nFailCount = 0;
148         for( int y = nTestRowStart; y < nTestRowEnd; ++y) {
149             // get the test id
150             XCell xCell = xSheet.getCellByPosition( nTestIdCol, y);
151             XText xText = (XText)UnoRuntime.queryInterface( XText.class, xCell);
152             String testId = xText.getString();
153             // ignore rows without test ids
154             if( testId.length() == 0)
155                 continue;
156             ++nTestCount;
157 
158             // get and check the test result
159             xCell = xSheet.getCellByPosition( nTestOkCol, y);
160             String testOk = ((XText)UnoRuntime.queryInterface( XText.class, xCell)).getString();
161             assertTrue( "Test result must be TRUE or FALSE", testOk.equals("TRUE") || testOk.equals("FALSE"));
162             boolean bOK = testOk.equals("TRUE");
163             // mark evaluated test results
164             SCUtil.setProperties( xCell, "CellBackColor", (Integer)(bOK ? 0x00FF00 : 0xFF0000));
165             // handle failed test cases
166             if( !bOK) {
167                 ++nFailCount;
168                 log.log( Level.SEVERE, "\ttest \""+testId+" failed");
169             }
170         }
171 
172         assertTrue( (""+nFailCount+" of "+nTestCount+" tests failed for " + type), nFailCount==0);
173 
174         XModifiable modified = (XModifiable)UnoRuntime.queryInterface( XModifiable.class, scDoc);
175         modified.setModified( false);
176         SCUtil.closeFile( scDoc);
177     }
178 
179 }
180