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