1 'encoding UTF-8 Do not remove or change this line!
2 '**************************************************************************
3 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 ' Copyright 2000, 2010 Oracle and/or its affiliates.
7 ' OpenOffice.org - a multi-platform office productivity suite
9 ' This file is part of OpenOffice.org.
11 ' OpenOffice.org is free software: you can redistribute it and/or modify
12 ' it under the terms of the GNU Lesser General Public License version 3
13 ' only, as published by the Free Software Foundation.
15 ' OpenOffice.org is distributed in the hope that it will be useful,
16 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ' GNU Lesser General Public License version 3 for more details
19 ' (a copy is included in the LICENSE file that accompanied this code).
21 ' You should have received a copy of the GNU Lesser General Public License
22 ' version 3 along with OpenOffice.org. If not, see
23 ' <http://www.openoffice.org/license.html>
24 ' for a copy of the LGPLv3 License.
26 '/************************************************************************
28 '* owner : gregor.hartmann@oracle.com
30 '* short description : Quick short test for the scripting framework
32 '\******************************************************************************
36 printlog( "Verify that the nodes <My Macros> and <OOo Macros> are present" )
38 const ORGANIZER_ITEMS = 2
39 const MAX_DIALOG_DELAY = 5
43 ToolsMacrosOrganizeMacrosBeanShell
45 Kontext "ScriptOrganizer"
46 if ( ScriptOrganizer.exists( MAX_DIALOG_DELAY ) ) then
47 printlog( "Beanshell Script Organizer is present. Good" )
48 if ( ScriptTreeList.getItemCount() <> ORGANIZER_ITEMS ) then
49 warnlog( "The Treelist does not contain the expected number " & _
50 "of items. Please verify that exactly " & ORGANIZER_ITEMS & " top-nodes exist" )
52 hCloseDialog( ScriptOrganizer, "cancel" )
54 warnlog( "Script Organizer for Beanshell is missing" )
57 ToolsMacrosOrganizeMacrosJavaScript
59 Kontext "ScriptOrganizer"
60 if ( ScriptOrganizer.exists( MAX_DIALOG_DELAY ) ) then
61 printlog( "JavaScript Script Organizer is present. Good" )
62 if ( ScriptTreeList.getItemCount() <> ORGANIZER_ITEMS ) then
63 warnlog( "The Treelist does not contain the expected number " & _
64 "of items. Please verify that exactly " & ORGANIZER_ITEMS & " top-nodes exist" )
66 hCloseDialog( ScriptOrganizer, "cancel" )
68 warnlog( "Script Organizer for JavaScript is missing" )