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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
/*
* 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.beans;
import com.sun.star.beans.GetDirectPropertyTolerantResult;
import com.sun.star.beans.GetPropertyTolerantResult;
import com.sun.star.beans.Property;
import com.sun.star.beans.PropertyAttribute;
import com.sun.star.beans.PropertyState;
import com.sun.star.beans.SetPropertyTolerantFailed;
import com.sun.star.beans.XPropertySet;
import com.sun.star.beans.XPropertyState;
import com.sun.star.beans.XTolerantMultiPropertySet;
import com.sun.star.uno.UnoRuntime;
import java.util.ArrayList;
import java.util.Collections;
import lib.MultiMethodTest;
import lib.Status;
import lib.StatusException;
import util.ValueChanger;
import util.ValueComparer;
public class _XTolerantMultiPropertySet extends MultiMethodTest {
public XTolerantMultiPropertySet oObj;
protected String[] namesOfDirectProperties = null;
protected String[] namesOfProperties = null;
protected Object[] valuesOfProperties = null;
protected Property[] properties = null;
protected XPropertyState pState = null;
protected XPropertySet PS = null;
/*
* Queries XPropertySet from the given Component and gets XPropertySetInfo
* from it to get the PropertyNames available and their Values<br>
* Then queries XPropertyState from the given Component
* to get the direct properties<br>
* Throws a lib StatusException if the Component doesn't support XPropertySet or XPropertyState
*/
@Override
public void before() {
PS = UnoRuntime.queryInterface(XPropertySet.class,
tEnv.getTestObject());
if (PS == null) {
throw new StatusException(Status.failed(
"Component doesn't provide the needed XPropertySet"));
}
pState = UnoRuntime.queryInterface(
XPropertyState.class, tEnv.getTestObject());
if (pState == null) {
throw new StatusException(Status.failed(
"Component doesn't provide the needed XPropertyState"));
}
properties = PS.getPropertySetInfo().getProperties();
namesOfProperties = getProperties();
valuesOfProperties = getPropertyValues(namesOfProperties);
}
/*
* Calls the method getDirectPropertyValuesTolerant() and compares the resulting
* sequence with the one gained as direct values in the before() method.<br>
* Has OK state if both sequences equal.
*/
public void _getDirectPropertyValuesTolerant() {
namesOfDirectProperties = getDirectProperties(properties);
GetDirectPropertyTolerantResult[] GDPR = oObj.getDirectPropertyValuesTolerant(
namesOfProperties);
boolean res = (GDPR.length == namesOfDirectProperties.length);
if (!res) {
log.println("Found: ");
for (int i = 0; i < GDPR.length; i++) {
log.println("\t" + GDPR[i].Name);
}
log.println("Expected: ");
for (int i = 0; i < namesOfDirectProperties.length; i++) {
log.println("\t" + namesOfDirectProperties[i]);
}
} else {
for (int i = 0; i < GDPR.length; i++) {
boolean localres = GDPR[i].Name.equals(
namesOfDirectProperties[i]);
if (!localres) {
log.println("Found: ");
log.println("\t" + GDPR[i].Name);
log.println("Expected: ");
log.println("\t" + namesOfDirectProperties[i]);
}
res &= localres;
}
}
tRes.tested("getDirectPropertyValuesTolerant()", res);
}
public void _getPropertyValuesTolerant() {
requiredMethod("getDirectPropertyValuesTolerant()");
GetPropertyTolerantResult[] GPR = oObj.getPropertyValuesTolerant(
namesOfProperties);
boolean res = (GPR.length == namesOfProperties.length);
if (!res) {
log.println("Length of sequences differs");
log.println("Found: " + GPR.length);
log.println("Expected: " + namesOfProperties.length);
} else {
for (int i = 0; i < GPR.length; i++) {
boolean localres = true;
if (!(GPR[i].Value instanceof com.sun.star.uno.Any)) {
localres = ValueComparer.equalValue(GPR[i].Value,
valuesOfProperties[i]);
}
if (!localres) {
log.println("Values differ for : " +
namesOfProperties[i]);
log.println("\t" + GPR[i].Value);
log.println("Expected: ");
log.println("\t" + valuesOfProperties[i]);
}
res &= localres;
}
}
tRes.tested("getPropertyValuesTolerant()", res);
}
public void _setPropertyValuesTolerant() {
requiredMethod("getPropertyValuesTolerant()");
SetPropertyTolerantFailed[] SPTF = oObj.setPropertyValuesTolerant(namesOfProperties,
getNewValues(valuesOfProperties));
//read only properties will throw a PropertyVetoException if they are set
int failures = 0;
for (int k = 0; k < SPTF.length; k++) {
if (SPTF[k].Result == com.sun.star.beans.TolerantPropertySetResultType.PROPERTY_VETO) {
failures++;
}
}
int roProps = getCountOfReadOnlyProperties();
boolean res = (failures == roProps);
if (!res) {
log.println("Failures: " + failures);
log.println("Count of R/O properties: " + roProps);
for (int i = 0; i < SPTF.length; i++) {
if (SPTF[i].Result == com.sun.star.beans.TolerantPropertySetResultType.PROPERTY_VETO) {
failures++;
log.println("Failed for " + SPTF[i].Name);
log.println("\t Result: " + SPTF[i].Result);
}
}
} else {
for (int i = 0; i < SPTF.length; i++) {
boolean localres = true;
GetPropertyTolerantResult[] GPR = oObj.getPropertyValuesTolerant(
namesOfProperties);
if ((!(GPR[i].Value instanceof com.sun.star.uno.Any)) &&
(SPTF[i].Result == com.sun.star.beans.TolerantPropertySetResultType.SUCCESS)) {
localres = ValueComparer.equalValue(GPR[i].Value,
valuesOfProperties[i]);
}
if (!localres) {
log.println("Values differ for : " +
namesOfProperties[i]);
log.println("\t" + GPR[i].Value);
log.println("Expected: ");
log.println("\t" + valuesOfProperties[i]);
}
res &= localres;
}
}
tRes.tested("setPropertyValuesTolerant()", res);
}
/*
* This method returns a sorted list of property names
* contained in a given sequence of properties that additionally
* have the state DIRECT_VALUE
*/
protected String[] getDirectProperties(Property[] props) {
ArrayList<String> direct = new ArrayList<String>();
for (int i = 0; i < props.length; i++) {
String pName = props[i].Name;
try {
PropertyState state = pState.getPropertyState(pName);
if (state.equals(PropertyState.DIRECT_VALUE) && isUsable(pName))
direct.add(pName);
} catch (com.sun.star.beans.UnknownPropertyException e) {
log.println("Property '" + pName + "'");
}
}
Collections.sort(direct);
Object[] obj = direct.toArray();
String[] ret = new String[obj.length];
for (int i = 0; i < obj.length; i++) {
ret[i] = (String) obj[i];
}
return ret;
}
private boolean isUsable(String name) {
boolean isUsable=true;
if (name.startsWith("TextWriting")) isUsable = false;
if (name.startsWith("MetaFile")) isUsable = false;
return isUsable;
}
/*
* This method returns a sorted list of property names
* contained in a given sequence of properties
*/
protected String[] getProperties() {
ArrayList<String> names = new ArrayList<String>();
for (int i = 0; i < properties.length; i++) {
String pName = properties[i].Name;
if (isUsable(pName)) names.add(pName);
}
Collections.sort(names);
Object[] obj = names.toArray();
String[] ret = new String[obj.length];
for (int i = 0; i < obj.length; i++) {
ret[i] = (String) obj[i];
}
return ret;
}
/*
* Returns the values of a given array of properties in an Object array
*/
protected Object[] getPropertyValues(String[] propertyNames) {
Object[] values = new Object[propertyNames.length];
for (int i = 0; i < propertyNames.length; i++) {
try {
values[i] = PS.getPropertyValue(propertyNames[i]);
} catch (com.sun.star.beans.UnknownPropertyException e) {
e.printStackTrace(log);
} catch (com.sun.star.lang.WrappedTargetException e) {
e.printStackTrace(log);
}
}
return values;
}
protected int getCountOfReadOnlyProperties() {
int ro = 0;
for (int i = 0; i < properties.length; i++) {
Property property = properties[i];
boolean isWritable = ((property.Attributes & PropertyAttribute.READONLY) == 0);
if (!isWritable) {
ro++;
}
}
return ro;
}
protected Object[] getNewValues(Object[] oldValues) {
Object[] newValues = new Object[oldValues.length];
for (int i = 0; i < oldValues.length; i++) {
if (oldValues[i] instanceof com.sun.star.uno.Any) {
newValues[i] = oldValues[i];
} else {
newValues[i] = ValueChanger.changePValue(oldValues[i]);
}
}
return newValues;
}
}
|