Update ooo320-m1
[ooovba.git] / svtools / qa / complex / passwordcontainer / TestHelper.java
blob262181c48f444cdb8951402fe0af86ab009c3e68
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: TestHelper.java,v $
11 * $Revision: 1.2 $
13 * This file is part of OpenOffice.org.
15 * OpenOffice.org is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License version 3
17 * only, as published by the Free Software Foundation.
19 * OpenOffice.org is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Lesser General Public License version 3 for more details
23 * (a copy is included in the LICENSE file that accompanied this code).
25 * You should have received a copy of the GNU Lesser General Public License
26 * version 3 along with OpenOffice.org. If not, see
27 * <http://www.openoffice.org/license.html>
28 * for a copy of the LGPLv3 License.
30 ************************************************************************/
32 package complex.passwordcontainer;
34 import com.sun.star.task.UserRecord;
36 import share.LogWriter;
38 public class TestHelper {
39 LogWriter m_aLogWriter;
40 String m_sTestPrefix;
42 public TestHelper( LogWriter aLogWriter, String sTestPrefix ) {
43 m_aLogWriter = aLogWriter;
44 m_sTestPrefix = sTestPrefix;
47 public void Error( String sError ) {
48 m_aLogWriter.println( m_sTestPrefix + "Error: " + sError );
51 public void Message( String sMessage ) {
52 m_aLogWriter.println( m_sTestPrefix + sMessage );
55 public boolean sameLists(UserRecord aUserList1[], UserRecord aUserList2[]) {
56 // only works when every name is unique within the list containing it
58 if(aUserList1.length != aUserList2.length) {
59 Message("User list lengths: " + aUserList1.length + " <--> " + aUserList2.length + " respectively ");
60 return false;
63 for(int i = 0; i < aUserList1.length; i++) {
64 int j;
65 for(j = 0; j < aUserList2.length; j++) {
66 if(!aUserList1[i].UserName.equals(aUserList2[j].UserName))
67 continue;
68 if(aUserList1[i].Passwords[0].equals(aUserList2[j].Passwords[0])) {
69 break;
72 if(j == aUserList2.length) {
73 for(int k = 0; k < aUserList1.length; k++) {
74 Message(aUserList1[k].UserName + " <--> " + aUserList2[i].UserName);
76 return false;
79 return true;