/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
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 checks if both listeners
* were called. Then one listener is removed and after
* submit
method call it must not be called.
* * Test is NOT multithread compliant.
* @see com.sun.star.form.XSubmit */ public class _XSubmit extends MultiMethodTest { public static XSubmit oObj = null; public static 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 submission 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