Update ooo320-m1
[ooovba.git] / testautomation / framework / optional / includes / scripting_basics.inc
bloba5045c149a10ac013a095353a9b9b37db0cc0b0d
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: scripting_basics.inc,v $
11 '* $Revision: 1.1 $
13 '* last change: $Author: jsi $ $Date: 2008-06-16 12:18:15 $
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 : Quick short test for the scripting framework
38 '\******************************************************************************
40 testcase tScripting
42     '///<h1>Very short test to verify that the scripting framework is present</h1>
43     '///<i>Additionally we verify that the document &quot;Untitled1&quot; is present
44     '///+ in the organizers</i><br><br>
45     '///<ul>
46     
47     const ORGANIZER_ITEMS = 2
48     
49     '///+<li>Make sure we are on the backing window</li>
50     hInitBackingMode()
52     '///+<li>Open Script Organizer for Beanshell</li>
53     ToolsMacrosOrganizeMacrosBeanShell
54     
55     '///+<li>Access the TreeList  and close the dialog  with cancel</li>
56     Kontext "ScriptOrganizer"
57     if ( ScriptOrganizer.exists( 5 ) ) then
58         printlog( "Beanshell Script Organizer is present. Good" )
59         if ( ScriptTreeList.getItemCount() <> ORGANIZER_ITEMS ) then
60             warnlog( "The Treelist does not contain the expected number " & _
61             "of items. Please verify that exactly three top-nodes exist" )
62         endif
63         ScriptOrganizer.cancel()
64     else
65         warnlog( "Script Organizer for Beanshell is missing" )
66     endif
67     
68     '///+<li>Open Script Organizer for JavaScript</li>
69     ToolsMacrosOrganizeMacrosJavaScript
70     
71     '///+<li>Access the TreeList  and close the dialog  with cancel</li>
72     Kontext "ScriptOrganizer"
73     if ( ScriptOrganizer.exists( 5 ) ) then
74         printlog( "JavaScript Script Organizer is present. Good" )
75         if ( ScriptTreeList.getItemCount() <> ORGANIZER_ITEMS ) then
76             warnlog( "The Treelist does not contain the expected number " & _
77             "of items. Please verify that exactly three top-nodes exist" )
78         endif
79         ScriptOrganizer.cancel()
80     else
81         warnlog( "Script Organizer for JavaScript is missing" )
82     endif
83     
84     '///</ul>
85     
86 endcase
87