jl165 merging heads
[LibreOffice.git] / testautomation / framework / optional / includes / security_evilmacro1.inc
blob0de48f87824e158ebd00d2d14c23a81b767b275c
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 : Load documents containing hidden BASIC scripts
32 '\******************************************************************************
34 testcase tSecurityEvilMacro1()
36     
37     dim acFile( 2 ) as string
39         acFile( 1 ) = gTesttoolPath & "framework\optional\input\security\test_macro.html"
40         acFile( 1 ) = convertpath( acFile( 1 ) )
42         acFile( 2 ) = gTesttoolPath & "framework\optional\input\security\test_macro.odt"
43         acFile( 2 ) = convertpath( acFile( 2 ) )
45     dim iCurrentFile as integer ' increment variable
46     dim cMsg as string          ' string from messagebox
47     dim brc as boolean          ' some returnvalue
48     
51     for iCurrentFile = 1 to ubound( acFile() )
53         printlog( "" )
54         printlog( "File: " & acFile( iCurrentFile ) )
56         FileOpen
58         kontext "OeffnenDlg"
59         Dateiname.setText( acFile( iCurrentFile ) )
61         Oeffnen.click()
63         brc = hAllowMacroExecution() 
64         if ( not brc ) then
65             warnlog( "Macro security dialog not triggered by document with macro" )
66         endif
69         kontext "Active"
70         if ( active.exists( 5 ) ) then
72             ' warn if macro runs without security warning
73             if ( not brc ) then
74                 cMsg = active.getText()
75                 cMsg = hRemoveLineBreaks( cMsg )
76                 if ( cMsg = "Hello from StarBasic" ) then
77                     warnlog( "The macro was executed without asking for permission" )
78                 else
79                     printlog( "Messagebox: " & cMsg )
80                 endif
81             endif
83             ' get the string on the messagebox
84             cMsg = active.getText()
85             cMsg = hRemoveLineBreaks( cMsg )
86             if ( cMsg = "Hello from StarBasic!" ) then
87                 printlog( "Macro was executed: " & cMsg )
88             else
89                 warnlog( "Unknown dialog is open. This is not the macro" )
90             endif
91             active.ok()
92         endif
94         call ExitRestartTheOffice()
96     next iCurrentFile
99 endcase