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()
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
51 for iCurrentFile = 1 to ubound( acFile() )
54 printlog( "File: " & acFile( iCurrentFile ) )
59 Dateiname.setText( acFile( iCurrentFile ) )
63 brc = hAllowMacroExecution()
65 warnlog( "Macro security dialog not triggered by document with macro" )
70 if ( active.exists( 5 ) ) then
72 ' warn if macro runs without security warning
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" )
79 printlog( "Messagebox: " & cMsg )
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 )
89 warnlog( "Unknown dialog is open. This is not the macro" )
94 call ExitRestartTheOffice()