/**************************************************************
*
* 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 ifc.ucb;
import lib.MultiMethodTest;
import lib.Status;
import lib.StatusException;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.task.XInteractionHandler;
import com.sun.star.ucb.XSimpleFileAccess;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.util.DateTime;
/**
* Testing com.sun.star.ucb.XSimpleFileAccess
* interface methods.
* The following predefined files needed to complete the test: *
XSimpleFileAccess/XSimpleFileAccess.txt
:
* text file of length 17 and 2000 year created .XSimpleFileAccess/XSimpleFileAccess2.txt
:
* text file for openFileReadWrite
method test.* This test needs the following object relations : *
'InteractionHandler'
* (of type XInteractionHandler
)
* instance of com.sun.star.sdb.InteractionHandler
* * Test is NOT multithread compilant.
* @see com.sun.star.ucb.XSimpleFileAccess */ public class _XSimpleFileAccess extends MultiMethodTest { public static XSimpleFileAccess oObj = null; /** * Copies XSimpleFileAccess.txt to a new file, checks * if it was successfully copied and then deletes it.
* Has OK status if after method call new copy of file * exists and no exceptions were thrown.
*/ public void _copy() { try { String copiedFile = ""; String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String dirnameTo = util.utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) ; String filename = dirname+"XSimpleFileAccess.txt"; copiedFile = dirnameTo + "XSimpleFileAccess_copy.txt"; if (oObj.exists(copiedFile)) oObj.kill(copiedFile); oObj.copy(filename,copiedFile); tRes.tested("copy()",oObj.exists(copiedFile)); oObj.kill(copiedFile); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'copy()'"); ex.printStackTrace(log); tRes.tested("copy()",false); } } //EOF copy() /** * Copies XSimpleFileAccess.txt to a new file, tries to * rename it, then checks * if it was successfully renamed and then deletes it.
* Has OK status if after method call new file * exists and no exceptions were thrown.
*/ public void _move() { try { String copiedFile = ""; String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String dirnameTo = util.utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) ; String filename = dirname+"XSimpleFileAccess.txt"; copiedFile = dirnameTo + "XSimpleFileAccess_copy.txt"; if (oObj.exists(copiedFile)) oObj.kill(copiedFile); oObj.copy(filename,copiedFile); filename = copiedFile; copiedFile = dirnameTo + "XSimpleFileAccess_move.txt"; oObj.move(filename,copiedFile); tRes.tested("move()",oObj.exists(copiedFile)); oObj.kill(copiedFile); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'move()'"); ex.printStackTrace(log); tRes.tested("move()",false); } } //EOF move() /** * Copies XSimpleFileAccess.txt to a new file, deletes it * and checks if it isn't exist.
* Has OK status if after method call new copy of file * doesn't exist and no exceptions were thrown.
*/ public void _kill() { try { String copiedFile = ""; String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String dirnameTo = util.utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) ; String filename = dirname+"XSimpleFileAccess.txt"; copiedFile = dirnameTo + "XSimpleFileAccess_copy.txt"; if (oObj.exists(copiedFile)) oObj.kill(copiedFile); oObj.copy(filename,copiedFile); oObj.kill(copiedFile); tRes.tested("kill()",!oObj.exists(copiedFile)); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'kill()'"); ex.printStackTrace(log); tRes.tested("kill()",false); } } //EOF kill() /** * Tries to check if XSimpleFileAccess is folder.
* Has OK status if the method returns true
*/
public void _isFolder() {
try {
String dirname = util.utils.getFullTestURL("XSimpleFileAccess");
tRes.tested("isFolder()",oObj.isFolder(dirname));
}
catch (com.sun.star.uno.Exception ex) {
log.println("Exception occured while testing 'isFolder()'");
ex.printStackTrace(log);
tRes.tested("isFolder()",false);
}
} //EOF isFolder()
/**
* Copies XSimpleFileAccess.txt to a new file, sets
* 'READONLY' attribute and checks it. Second clears 'READONLY'
* attribute and checks it again. The copy of file is deleted
* finally.
*
* Has OK status if in the first case method returns
* , and in the second case -
false
* and no exceptions were thrown.
* * The following method tests are to be completed successfully before : *
setReadOnly
*
* Has OK status if in the first case method returns
* , and in the second case -
false
* and no exceptions were thrown.
* * The following method tests are to be completed successfully before : *
setReadOnly
* Has OK status if folder was created and no exceptions * were thrown. */ public void _createFolder() { try { String tmpdirname = util.utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) ; String newFolder = tmpdirname+"SimpleSubFolder"; if (oObj.exists(newFolder)) oObj.kill(newFolder); oObj.createFolder(newFolder); tRes.tested("createFolder()",oObj.isFolder(newFolder)); oObj.kill(newFolder); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'createFolder()'"); ex.printStackTrace(log); tRes.tested("createFolder()",false); } } //EOF createFolder() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess.txt * file tested.
* Has OK status if the method returns 17
* and no exceptions were thrown.
*/ public void _getSize() { try { String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String filename = dirname+"XSimpleFileAccess.txt"; int fSize = oObj.getSize(filename); tRes.tested("getSize()", fSize == 17 ); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'getSize()'"); ex.printStackTrace(log); tRes.tested("getSize()",false); } } //EOF getSize() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess.txt * file tested.
* Has OK status if the method returns String
* 'application/vnd.sun.staroffice.fsys-file'
* and no exceptions were thrown.
*/ public void _getContentType() { try { String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String filename = dirname+"XSimpleFileAccess.txt"; String fType = oObj.getContentType(filename); tRes.tested("getContentType()", "application/vnd.sun.staroffice.fsys-file".equals(fType) ); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'getContentType()'"); ex.printStackTrace(log); tRes.tested("getContentType()",false); } } //EOF getContentType() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess.txt * file tested.
* Has OK status if the method returns date with * 2001 year and no exceptions were thrown.
*/ public void _getDateTimeModified() { try { String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String filename = dirname+"XSimpleFileAccess.txt"; DateTime fTime = oObj.getDateTimeModified(filename); java.io.File the_file = new java.io.File(filename); long lastModified = the_file.lastModified(); java.util.Date lastMod = new java.util.Date(lastModified); //compare the dates gained by java with those gained by this method boolean res = true; boolean partResult = (fTime.Day == lastMod.getDay()); if (!partResult) { log.println("Wrong Day"); log.println("Expected: "+lastMod.getDay()); log.println("Gained: "+fTime.Day); log.println("------------------------------"); } partResult = (fTime.Month == lastMod.getMonth()); if (!partResult) { log.println("Wrong Month"); log.println("Expected: "+lastMod.getMonth()); log.println("Gained: "+fTime.Month); log.println("------------------------------"); } partResult = (fTime.Year == lastMod.getYear()); if (!partResult) { log.println("Wrong Year"); log.println("Expected: "+lastMod.getYear()); log.println("Gained: "+fTime.Year); log.println("------------------------------"); } tRes.tested("getDateTimeModified()", res); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'getDateTimeModified()'"); ex.printStackTrace(log); tRes.tested("getDateTimeModified()",false); } } //EOF getDateTimeModified() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess * directory used.
* Has OK status if the method returns non zero length * array and no exceptions were thrown.
*/ public void _getFolderContents() { try { String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String[] cont = oObj.getFolderContents(dirname,false); tRes.tested("getFolderContents()", cont.length>0); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'getFolderContents()'"); ex.printStackTrace(log); tRes.tested("getFolderContents()",false); } } //EOF getFolderContents() /** * First it check file XSimpleFileAccess.txt for * existence, second file I_do_not_exists.txt is checked * for existence.
* Has OK status if in the first case method returns
* true
and in the second - flase
* and no exceptions were thrown.
*/ public void _exists() { try { String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String filename = dirname+"XSimpleFileAccess.txt"; String wrongname = dirname+"I_do_not_exists.txt"; tRes.tested("exists()", oObj.exists(filename) && !oObj.exists(wrongname)); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'exists()'"); ex.printStackTrace(log); tRes.tested("exists()",false); } } //EOF exists() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess.txt * file used.
* Has OK status if the method returns not
* null
value and no exceptions were thrown.
*/ public void _openFileRead() { try { String dirname = util.utils.getFullTestURL("XSimpleFileAccess"); String filename = dirname+"XSimpleFileAccess.txt"; com.sun.star.io.XInputStream iStream = oObj.openFileRead(filename); tRes.tested("openFileRead()", iStream != null); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'openFileRead()'"); ex.printStackTrace(log); tRes.tested("openFileRead()",false); } } //EOF openFileRead() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess.txt * file used.
* Has OK status if the method returns not
* null
value and no exceptions were thrown.
*/ public void _openFileWrite() { try { String tmpdirname = util.utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) ; String copiedFile = tmpdirname+"XSimpleFileAccess_openWrite.txt"; if (oObj.exists(copiedFile)) oObj.kill(copiedFile); com.sun.star.io.XOutputStream oStream = oObj.openFileWrite(copiedFile); tRes.tested("openFileWrite()", oStream != null); oStream.closeOutput(); oObj.kill(copiedFile); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'openFileWrite()'"); ex.printStackTrace(log); tRes.tested("openFileWrite()",false); } } //EOF openFileWrite() /** * Test calls the method and checks return value and that * no exceptions were thrown. XSimpleFileAccess2.txt * file used.
* Has OK status if the method returns not
* null
value and no exceptions were thrown.
*/ public void _openFileReadWrite() { try { String dirnameTo = util.utils.getOfficeTemp((XMultiServiceFactory)tParam.getMSF()) ; String copiedFile = dirnameTo + "XSimpleFileAccess2.txt" ; if (oObj.exists(copiedFile)) oObj.kill(copiedFile); com.sun.star.io.XStream aStream = oObj.openFileReadWrite(copiedFile); tRes.tested("openFileReadWrite()", aStream != null); aStream.getInputStream().closeInput(); aStream.getOutputStream().closeOutput(); oObj.kill(copiedFile); } catch (com.sun.star.uno.Exception ex) { log.println("Exception occured while testing 'openFileReadWrite()'"); ex.printStackTrace(log); tRes.tested("openFileReadWrite()",false); } } //EOF openFileReadWrite() /** * Test calls the method and checks that no exceptions were thrown. * Has OK status if no exceptions were thrown.
*/ public void _setInteractionHandler() { XInteractionHandler handler = null; Object oHandler = tEnv.getObjRelation("InteractionHandler"); if (oHandler == null) throw new StatusException (Status.failed("Reelation InteractionHandler not found")); try { handler = (XInteractionHandler)UnoRuntime.queryInterface (XInteractionHandler.class, oHandler); oObj.setInteractionHandler(handler); tRes.tested("setInteractionHandler()", true); } catch (Exception ex) { log.println("Exception occured while testing 'setInteractionHandler()'"); ex.printStackTrace(log); tRes.tested("setInteractionHandler()", false); } } //EOF setInteractionHandler() } // finish class _XSimpleFileAccess