Update ooo320-m1
[ooovba.git] / testtools / com / sun / star / comp / bridge / CurrentContextChecker.java
blobae98e5cfe7847718d849909522c08facccaae0a3
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: CurrentContextChecker.java,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package com.sun.star.comp.bridge;
33 import com.sun.star.uno.Any;
34 import com.sun.star.uno.Type;
35 import com.sun.star.uno.UnoRuntime;
36 import com.sun.star.uno.XCurrentContext;
37 import test.testtools.bridgetest.XCurrentContextChecker;
39 final class CurrentContextChecker implements XCurrentContextChecker {
40 public CurrentContextChecker() {}
42 public boolean perform(
43 XCurrentContextChecker other, int setSteps, int checkSteps)
45 if (setSteps == 0) {
46 XCurrentContext old = UnoRuntime.getCurrentContext();
47 UnoRuntime.setCurrentContext(
48 new XCurrentContext() {
49 public Object getValueByName(String Name) {
50 return Name.equals(KEY)
51 ? (Object) VALUE : (Object) Any.VOID;
53 });
54 try {
55 return performCheck(other, setSteps, checkSteps);
56 } finally {
57 UnoRuntime.setCurrentContext(old);
59 } else {
60 return performCheck(other, setSteps, checkSteps);
64 private boolean performCheck(
65 XCurrentContextChecker other, int setSteps, int checkSteps)
67 // assert other != null && checkSteps >= 0;
68 if (checkSteps == 0) {
69 XCurrentContext context = UnoRuntime.getCurrentContext();
70 if (context == null) {
71 return false;
73 Any a = Any.complete(context.getValueByName(KEY));
74 return
75 a.getType().equals(Type.STRING) && a.getObject().equals(VALUE);
76 } else {
77 return other.perform(
78 this, setSteps >= 0 ? setSteps - 1 : -1, checkSteps - 1);
82 private static final String KEY = "testtools.bridgetest.Key";
83 private static final String VALUE = "good";