jl165 merging heads
[LibreOffice.git] / testautomation / framework / optional / f_security_trusted_path.bas
blob4f667f4c69e175fe06aba4b5523fca6f57d0a65d
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 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 : Execute macros from trusted path
32 '\******************************************************************************
34 sub main
36 use "framework\optional\includes\security_trusted_path.inc"
39 ' this is the trusted path we want to add to the list
40 dim cWorkPath as string
41 cWorkPath = gTesttoolPath & "framework\optional\input\BasicDocs\"
42 cWorkPath = convertpath( cWorkPath )
44 ' this is the file to be loaded, located directly below trusted path
45 dim cWorkFile as string
47 dim iApplication as integer ' Index of the application WRITER, CALC ...
48 dim cApplication as string ' Name of the current application
50 dim iSecurityLevel as integer ' Security from loweset to highest (0...4)
52 call hStatusIn( "framework" , "f_security_trusted_path.bas" )
54 ' Add a trusted path which contains a number of files with macros
55 hAddTrustedPath( cWorkPath )
57 ' For each security level we verify that macros are executed
58 for iSecurityLevel = 0 to 3
60 hSetMacroSecurityAPI( iSecurityLevel )
62 ' Cycle through the six main applications for the most recent documenttype
63 for iApplication = 1 to 6 step 2 ' Do not test all, does not seem to be required.
65 cWorkFile = cWorkPath & "basic" & hGetSuffix( "current" )
66 cApplication = hNumericDoctype( iApplication )
68 printlog( "" )
69 printlog( cApplication )
70 call tSecTrustedPath( cWorkFile, iSecurityLevel )
72 next iApplication
74 next iSecurityLevel
76 ' Reset the trusted path, reset macro security level.
77 hRemoveTrustedPath( cWorkPath )
78 hSetMacrosecurityAPI( GC_MACRO_SECURITY_LEVEL_DEFAULT )
80 call hStatusOut()
82 end sub
84 '-------------------------------------------------------------------------
86 sub LoadIncludeFiles
88 use "global\system\includes\master.inc"
89 use "global\system\includes\gvariabl.inc"
91 use "global\tools\includes\optional\t_filetools.inc"
92 use "global\tools\includes\optional\t_docfuncs.inc"
93 use "global\tools\includes\optional\t_security_tools.inc"
94 use "global\tools\includes\optional\t_stringtools.inc"
96 gApplication = "WRITER"
97 call GetUseFiles()
99 end sub