jl165 merging heads
[LibreOffice.git] / testautomation / framework / optional / includes / basic_modules.inc
blob9a227484846c82030f0aaebe9e2958b32dffa851
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 : Edit several modules and dialogs in basic ide
32 '\******************************************************************************
35 testcase tMore_Modules_Dialogs
38     dim brc as boolean
39     
40     dim iCurrentTab as integer
42     dim cFile as string 
43         cFile = gOfficePath & "user\work\basic.odt"
44         
45     const FILTER = "writer8"
47     'const iTABCOUNT is the number of dialogs and modules.
48     'If iTABCOUNT = 10 then 20 tabs (+ the first one!) = 21 should be created.
50     const iTABCOUNT as Integer = 10
51     const CMODULE = "TTMODULE"
52     
53     hDeleteFile( cFile )
54     
55     printlog "open a new writer-doc"
56     gApplication = "WRITER"
57     hCreateDocument()
58     
59     brc = hInitBasicIDE( CMODULE )
60     
61     printlog "insert 10 modules"
63     for iCurrentTab = 1 to iTABCOUNT
64         printlog "   - insert new module : " & iCurrentTab
66         kontext "basicide"
67         Tabbar.OpenContextMenu
68         hMenuSelectNr(1)
69         hMenuSelectNr(1)
70         brc = hDeleteMacro()
71         if ( brc ) then
72             EditWindow.TypeKeys "'# " & ( iCurrentTab + 1 ) & ". module in this document"
73         endif
74     next iCurrentTab
76     printlog "insert 10 dialogs"
78     for iCurrentTab = 1 to iTABCOUNT
79         printlog "   - insert new dialog : " & iCurrentTab
80         Tabbar.OpenContextMenu
81         hMenuSelectNr(1)
82         hMenuSelectNr (2)
84         if DialogWindow.Exists (2) <> TRUE then
85             warnlog "No dialog window is shown!"
86         end if
88     next iCurrentTab
90     printlog Chr(13) + "- close the BasicIDE"
91     hCloseBasicIDE()
92     
93     printlog Chr(13) + "- save the document"
94     Call hFileSaveAsWithFilterKill( cFile , FILTER )
95     
96     printlog Chr(13) + "- close the document"
97     hDestroyDocument()
98     
99     printlog Chr(13) + "- open the saved document"
100     hFileOpen( cFile )
102     ToolsMacro_uno
103     kontext "Makro"
104     hSelectNodeByName( MakroAus , CMODULE )
106     Bearbeiten.Click()
107     
108     printlog "delete all modules and dialogs"
110     for iCurrentTab = 1 to ( 2 * iTABCOUNT + 1 )
112         try
113             printlog "delete  - " & iCurrentTab & "/" & ( 2 * iTABCOUNT + 1 )
114             UseBindings
116             kontext "basicide"
117             Tabbar.OpenContextMenu
118             
119             hMenuSelectNr( 2 )
121             kontext "active"
123             if Active.Exists then
124                 Active.Yes
125             else
126                 warnlog "No warning after deleting a dialog!"
127             end if
129         catch
130             QAErrorLog "Deleting  - " & iCurrentTab & "/" & ((2 * iTABCOUNT)+1) & " failed."
131         endcatch
133     next iCurrentTab
135     hDestroyDocument()
136     hDestroyDocument()
139 endcase