summaryrefslogtreecommitdiff
path: root/jurt
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2006-12-01 13:55:33 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2006-12-01 13:55:33 +0000
commit4d5727ed72739c07bde4fa2bdf2c80ed5a6fca14 (patch)
treead8176b89cf7851ead41c1f15ded1845a7f6dd83 /jurt
parentee46559eeb8b4478351c04dbcd7226b3a0693b2d (diff)
INTEGRATION: CWS sb23 (1.11.8); FILE MERGED
2006/08/18 16:28:27 sb 1.11.8.3: RESYNC: (1.11-1.12); FILE MERGED 2005/03/15 10:29:37 sb 1.11.8.2: #88601# Support for current context in Java URP. 2005/03/14 10:55:37 sb 1.11.8.1: #i35277# Further cleanup.
Diffstat (limited to 'jurt')
-rw-r--r--jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java34
1 files changed, 23 insertions, 11 deletions
diff --git a/jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java b/jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java
index afcc42766..501050680 100644
--- a/jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java
+++ b/jurt/test/com/sun/star/lib/uno/environments/remote/JobQueue_Test.java
@@ -4,9 +4,9 @@
*
* $RCSfile: JobQueue_Test.java,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 19:12:22 $
+ * last change: $Author: rt $ $Date: 2006-12-01 14:55:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -35,6 +35,7 @@
package com.sun.star.lib.uno.environments.remote;
+import com.sun.star.lib.uno.typedesc.MethodDescription;
import com.sun.star.lib.uno.typedesc.TypeDescription;
import complexlib.ComplexTestCase;
@@ -95,8 +96,9 @@ public final class JobQueue_Test extends ComplexTestCase {
// put reply job:
t._jobQueue.putJob(
new Job(null, __iReceiver,
- new TestMessage(true, __workAt_td, "oid", null, null, null,
- null)),
+ new Message(
+ null, false, "oid", __workAt_td, null, false, null,
+ false, null, null)),
null);
t.waitToTerminate();
assure("", true); // TODO! ???
@@ -160,9 +162,13 @@ public final class JobQueue_Test extends ComplexTestCase {
testSendRequests(workAt, "increment", jobQueue);
synchronized (workAt) {
jobQueue.putJob(new Job(workAt, __iReceiver,
- new TestMessage(true, __workAt_td, "oid",
- null, null, "notifyme",
- null)), null);
+ new Message(
+ null, true, "oid", __workAt_td,
+ ((MethodDescription)
+ __workAt_td.getMethodDescription(
+ "notifyme")),
+ true, null, false, null, null)),
+ null);
while (!workAt._notified) {
workAt.wait();
}
@@ -181,8 +187,12 @@ public final class JobQueue_Test extends ComplexTestCase {
synchronized (workAt) {
async_jobQueue._sync_jobQueue.putJob(
new Job(workAt, __iReceiver,
- new TestMessage(true, __workAt_td, "oid", null, null,
- "notifyme", null)), null);
+ new Message(
+ null, true, "oid", __workAt_td,
+ ((MethodDescription)
+ __workAt_td.getMethodDescription("notifyme")),
+ true, null, false, null, null)),
+ null);
while (!workAt._notified) {
workAt.wait();
}
@@ -192,8 +202,10 @@ public final class JobQueue_Test extends ComplexTestCase {
private void testSendRequests(TestWorkAt workAt, String operation,
JobQueue jobQueue) {
- IMessage iMessage = new TestMessage(true, __workAt_td, "oid", null,
- null, operation, null);
+ Message iMessage = new Message(
+ null, true, "oid", __workAt_td,
+ (MethodDescription) __workAt_td.getMethodDescription(operation),
+ true, null, false, null, null);
for (int i = 0; i < TestWorkAt.MESSAGES; ++ i) {
Thread.yield(); // force scheduling
jobQueue.putJob(new Job(workAt, __iReceiver, iMessage),