update dev300-m58
[ooovba.git] / testautomation / framework / tools / includes / performance.inc
blob18fd01332be1bdf29604f78423d2e09b549d83f6
1 'encoding UTF-8  Do not remove or change this line!
2 '**************************************************************************
3 '* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 '* 
5 '* Copyright 2008 by Sun Microsystems, Inc.
6 '*
7 '* OpenOffice.org - a multi-platform office productivity suite
8 '*
9 '* $RCSfile: performance.inc,v $
11 '* $Revision: 1.1 $
13 '* last change: $Author: jsi $ $Date: 2008-06-16 12:19:06 $
15 '* This file is part of OpenOffice.org.
17 '* OpenOffice.org is free software: you can redistribute it and/or modify
18 '* it under the terms of the GNU Lesser General Public License version 3
19 '* only, as published by the Free Software Foundation.
21 '* OpenOffice.org is distributed in the hope that it will be useful,
22 '* but WITHOUT ANY WARRANTY; without even the implied warranty of
23 '* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 '* GNU Lesser General Public License version 3 for more details
25 '* (a copy is included in the LICENSE file that accompanied this code).
27 '* You should have received a copy of the GNU Lesser General Public License
28 '* version 3 along with OpenOffice.org.  If not, see
29 '* <http://www.openoffice.org/license.html>
30 '* for a copy of the LGPLv3 License.
32 '/******************************************************************************
34 '*  owner : joerg.skottke@sun.com
36 '*  short description : Tools to speed up test case performance
38 '\******************************************************************************
40 function hWaitForObject( oControl as object, iTime as integer ) as integer
42     const CFN = "hWaitForObject()::"
43     dim iWait as integer
44     
45     for iWait = 0 to iTime
46         try
47             oControl.Exists()
48             printlog( CFN & "Control Name....: " & oControl.Name() )
49             printlog( CFN & "Control ID......: " & oControl.ID()   )
50             printlog( CFN & "Control ready in: " & iWait & " ms")
51             
52             if ( oControl.isEnabled() ) then
53                 printlog( CFN & "Control enabled.: Yes" )
54                 hWaitForObject() = 0 
55             else
56                 printlog( CFN & "Control enabled.: No" )
57                 hWaitForObject() = -1
58             endif
59             exit function            
60         catch
61             wait( 1 )            
62         endcatch
63     next iWait
64     
65     hWaitForObject() = -2
66     printlog( CFN & "Control not found, timeout reached" )
68 end function