Avoid potential negative array index access to cached text.
[LibreOffice.git] / qadevOOo / tests / java / ifc / drawing / _XShapeBinder.java
blob5ebe37e1ca6fd8fd8f8dadba107f05709b7bacaa
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package ifc.drawing;
21 import lib.MultiMethodTest;
23 import com.sun.star.drawing.XDrawPage;
24 import com.sun.star.drawing.XShape;
25 import com.sun.star.drawing.XShapeBinder;
26 import com.sun.star.drawing.XShapes;
27 import com.sun.star.uno.UnoRuntime;
29 /**
30 * Testing <code>com.sun.star.drawing.XShapeBinder</code>
31 * interface methods :
32 * <ul>
33 * <li><code> bind()</code></li>
34 * <li><code> unbind()</code></li>
35 * </ul> <p>
36 * This test needs the following object relations :
37 * <ul>
38 * <li> <code>'DrawPage'</code> (must implement <code>XShapes</code>):
39 * the collection of shapes in a document which used to create a group.</li>
40 * <ul> <p>
41 * Test is <b> NOT </b> multithread compliant. <p>
42 * @see com.sun.star.drawing.XShapeBinder
44 public class _XShapeBinder extends MultiMethodTest {
46 public XShapeBinder oObj = null;
47 XShape group = null;
48 int countBeforeBind = 0;
49 XShapes oShapes = null;
51 /**
52 * Retrieves draw page collection from relation and binds them. <p>
54 * Has <b> OK </b> status if the shape group returned is not null
55 * number of shapes in collection is 1 (shapes are bound into a single
56 * shape). <p>
58 public void _bind () {
59 XDrawPage dp = (XDrawPage) tEnv.getObjRelation("DrawPage");
60 oShapes = UnoRuntime.queryInterface( XShapes.class, dp );
61 boolean result = false;
62 log.println("testing bind() ... ");
63 countBeforeBind = oShapes.getCount();
64 log.println("Count before bind:" + countBeforeBind);
65 group = oObj.bind(oShapes);
66 int countAfterBind = oShapes.getCount();
67 log.println("Count after bind:" + countAfterBind);
68 result = group != null && countAfterBind == 1;
70 tRes.tested("bind()", result);
74 /**
75 * Unbinds the group created before. <p>
77 * Has <b> OK </b> status if number of shapes in collection
78 * increases after the method call. <p>
80 * The following method tests are to be completed successfully before :
81 * <ul>
82 * <li> <code> bind() </code> : to create a shape group </li>
83 * </ul>
85 public void _unbind () {
86 requiredMethod("bind()");
87 boolean result = false;
89 // get the current thread's holder
90 log.println("unbinding the shape...");
92 oObj.unbind(group);
93 int countAfterUnbind = oShapes.getCount();
94 log.println("Count after unbind:" + countAfterUnbind);
95 result = countAfterUnbind >= countBeforeBind;
97 tRes.tested("unbind()", result);