Avoid potential negative array index access to cached text.
[LibreOffice.git] / qadevOOo / tests / java / ifc / text / _XTextSectionsSupplier.java
blob38b31ad12bee004ba2100135fb6e7e4b315be80c
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 .
18 package ifc.text;
20 import lib.MultiMethodTest;
22 import com.sun.star.container.XNameAccess;
23 import com.sun.star.text.XTextSectionsSupplier;
26 public class _XTextSectionsSupplier extends MultiMethodTest {
27 public XTextSectionsSupplier oObj;
29 public void _getTextSections() {
30 XNameAccess sections = oObj.getTextSections();
31 boolean res = checkSections(sections);
32 tRes.tested("getTextSections()", res);
35 protected boolean checkSections(XNameAccess sections) {
36 String[] sNames = sections.getElementNames();
37 boolean res = true;
39 for (int k = 0; k < sNames.length; k++) {
40 try {
41 res &= sections.hasByName(sNames[k]);
42 res &= (sections.getByName(sNames[k]) != null);
43 log.println("Works for ... " + sNames[k]);
44 } catch (com.sun.star.container.NoSuchElementException e) {
45 log.println("positive test failed " + e.getMessage());
46 res = false;
47 } catch (com.sun.star.lang.WrappedTargetException e) {
48 log.println("positive test failed " + e.getMessage());
49 res = false;
53 try {
54 sections.getByName("unknown");
55 log.println("negative test failed ... no Exception thrown");
56 res = false;
57 } catch (com.sun.star.container.NoSuchElementException e) {
58 log.println("expected Exception for wrong argument ... OK");
59 } catch (com.sun.star.lang.WrappedTargetException e) {
60 log.println("negative test failed ... wrong Exception thrown");
61 res = false;
64 return res;