forked from amazingfate/loongoffice
252 lines
9.1 KiB
Java
252 lines
9.1 KiB
Java
/*************************************************************************
|
|
*
|
|
* $RCSfile: SwXTextTable.java,v $
|
|
*
|
|
* $Revision: 1.1 $
|
|
*
|
|
* last change:$Date: 2003-01-27 18:18:23 $
|
|
*
|
|
* The Contents of this file are made available subject to the terms of
|
|
* either of the following licenses
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
*
|
|
* Sun Microsystems Inc., October, 2000
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
*
|
|
* Sun Industry Standards Source License Version 1.1
|
|
* =================================================
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
* Source License Version 1.1 (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.openoffice.org/license.html.
|
|
*
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
* See the License for the specific provisions governing your rights and
|
|
* obligations concerning the Software.
|
|
*
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
*
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
package mod._sw;
|
|
|
|
import com.sun.star.beans.XPropertySet;
|
|
import com.sun.star.table.XCell;
|
|
import com.sun.star.text.XTextDocument;
|
|
import com.sun.star.text.XTextContent;
|
|
import com.sun.star.text.XTextRange;
|
|
import com.sun.star.text.XTextTable;
|
|
import com.sun.star.uno.UnoRuntime;
|
|
import java.io.PrintWriter;
|
|
import lib.StatusException;
|
|
import lib.TestCase;
|
|
import lib.TestEnvironment;
|
|
import lib.TestParameters;
|
|
import util.SOfficeFactory;
|
|
import util.ValueComparer;
|
|
|
|
/**
|
|
* this class tests the implementation of listed interfaces
|
|
* @see com.sun.star.beans.XPropertySet
|
|
* @see com.sun.star.container.XNamed
|
|
* @see com.sun.star.lang.XComponent
|
|
* @see com.sun.star.text.TextContent
|
|
* @see com.sun.star.text.XTextContent
|
|
* @see com.sun.star.text.XTextTable
|
|
*/
|
|
public class SwXTextTable extends TestCase {
|
|
SOfficeFactory SOF;
|
|
XTextDocument xTextDoc;
|
|
|
|
protected void initialize( TestParameters tParam, PrintWriter log ) {
|
|
SOF = SOfficeFactory.getFactory( tParam.getMSF() );
|
|
|
|
try {
|
|
log.println( "creating a textdocument" );
|
|
xTextDoc = SOF.createTextDoc( null );
|
|
} catch ( com.sun.star.uno.Exception e ) {
|
|
// Some exception occures.FAILED
|
|
e.printStackTrace( log );
|
|
throw new StatusException( "Couldn�t create document", e );
|
|
}
|
|
}
|
|
|
|
protected void cleanup( TestParameters tParam, PrintWriter log ) {
|
|
log.println( " disposing xTextDoc " );
|
|
xTextDoc.dispose();
|
|
}
|
|
|
|
/**
|
|
this method creates the testenvironment
|
|
@param tParam TestParameters class which contains additional
|
|
test parameters
|
|
@param log PrintWriter class to log the test state and result
|
|
|
|
@return TestEnvironment class
|
|
|
|
@see TestParameters
|
|
@see PrintWriter
|
|
*/
|
|
protected synchronized TestEnvironment createTestEnvironment
|
|
(TestParameters tParam, PrintWriter log) {
|
|
|
|
// creation of testobject here
|
|
XTextTable oObj = null;
|
|
TestEnvironment tEnv = null;
|
|
Object instance = null;
|
|
try {
|
|
oObj = SOF.createTextTable( xTextDoc );
|
|
instance = SOF.createTextTable( xTextDoc );
|
|
}
|
|
catch( com.sun.star.uno.Exception uE ) {
|
|
uE.printStackTrace( log );
|
|
throw new StatusException("Couldn't create testobj : "
|
|
+ uE.getMessage(), uE);
|
|
}
|
|
|
|
int nRow = 6, nCol = 2;
|
|
oObj.initialize(nRow, nCol);
|
|
|
|
log.println("Creating instance...");
|
|
tEnv = new TestEnvironment( oObj );
|
|
|
|
if( SOF.getTableCollection( xTextDoc ).getCount() == 0 ) {
|
|
try {
|
|
SOF.insertTextContent(xTextDoc, oObj );
|
|
}
|
|
catch( com.sun.star.uno.Exception uE ) {
|
|
uE.printStackTrace( log );
|
|
throw new StatusException("Couldn't create TextTable : "
|
|
+ uE.getMessage(), uE);
|
|
}
|
|
}
|
|
|
|
XPropertySet props = (XPropertySet) UnoRuntime.queryInterface(
|
|
XPropertySet.class,oObj);
|
|
|
|
try {
|
|
props.setPropertyValue("ChartRowAsLabel",new Boolean(true));
|
|
props.setPropertyValue("ChartColumnAsLabel",new Boolean(true));
|
|
} catch (Exception e) {
|
|
e.printStackTrace(log);
|
|
}
|
|
//Adding relation for util.XTextTable
|
|
tEnv.addObjRelation("NROW", new Integer(nRow));
|
|
tEnv.addObjRelation("NCOL", new Integer(nCol));
|
|
|
|
//Adding ObjRelation for XCellRangeData
|
|
Object[][] newData = new Object[6][];
|
|
Object[] line = new Object[2];
|
|
line[0] = new Double(1.5);
|
|
line[1] = new Double(2.5);
|
|
newData[0] = line;
|
|
newData[1] = line;
|
|
newData[2] = line;
|
|
newData[3] = line;
|
|
newData[4] = line;
|
|
newData[5] = line;
|
|
tEnv.addObjRelation("NewData", newData);
|
|
|
|
//Adding relation for util.XSortable
|
|
final PrintWriter finalLog = log;
|
|
final XTextTable oTable = oObj;
|
|
tEnv.addObjRelation("SORTCHECKER",
|
|
new ifc.util._XSortable.XSortChecker() {
|
|
|
|
PrintWriter out = finalLog;
|
|
public void setPrintWriter(PrintWriter log) {
|
|
out = log;
|
|
}
|
|
public void prepareToSort() {
|
|
|
|
String[] values = {"4", "b", "3", "a", "23", "ab"};
|
|
for(int i = 0; i < 6; i++) {
|
|
XCell cell = oTable.getCellByName("A" + (i+1));
|
|
XTextRange textRange = (XTextRange)
|
|
UnoRuntime.queryInterface(XTextRange.class, cell);
|
|
textRange.setString(values[i]);
|
|
}
|
|
}
|
|
public boolean checkSort(boolean isSortNumbering,
|
|
boolean isSortAscending) {
|
|
|
|
out.println("Sort checking...");
|
|
boolean res = false;
|
|
String[] value = new String[6];
|
|
for(int i = 0; i < 6; i++) {
|
|
XCell cell = oTable.getCellByName("A" + (i+1));
|
|
XTextRange textRange = (XTextRange)
|
|
UnoRuntime.queryInterface(XTextRange.class, cell);
|
|
value[i] = textRange.getString();
|
|
}
|
|
if (isSortNumbering) {
|
|
if (isSortAscending) {
|
|
String[] rightVal = {"3", "4", "23"};
|
|
String[] vals = {value[3], value[4], value[5]};
|
|
res = ValueComparer.equalValue(vals, rightVal);
|
|
} else {
|
|
String[] rightVal = {"23", "4", "3"};
|
|
String[] vals = {value[0], value[1], value[2]};
|
|
res = ValueComparer.equalValue(vals, rightVal);
|
|
}
|
|
} else {
|
|
if (isSortAscending) {
|
|
String[] rightVal = {"23", "3", "4", "a", "ab", "b"};
|
|
res = ValueComparer.equalValue(value, rightVal);
|
|
} else {
|
|
String[] rightVal = {"b", "ab", "a", "4", "3", "23"};
|
|
res = ValueComparer.equalValue(value, rightVal);
|
|
}
|
|
}
|
|
|
|
if (res) {
|
|
out.println("Sorted correctly");
|
|
} else {
|
|
out.println("Sorted uncorrectly");
|
|
}
|
|
|
|
return res;
|
|
}
|
|
});
|
|
|
|
tEnv.addObjRelation("CONTENT", (XTextContent)
|
|
UnoRuntime.queryInterface(XTextContent.class,instance));
|
|
tEnv.addObjRelation("RANGE", xTextDoc.getText().createTextCursor());
|
|
|
|
|
|
return tEnv;
|
|
}
|
|
} // finish class SwXTextTable
|
|
|