Update ooo320-m1
[ooovba.git] / testautomation / framework / optional / includes / basic_package_export.inc
blobe1db3ddabfe715c13169aebf5f4253d6c6676714
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: basic_package_export.inc,v $
11 '* $Revision: 1.1 $
13 '* last change: $Author: jsi $ $Date: 2008-06-16 12:18:13 $
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 : Export BASIC libraries as package
38 '\******************************************************************************
40 testcase tBasicPackageExport
42     '///<h1>Export a BASIC library as UNO package</h1>
43     ' Assumption: All actions take place in the user/work directory
44     ' macro taken from framework/tools/input/macros.txt::tBasicLibraryExport
45     
46     const PACKAGE_NAME = "tBasicExport.oxt"
47     const LIBRARY_NAME = "tBasicExport"
48     const DOCUMENT_POSITION = 4 
49     
50     dim cDocumentName as string
51     dim cLibraryName as string
52     
53     dim iNodeCount as integer
54     
55     dim iCurrentLib as integer
56     
57     dim cFile as string
58         cFile = hGetWorkPath() & PACKAGE_NAME
59     
60     ' cleanup
61     hDeleteFile( cFile )
63     hExtensionRemoveGUI( PACKAGE_NAME )
65     
66     '///<ul>
67     '///+<li>Make sure that we have exactly one open document</li>
68     hInitSingleDoc()
69     hChangeDoc()
70     
71     '///+<li>Create a new writer document</li>
72     printlog( "Create a new documentbound library for export" )
73     gApplication = "WRITER"
74     hCreateDocument()
75     
76     '///+<li>Go to Tools/Macros/Organize Macros/OpenOffice.org Basic</li>
77     ToolsMacro_uno
78     
79     '///+<li>Select the last node (number 4, document untitled2)</li>
80     kontext "Makro"
81     iNodeCount = hGetNodeCount( MakroAus )
82     cDocumentName = hSelectNode( MakroAus, iNodeCount )
83     
84     '///+<li>Click to open the organizer</li>
85     Verwalten.click()
86     
87     '///+<li>Switch to the libraries-tab</li>
88     hSelectBasicObjectOrganizerTab( 3 )
89     
90     '///+<li>Select the document (untitled2 at pos. 4)</li>
91     kontext "TabBibliotheken"
92     Bibliothek.select( DOCUMENT_POSITION )
93     
94     ' verify that the correct document is selected
95     if ( Bibliothek.getSelText() <> cDocumentName ) then
96         warnlog( "Incorrect document selected on libraries tab, aborting" )
97         goto endsub
98     endif
99     
100     '///+<li>Click to create a new library</li>
101     Neu.click()
102     
103     '///+<li>Name the library &quot;tBasicLibraryExport&quot;, confirm with ok</li>
104     kontext "NeueBibliothek"
105     BibliotheksName.setText( LIBRARY_NAME )
106     NeueBibliothek.ok()
107     
108     '///+<li>Verify that the correct library is selected</li>
109     kontext "TabBibliotheken"
110     cLibraryName = BibliotheksListe.getSelText()
111     
112     '///+<li>Click to edit the library</li>
113     Bearbeiten.click()
115     '///+<li>Insert a macro (e.g. to print a messagebox)</li>
116     hInsertMacroFromFile( LIBRARY_NAME )
117     
118     '///+<li>Close the Basic IDE</li>
119     hCloseBasicIDE()
120     
121     '///+<li>Go to Tools/Macros/Organize Macros/OpenOffice.org Basic</li>
122     ToolsMacro_uno
123     
124     '///+<li>Select the last node (untitled2)</li>
125     kontext "Makro"
126     iNodeCount = hGetNodeCount( MakroAus )
127     hSelectNode( MakroAus, iNodeCount )    
128     
129     '///+<li>Click to open the organizer</li>
130     Verwalten.click()
131     
132     '///+<li>Switch to the libraries-tab</li>
133     hSelectBasicObjectOrganizerTab( 3 )
134     
135     '///+<li>Select the document (untitled2 at pos. 4)</li>
136     kontext "TabBibliotheken"
137     Bibliothek.select( DOCUMENT_POSITION )
138     
139     '///+<li>Find the new library, select it</li>
140     printlog( "Select the new library" )
141     kontext "TabBibliotheken"
142     for iCurrentLib = 1 to Bibliotheksliste.getItemCount()
143         Bibliotheksliste.select( iCurrentLib )
144         if ( Bibliotheksliste.getSelText() = LIBRARY_NAME ) then
145             exit for
146         endif
147     next iCurrentLib
148     
149     '///+<li>Click Export</li>
150     kontext "TabBibliotheken"
151     printlog( "Export the package, close the document afterwards" )
152     Export.click()
153     
154     '///+<li>Select to export as package, click ok</li>
155     kontext "ExportBasicLibraryDlg"
156     ExportAsPackage.check()
157     ExportBasicLibraryDlg.ok()
158     
159     '///+<li>Name the package &quot;tBasicLibraryExportAsPackage&quot;, save it</li>
160     kontext "SpeichernDlg"
161     DateiName.setText( hGetWorkPath() & LIBRARY_NAME ) ' automatic filename extension/uno-pkg is default
162     Speichern.click()
163     
164     '///+<li>Close the macro organizer</li>
165     kontext "TabBibliotheken"
166     TabBibliotheken.cancel()
167     
168     '///+<li>Close OpenOffice.org Basic Macros dialog</li>
169     kontext "Makro"
170     Makro.cancel()
171     
172     '///+<li>Close the first document</li>
173     hDestroyDocument()
174         
175     '///+<li>Close the second document</li>
176     hDestroyDocument()
178     '///</ul>
179     
180 endcase