Files
libreoffice/bridges/test/java_remote/Bug108825_Test.java

160 lines
5.4 KiB
Java
Raw Normal View History

2012-06-19 17:56:50 +01:00
/*
* 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 test.java_remote;
import com.sun.star.bridge.XInstanceProvider;
import com.sun.star.lib.uno.typeinfo.MethodTypeInfo;
import com.sun.star.lib.uno.typeinfo.TypeInfo;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XComponentContext;
import com.sun.star.uno.XInterface;
import complexlib.ComplexTestCase;
import test.lib.TestBed;
/**
* Test case for bug #108825#.
*
* <p>Bug #108825# "Java UNO Remote Bridge: Mapped-out Objects Not Held" shows
* that local objects that are mapped out via a remote bridge, but not held
* locally, might be garbage collected while there are still remote references
* to them. This test is not guaranteed to always work reliably, see comment in
* the code.</p>
*/
public final class Bug108825_Test extends ComplexTestCase {
@Override
public String getTestObjectName() {
return getClass().getName();
}
@Override
public String[] getTestMethodNames() {
return new String[] { "test" };
}
public void test() throws Exception {
TestBed t = new TestBed();
assure("test", t.execute(new Provider(t), true, Client.class, 0));
}
public static final class Client extends TestBed.Client {
public static void main(String[] args) {
new Client().execute();
}
@Override
protected boolean run(XComponentContext context) throws Throwable {
CWS-TOOLING: integrate CWS sb113 2009-09-01 sb #i76393# second attempt at properly #ifdef-ing previous HG commit d598efdbf012 2009-08-28 sb #i102469# change back <T extends XInterface> to just <T> on queryInterface, to avoid binary incompatibility (method changing its signature from (Ljava/lang/Class;Ljava/lang/Object;)Ljava/lang/Object; to (Ljava/lang/Class;Ljava/lang/Object;)Lcom/sun/star/uno/XInterface;) 2009-08-28 sb #i76393# properly #ifdef previous HG commit d598efdbf012 2009-08-27 sb #i94421# work around compiler error (based on a patch supplied by cloph) 2009-08-26 sb merged in DEV300_m56 2009-08-26 sb #i76393# on Linux, include dynamic section offset in crash report so as to be able to map "prelinked" callstacks back to original (patch by cmc) 2009-08-26 sb #i88162# remove unnecessary whitespace lines from per-locale xcu files (patch by tora) 2009-08-17 Juergen Schmidt #i104292# set context classloader after create new custom UNO loader 2009-08-17 Juergen Schmidt #i103749# integrate patch 2009-08-14 sb #i103269# cherry-picked ssh://hg@hg.services.openoffice.org/cws/sb111 -r 5124ebd5edd1 ("#i101955# changed encoding of XML file content from erroneous ISO-8859-1 to UTF-8") 2009-08-12 sb #i102469# fixed mis-applications of UnoRuntime.queryInterface (detected via the simplified UnoRuntime.queryInterface, the HG changeset 29de35fc9554) to use AnyConverter instead; changed qadevOOo's lib.MultiMethodTest.before to allow throwing arbitrary exceptions, to cater for IllegalArgumentException thrown by AnyConverter 2009-08-12 sb #i104178# drop extra libxml2-config script from libxmlsec 2009-08-10 sb #i101754# simplified osl_getProcessInfo for LINUX (patch by cmc) 2009-08-10 sb #i95018# avoid closing -1 fds (patch supplied by cmc) 2009-08-10 sb #i103585# removed (apparently unnecessary) zlib support from libxml2; in turn, removed zlib dependencies from libxmlsec, libxslt, and redland (assuming those were transitive dependencies brought in by direct dependencies on libxml2) 2009-08-10 sb #i102469# simplified UnoRuntime.queryInterface using Java 5 generics; adapted URE-related modules accordingly 2009-08-10 sb #i101213# adapted setsolar env (solenv/config/) to set PYTHONPATH (and not set PYTHONHOME) in accordance with configure env (set_soenv.in); fixed testtools/source/bridgetest/pyuno (which now should work everywhere out of the box, thanks to the fixed setsolar PYTHONPATH) 2009-08-10 sb cherry-picked ssh://hg@hg.services.openoffice.org/cws/sb111 -r ea8de6d9396b ("#i101955# work in progress for a .hgignore file, continued")
2009-09-16 14:37:52 +00:00
XTest test = UnoRuntime.queryInterface(
XTest.class, getBridge(context).getInstance("Test"));
// Send the XObject that is held on the server side amidst two
// dummies that are not held on the server side; then wait for the
// dummies to be garbage collected, hoping that the XObject, if it
// is erroneously not held on the client side, will be garbage
// collected, too. Obviously, this is not guaranteed to always work
// (the VM might chose not to garbage collect the dummies, hanging
// the test forever; or the VM might chose to garbage collect the
// dummies but not the XObject, making the test pass erroneously).
test.offer(new Dummy(), new XObject() { public void call() {} },
new Dummy());
System.out.println("Client waiting for garbage collection...");
for (;;) {
synchronized (lock) {
if (finalizedCount == 2) {
break;
}
}
test.remoteGc();
gc();
}
System.out.println("Client garbage collection done.");
test.notification();
return true;
}
private final class Dummy implements XDummy {
@Override
protected void finalize() throws Throwable {
synchronized (lock) {
++finalizedCount;
}
super.finalize();
}
}
private final Object lock = new Object();
private int finalizedCount = 0;
}
// Make it as likely as possible that the VM reclaims all garbage:
private static void gc() {
System.gc();
System.runFinalization();
byte[] garbage = new byte[1024 * 1024];
}
private static final class Provider implements XInstanceProvider {
public Provider(TestBed testBed) {
this.testBed = testBed;
}
public Object getInstance(String instanceName) {
return new XTest() {
public void offer(XDummy dummy1, XObject obj, XDummy dummy2)
{
this.obj = obj;
}
public void remoteGc() {
gc();
}
public void notification() {
obj.call();
testBed.serverDone(true);
}
private XObject obj;
};
}
private final TestBed testBed;
}
public interface XDummy extends XInterface {
TypeInfo[] UNOTYPEINFO = null;
}
public interface XObject extends XInterface {
void call();
TypeInfo[] UNOTYPEINFO = { new MethodTypeInfo("call", 0, 0) };
}
public interface XTest extends XInterface {
void offer(XDummy dummy1, XObject obj, XDummy dummy2);
void remoteGc();
void notification();
TypeInfo[] UNOTYPEINFO = { new MethodTypeInfo("offer", 0, 0),
new MethodTypeInfo("remoteGc", 1, 0),
new MethodTypeInfo("notification", 2, 0) };
}
}