/**************************************************************
*
* 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.form;
import lib.MultiMethodTest;
import com.sun.star.awt.MouseEvent;
import com.sun.star.awt.XControl;
import com.sun.star.beans.XPropertySet;
import com.sun.star.form.XSubmit;
import com.sun.star.form.XSubmitListener;
import com.sun.star.lang.EventObject;
import com.sun.star.uno.UnoRuntime;
/**
* Testing com.sun.star.form.XSubmit
* interface methods :
*
submit()
addSubmitListener()
removeSubmitListener()
* * This test needs the following object relations : *
'XSubmit.Control'
optional
* (of type com.sun.star.awt.XControl
):
* is used to pass as parameters to submit
* method. null
is passed if the relation
* is not found.
*
* Other prerequicity is the object must have
* TargetURL
property.
*
* Short description : test adds two listeners, call
* submit
method and cecks if both listeners
* were called. Then one listener is removed and after
* submit
method call it must not be called.
* * Test is NOT multithread compilant.
* @see com.sun.star.form.XSubmit */ public class _XSubmit extends MultiMethodTest { public static XSubmit oObj = null; public class MySubmitListener implements XSubmitListener { public int called = 0 ; public void disposing ( EventObject oEvent ) { } public boolean approveSubmit( EventObject oEvent ) { called += 1; System.out.println("Listener called"); return true; } } MySubmitListener listener1 = new MySubmitListener(); MySubmitListener listener2 = new MySubmitListener(); /** * Just adds two submit listeners.
* Status of this method test is defined in
* submit
method test.
*/
public void _addSubmitListener() {
log.println("Testing addSubmitListener ...");
oObj.addSubmitListener( listener1 );
oObj.addSubmitListener( listener2 );
}
/**
* Before submision tries to set 'TargetURL' property
* of component to some value assuming that component
* supports com.sun.star.form.HTMLForm
* service.
* Then calls the submit
method and checks
* if listener removed were not called, and other was
* called only once.
*
* Has OK status for submit
if
* listener was called at least ones, for
* addSubmitListener
method if the remaining
* listener was called only once, for
* removeSubmitListener
method if the removed
* listener was not called.
* * The following method tests are to be completed successfully before : *
removeSubmitListener
: to have one listener
* added and other removed.
* Status of this method test is defined in
* submit
method test.
* The following method tests are to be completed successfully before :
*
removeSubmitListener
: to have listeners added
* reset
call.
*/
private void shortWait() {
try {
Thread.sleep(200) ;
} catch (InterruptedException e) {
log.println("While waiting :" + e) ;
}
}
/**
* Forces environment recreation.
*/
protected void after() {
disposeEnvironment();
}
}