1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/*
* 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 <code>com.sun.star.form.XSubmit</code>
* interface methods :
* <ul>
* <li><code> submit()</code></li>
* <li><code> addSubmitListener()</code></li>
* <li><code> removeSubmitListener()</code></li>
* </ul> <p>
*
* This test needs the following object relations :
* <ul>
* <li> <code>'XSubmit.Control'</code> <b>optional</b>
* (of type <code>com.sun.star.awt.XControl</code>):
* is used to pass as parameters to <code>submit</code>
* method. <code>null</code> is passed if the relation
* is not found.</li>
* <ul> <p>
*
* Other <b> prerequicity </b> is the object must have
* <code>TargetURL</code> property. <p>
*
* Short description: test adds two listeners, call
* <code> submit </code> method and checks if both listeners
* were called. Then one listener is removed and after
* <code> submit </code> method call it must not be called. <p>
*
* Test is <b> NOT </b> multithread compliant. <p>
* @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. <p>
* Status of this method test is defined in <code>
* submit </code> 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 <code>com.sun.star.form.HTMLForm</code>
* service.
* Then calls the <code> submit </code> method and checks
* if listener removed were not called, and other was
* called only once.<p>
*
* Has <b> OK </b> status for <code>submit</code> if
* listener was called at least ones, for
* <code>addSubmitListener</code> method if the remaining
* listener was called only once, for
* <code>removeSubmitListener</code> method if the removed
* listener was not called. <p>
*
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> removeSubmitListener </code> : to have one listener
* added and other removed.</li>
* </ul>
*/
public void _submit() {
executeMethod("removeSubmitListener()");
log.println("Testing submit() ...");
XControl cntrl = (XControl) tEnv.getObjRelation("XSubmit.Control") ;
XPropertySet xPS = UnoRuntime.queryInterface
(XPropertySet.class, oObj) ;
if (xPS != null) {
try {
xPS.setPropertyValue("TargetURL", "someserver");
} catch (com.sun.star.lang.WrappedTargetException e) {
e.printStackTrace(log);
} catch (com.sun.star.lang.IllegalArgumentException e) {
e.printStackTrace(log);
} catch (com.sun.star.beans.PropertyVetoException e) {
e.printStackTrace(log);
} catch (com.sun.star.beans.UnknownPropertyException e) {
e.printStackTrace(log);
}
} else {
log.println("!!! The tested component doesn't support XPropertySet ");
}
oObj.submit(cntrl, new MouseEvent());
waitForEventIdle();
log.println("Listener1 called " + listener1.called + " times");
log.println("Listener2 called " + listener2.called + " times");
tRes.tested("addSubmitListener()", listener2.called == 1);
tRes.tested("removeSubmitListener()", listener1.called == 0);
tRes.tested("submit()", listener2.called > 0);
oObj.removeSubmitListener(listener2);
}
/**
* Just removes one of submit listeners. <p>
* Status of this method test is defined in <code>
* submit </code> method test.
* The following method tests are to be completed successfully before :
* <ul>
* <li> <code> removeSubmitListener </code> : to have listeners added</li>
* </ul>
*/
public void _removeSubmitListener() {
requiredMethod("addSubmitListener()");
oObj.removeSubmitListener(listener1);
}
/**
* Forces environment recreation.
*/
@Override
protected void after() {
disposeEnvironment();
}
}
|