jl165 merging heads
[LibreOffice.git] / testautomation / framework / optional / includes / security_evilmacro2.inc
blob6b8b29903f725e00e80d41d11b59b733fcc8caad
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 tSecurityEvilMacro2()
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 = hDenyMacroExecution() 
64         if ( not brc ) then
65             warnlog( "Macro security dialog not triggered by document with macro" )
66         endif
68         kontext "Active"
69         if ( active.exists( 5 ) ) then
71             ' warn if macro runs without security warning
72             warnlog( "A macro was executed without permission" )
74             ' get the string on the messagebox
75             cMsg = active.getText()
76             cMsg = hRemoveLineBreaks( cMsg )
77             warnlog( "Macro was executed: " & cMsg )
78             active.ok()
79         else
80             printlog( "Macro has not been executed" )
81         endif
83         call ExitRestartTheOffice()
85     next iCurrentFile
88 endcase